-
Notifications
You must be signed in to change notification settings - Fork 0
/
default.css
128 lines (108 loc) · 2.8 KB
/
default.css
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
/*
//////////////////////////////////////////////////////////////////////////////
//Copyright (C) 2019 Joliciel Informatique
//
//This file is part of Jochre.
//
//Jochre is free software: you can redistribute it and/or modify
//it under the terms of the GNU Affero General Public License as published by
//the Free Software Foundation, either version 3 of the License, or
//(at your option) any later version.
//
//Jochre is distributed in the hope that it will be useful,
//but WITHOUT ANY WARRANTY; without even the implied warranty of
//MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
//GNU Affero General Public License for more details.
//
//You should have received a copy of the GNU Affero General Public License
//along with Jochre. If not, see <http://www.gnu.org/licenses/>.
//////////////////////////////////////////////////////////////////////////////
*/
#mainTable{
width: 100%;
}
#wrapper{
overflow: auto;
max-height: 600px;
max-width: 1000px;
border:1px solid #aaa;
background-color: white;
}
#edit-canvas{
}
#canvasCell{
}
#textCell{
}
#elementText{
width: 95%;
max-width: 800px;
height:300px;
}
#currentContent {
width:95%;
max-height: 400px;
overflow-y: scroll;
}
table, th, td {
border: 0px solid black;
}
.rtl {
text-align: right;
direction: rtl;
}
.error {
color: red;
text-decoration: underline;
font-weight: bold;
background-color: yellow;
}
.pushed {
font-weight: bold;
}
.unpushed {
font-weight: normal;
}
.slidecontainer {
max-width: 800px; /* Width of the outside container */
}
/* The slider itself */
.slider {
-webkit-appearance: none; /* Override default CSS styles */
appearance: none;
width: 100%; /* Full-width */
height: 25px; /* Specified height */
background: #d3d3d3; /* Grey background */
outline: none; /* Remove outline */
opacity: 0.7; /* Set transparency (for mouse-over effects on hover) */
-webkit-transition: .2s; /* 0.2 seconds transition on hover */
transition: opacity .2s;
}
/* Mouse-over effects */
.slider:hover {
opacity: 1; /* Fully shown on mouse-over */
}
/* The slider handle (use -webkit- (Chrome, Opera, Safari, Edge) and -moz- (Firefox) to override default look) */
.slider::-webkit-slider-thumb {
-webkit-appearance: none; /* Override default look */
appearance: none;
width: 25px; /* Set a specific slider handle width */
height: 25px; /* Slider handle height */
background: #4CAF50; /* Green background */
cursor: pointer; /* Cursor on hover */
}
.slider::-moz-range-thumb {
width: 25px; /* Set a specific slider handle width */
height: 25px; /* Slider handle height */
background: #4CAF50; /* Green background */
cursor: pointer; /* Cursor on hover */
}
.pt24, .pt18, .pt14, .pt12, .pt9 {
}
.horizontalScroll {
overflow-x: scroll;
white-space: nowrap;
}
.dpi {
width: 70px;
}