View | Details | Raw Unified | Return to bug 24363
Collapse All | Expand All

(-)a/koha-tmpl/intranet-tmpl/prog/css/cateditor.css (+6 lines)
Lines 70-75 body { Link Here
70
    line-height: 1.2;
70
    line-height: 1.2;
71
}
71
}
72
72
73
#editor input,
74
#editor input[type="text"],
75
#editor select {
76
    padding: 0;
77
}
78
73
.cm-tagnumber {
79
.cm-tagnumber {
74
    color: #080;
80
    color: #080;
75
    font-weight: bold;
81
    font-weight: bold;
(-)a/koha-tmpl/intranet-tmpl/prog/css/login.css (-7 / +11 lines)
Lines 168-178 label { Link Here
168
	text-align: right;
168
	text-align: right;
169
}
169
}
170
170
171
textarea, input, select {
171
textarea,
172
	background: #f4f4f4;
172
input,
173
	border: 1px solid #b2b2b2;
173
input[type='text'],
174
	color: #000;
174
input[type='password'],
175
	font:  13px Verdana, Arial, Helvetica, sans-serif;
175
select {
176
	margin: 1px;
176
    background: #f4f4f4;
177
	padding: 3px;
177
    border: 1px solid #b2b2b2;
178
    color: #000;
179
    height: unset;
180
    margin: 1px;
181
    padding: 3px;
178
}
182
}
(-)a/koha-tmpl/intranet-tmpl/prog/css/select2.css (-1 / +5 lines)
Lines 9-12 Link Here
9
9
10
.select2-container.missing .select2-choice {
10
.select2-container.missing .select2-choice {
11
    background: #ffc none;
11
    background: #ffc none;
12
}
12
}
13
14
.select2-container .select2-choice {
15
    background: #FFF none;
16
}
(-)a/koha-tmpl/intranet-tmpl/prog/css/src/_mixins.scss (+23 lines)
Lines 10-22 $table-odd-row: #F9F9F9; Link Here
10
    border-color: #ADADAD #ADADAD #949494;
10
    border-color: #ADADAD #ADADAD #949494;
11
    border-radius: 4px;
11
    border-radius: 4px;
12
    border-width: 1px;
12
    border-width: 1px;
13
    box-shadow: none;
13
    color: #333333;
14
    color: #333333;
14
    display: inline-block;
15
    display: inline-block;
15
    font-size: inherit;
16
    font-size: inherit;
17
    height: unset;
16
    line-height: 1.42857143;
18
    line-height: 1.42857143;
17
    padding: .3em .8em;
19
    padding: .3em .8em;
18
    text-align: center;
20
    text-align: center;
19
    text-shadow: 0 1px 0 #fff;
21
    text-shadow: 0 1px 0 #fff;
22
    transition: none;
20
    vertical-align: middle;
23
    vertical-align: middle;
21
    white-space: nowrap;
24
    white-space: nowrap;
22
25
Lines 29-32 $table-odd-row: #F9F9F9; Link Here
29
    background: #EEE none;
32
    background: #EEE none;
30
    border: 1px solid #C0C0C0;
33
    border: 1px solid #C0C0C0;
31
    color: #999;
34
    color: #999;
35
}
36
37
@mixin default-input {
38
    background-color: #fff;
39
    background-image: none;
40
    border: 1px solid #aaa;
41
    border-radius: 3px;
42
    box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
43
    display: inline-block;
44
    font-size: inherit;
45
    height: 26px;
46
    line-height: 1.42857143;
47
    padding: 4px 7px;
48
    transition: border-color ease-in-out .05s,box-shadow ease-in-out .05s;
49
}
50
51
@mixin default-input-focus {
52
    border-color: #538200;
53
    outline: 0;
54
    box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 3px rgba(83, 130, 0, .6);
32
}
55
}
(-)a/koha-tmpl/intranet-tmpl/prog/css/src/_tables.scss (-4 / +6 lines)
Lines 510-519 tbody { Link Here
510
        }
510
        }
511
    }
511
    }
512
512
513
    input {
513
    input,
514
        &[type="search"] {
514
    input[type="text"],
515
            border: 1px solid #CCC;
515
    select {
516
        }
516
        height: unset;
517
        line-height: unset;
518
        padding: 0;
517
    }
519
    }
518
520
519
    &:empty {
521
    &:empty {
(-)a/koha-tmpl/intranet-tmpl/prog/css/src/staff-global.scss (-5 / +34 lines)
Lines 349-363 cite { Link Here
349
    font-style: italic;
349
    font-style: italic;
350
}
350
}
351
351
352
input,
352
textarea,
353
textarea {
353
select {
354
    @include default-input;
355
    height: unset;
356
354
    &:focus {
357
    &:focus {
355
        border-color: #538200;
358
        @include default-input-focus;
356
        border-radius: 4px;
357
    }
359
    }
358
}
360
}
359
361
360
input {
362
input {
363
    @include default-input;
364
365
    &[type="text"],
366
    &[type="password"],
367
    &[type="email"],
368
    &[type="number"] {
369
        @include default-input;
370
371
        &:focus {
372
            @include default-input-focus;
373
        }
374
    }
375
376
    &[type="file"]{
377
        background: transparent none;
378
        border: none;
379
        box-shadow: none;
380
    }
381
361
    &[type="checkbox"],
382
    &[type="checkbox"],
362
    &[type="radio"] {
383
    &[type="radio"] {
363
        margin: 0;
384
        margin: 0;
Lines 385-390 input { Link Here
385
        }
406
        }
386
    }
407
    }
387
408
409
    &.hasDatepicker {
410
        background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAT0lEQVQ4jWNgoAZYd/LVf3IwigGkAuwGLE4hDg9eA4il8RqADVdtLYVjZLVEuwDZAKJcgKxh+zkyXIBuI8lhgG4jOqZdLJACMAygKDNRAgBj9qOB+rWnhAAAAABJRU5ErkJggg==");
411
        background-position-x: right 4px;
412
        background-position-y: center;
413
        background-repeat: no-repeat;
414
        padding-right: 18px;
415
    }
416
388
    &.submit {
417
    &.submit {
389
        @include default-button;
418
        @include default-button;
390
419
Lines 2898-2904 li { Link Here
2898
}
2927
}
2899
2928
2900
.ui-datepicker-trigger {
2929
.ui-datepicker-trigger {
2901
    margin: 0 0 3px -2em;
2930
    margin: 0 3px;
2902
    vertical-align: middle;
2931
    vertical-align: middle;
2903
}
2932
}
2904
2933
(-)a/koha-tmpl/intranet-tmpl/prog/en/includes/calendar.inc (-5 / +1 lines)
Lines 160-169 function(value, element, params) { Link Here
160
$(document).ready(function(){
160
$(document).ready(function(){
161
161
162
$.datepicker.setDefaults({
162
$.datepicker.setDefaults({
163
        showOn: "both",
163
        showOn: "focus",
164
        buttonImage: "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAT0lEQVQ4jWNgoAZYd/LVf3IwigGkAuwGLE4hDg9eA4il8RqADVdtLYVjZLVEuwDZAKJcgKxh+zkyXIBuI8lhgG4jOqZdLJACMAygKDNRAgBj9qOB+rWnhAAAAABJRU5ErkJggg==",
165
        buttonImageOnly: true,
166
        buttonText: _("Select date"),
167
        changeMonth: true,
164
        changeMonth: true,
168
        changeYear: true,
165
        changeYear: true,
169
        showButtonPanel: true,
166
        showButtonPanel: true,
170
- 

Return to bug 24363