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