oslo-red-cross-bootstrap-3-theme 1.1.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.
@@ -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
@@ -165,4 +165,4 @@ h1 > .label {
165
165
  input[type=date].form-control, input[type=time].form-control, input[type=datetime-local].form-control, input[type=month].form-control {
166
166
  line-height: 21px !important;
167
167
  }
168
- }
168
+ }
@@ -43,7 +43,7 @@ from touching the row content above or below.
43
43
  margin-top: 10px !important;
44
44
  }
45
45
  .vert-offset-top-0 {
46
- margin-top: 0px !important;
46
+ margin-top: 0 !important;
47
47
  }
48
48
  /* Vertical Offset Bottom */
49
49
  .vert-offset-bottom-12 {
@@ -83,7 +83,7 @@ from touching the row content above or below.
83
83
  margin-bottom: 10px !important;
84
84
  }
85
85
  .vert-offset-bottom-0 {
86
- margin-bottom: 0px !important ;
86
+ margin-bottom: 0 !important ;
87
87
  }
88
88
 
89
89
  @media (max-width: $screen-md-max) {
@@ -108,6 +108,9 @@ from touching the row content above or below.
108
108
  .vert-offset-bottom-sm-1 {
109
109
  margin-bottom: 25px;
110
110
  }
111
+ .vert-offset-bottom-sm-05 {
112
+ margin-bottom: 10px;
113
+ }
111
114
  }
112
115
 
113
116
  @media (max-width: $screen-xs-max) {
@@ -81,4 +81,8 @@
81
81
 
82
82
  .flex-align-items-start {
83
83
  align-items: start;
84
- }
84
+ }
85
+
86
+ .flex-align-items-end {
87
+ align-items: flex-end;
88
+ }
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
@@ -35,7 +35,7 @@ tr {
35
35
  vertical-align: middle !important;
36
36
  }
37
37
 
38
- .table-align-top th, .table-align-top td{
38
+ .table-align-top th, .table-align-top td {
39
39
  vertical-align: top !important;
40
40
  }
41
41
 
package/index.scss CHANGED
@@ -2,6 +2,8 @@
2
2
  @import "navbar";
3
3
  @import "bootstrap-3-vert-offset-shim";
4
4
  @import "border-margin-padding-shim";
5
- @import "flex-box";
5
+ @import "flex";
6
6
  @import "tables";
7
7
  @import "images";
8
+ @import "print";
9
+ @import "autocomplete";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "oslo-red-cross-bootstrap-3-theme",
3
- "version": "1.1.0",
3
+ "version": "1.3.0",
4
4
  "description": "Bootstrap 3 theme for apps created for the Oslo Red Cross",
5
5
  "main": "app.scss",
6
6
  "scripts": {