Bug 30952: Bring back bullet points for lists
[koha.git] / koha-tmpl / intranet-tmpl / prog / css / preferences.css
1 .preference-email,
2 .preference-url,
3 .preference-multi,
4 .preference-long,
5 .preference-file,
6 .preference-modalselect {
7     width: 20em;
8 }
9
10 .preference-short {
11     width: 10em;
12 }
13
14 .preference-integer, .preference-percent, .preference-date, .preference-currency {
15     width: 5em;
16 }
17
18 input[type="text"].modalselect {
19     cursor: pointer;
20 }
21
22 input[type="text"].modalselect:hover {
23     background-color: #FFC;
24 }
25
26 textarea.preference {
27     width: 35em;
28         height: 20em;
29         display: block;
30 }
31
32 textarea.preference-code, .preference-file {
33         font-family: monospace;
34 }
35
36 a.expand-textarea {
37     display: block;
38 }
39 dl {
40         margin-left : 1em;
41 }
42 dt {
43         padding : .1em;
44 }
45 h1 {
46         font-size : 149%;
47 }
48 h2 {
49         font-size : 134%;
50 }
51
52 table {
53         width : 100%;
54 }
55
56 caption {
57         color : #003399;
58 }
59
60 h3 {
61         color : #003366;
62         margin : .4em 0;
63 }
64
65 /* https://css-tricks.com/hash-tag-links-padding/#article-header-id-4 */
66 h3:target {
67     margin-top: -12px;
68     padding-top: 50px;
69 }
70
71 h3:target::before {
72     padding: 0 5px;
73     position: absolute;
74     top: 25px;
75 }
76
77 h3 i {
78     color: #336699;
79 }
80
81 h3.expanded,
82 h3.collapsed {
83     cursor: pointer;
84 }
85
86 h3.expanded i.fa.fa-caret-down::before {
87     content: "\f0d7";
88 }
89
90 h3.collapsed i.fa.fa-caret-down::before {
91     content: "\f0da";
92 }
93
94 .humanMsg strong {
95         display: block;
96         font-weight: normal;
97 }
98
99 #toolbar.floating {
100     box-shadow: 0 3px 2px 0 rgba(0, 0, 0, 0.5);
101     border-radius: 0;
102 }
103
104 .loading {
105     display: inline-block;
106     height : 16px;
107     width: 16px;
108     background: transparent url("../img/spinner-small.gif") top left no-repeat;
109     padding : 0 4px;
110     vertical-align: middle;
111 }
112
113 span.overridden {
114     font-style: italic;
115     font-weight: bold;
116     color: red;
117 }
118
119 .sortable {
120     margin-left: 0;
121     max-width: 20em;
122     padding: .5em 0;
123 }
124
125 .sortable label {
126     font-weight: bold;
127 }
128
129 .sortable li {
130     background: #FCFCFC url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA4AAAAMAQMAAABoTh6ZAAAABlBMVEVMaXHExMQ/ZYtiAAAAAXRSTlMAQObYZgAAABNJREFUeNpjYGBgMDYAIQjAxgYAKfECU0ml038AAAAASUVORK5CYII=") repeat-y;
131     border:  1px solid #EEE;
132     cursor: move;
133     font-weight: bold;
134     list-style-type: none;
135     margin: .5em 0;
136     padding: .1em .5em;
137     padding-left:  20px;
138 }
139
140 .sortable li:hover {
141     background-color: #FFC;
142 }
143
144 .sortable li li {
145     background: transparent none;
146     border: 0;
147     font-weight: normal;
148     padding-left: 0;
149 }
150
151 .sortable li li label {
152     font-weight: normal;
153 }
154
155 .sortable li.ui-sortable-helper {
156     background-color: #FFC;
157 }
158
159 .CodeMirror {
160     border: 1px solid #EEE;
161     margin: 1em 1em 1em 0;
162     resize:  vertical;
163 }
164
165 #prefModal label {
166     display: block;
167     font-weight: bold;
168     line-height: 1.5em;
169 }
170
171 .dbcolumn {
172     font-weight: normal;
173     font-family: monospace;
174     color: #666;
175 }
176 #menu ul li.active a.pref_sublink {
177     hyphens:  auto;
178     margin: 0;
179 }
180
181 #menu ul ul {
182     padding-left: 0;
183 }