oslo-red-cross-bootstrap-3-theme 1.2.0 → 1.3.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/_autocomplete.scss +57 -0
- package/_base.scss +1 -1
- package/_bootstrap-3-vert-offset-shim.scss +0 -1
- package/_print.scss +21 -0
- package/_tables.scss +1 -1
- package/index.scss +3 -1
- package/package.json +1 -1
- /package/{_flex-box.scss → _flex.scss} +0 -0
|
@@ -0,0 +1,57 @@
|
|
|
1
|
+
.form-autocomplete {
|
|
2
|
+
height: 75px;
|
|
3
|
+
position:relative;
|
|
4
|
+
}
|
|
5
|
+
|
|
6
|
+
#autocomplete-value {
|
|
7
|
+
position: absolute;
|
|
8
|
+
z-index: 2;
|
|
9
|
+
background: transparent;
|
|
10
|
+
}
|
|
11
|
+
|
|
12
|
+
#autocomplete-hint {
|
|
13
|
+
color: $gray-light;
|
|
14
|
+
position: absolute;
|
|
15
|
+
background: transparent;
|
|
16
|
+
z-index: 1;
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
.autocomplete-suggestions {
|
|
20
|
+
border: 1px solid $gray-light;
|
|
21
|
+
border-radius: 6px;
|
|
22
|
+
background: #FFF;
|
|
23
|
+
overflow: auto;
|
|
24
|
+
margin-top: -2px;
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
.autocomplete-suggestion {
|
|
28
|
+
padding: 11px 15px;
|
|
29
|
+
white-space: nowrap;
|
|
30
|
+
overflow: hidden;
|
|
31
|
+
font-size: 19px;
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
.autocomplete-suggestions-lg > .autocomplete-suggestion {
|
|
35
|
+
font-size: 19px;
|
|
36
|
+
padding: 15px 30px;
|
|
37
|
+
white-space: nowrap;
|
|
38
|
+
overflow: hidden;
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
.autocomplete-selected {
|
|
42
|
+
background: $brand-info;
|
|
43
|
+
color: #fff;
|
|
44
|
+
}
|
|
45
|
+
|
|
46
|
+
.autocomplete-suggestions strong {
|
|
47
|
+
font-weight: bold;
|
|
48
|
+
}
|
|
49
|
+
|
|
50
|
+
.autocomplete-group {
|
|
51
|
+
padding: 15px 25px;
|
|
52
|
+
}
|
|
53
|
+
|
|
54
|
+
.autocomplete-group strong {
|
|
55
|
+
display: block;
|
|
56
|
+
border-bottom: 1px solid #000;
|
|
57
|
+
}
|
package/_base.scss
CHANGED
package/_print.scss
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
@media print {
|
|
2
|
+
a {
|
|
3
|
+
text-decoration: none !important;
|
|
4
|
+
}
|
|
5
|
+
|
|
6
|
+
a[href]:after {
|
|
7
|
+
content: none !important;
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
.well {
|
|
11
|
+
border: 1px solid #DDD !important;
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
td, th {
|
|
15
|
+
background-color: none !important;
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
.vert-offset-bottom-2-print {
|
|
19
|
+
margin-bottom: 30px !important;
|
|
20
|
+
}
|
|
21
|
+
}
|
package/_tables.scss
CHANGED
package/index.scss
CHANGED
package/package.json
CHANGED
|
File without changes
|