romo 0.18.2 → 0.19.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.
- checksums.yaml +4 -4
- data/assets/css/romo/base.scss +545 -536
- data/assets/css/romo/buttons.scss +200 -196
- data/assets/css/romo/colors.scss +213 -209
- data/assets/css/romo/datepicker.scss +62 -58
- data/assets/css/romo/dropdown.scss +27 -23
- data/assets/css/romo/forms.scss +199 -195
- data/assets/css/romo/grid.scss +272 -268
- data/assets/css/romo/grid_table.scss +281 -277
- data/assets/css/romo/indicator_text_input.scss +17 -13
- data/assets/css/romo/labels.scss +60 -56
- data/assets/css/romo/lists.scss +30 -26
- data/assets/css/romo/modal.scss +28 -24
- data/assets/css/romo/normalize.scss +417 -413
- data/assets/css/romo/select.scss +96 -92
- data/assets/css/romo/sortable.scss +13 -9
- data/assets/css/romo/table.scss +211 -207
- data/assets/css/romo/tabs.scss +58 -54
- data/assets/css/romo/tooltip.scss +88 -84
- data/assets/css/romo/z_index.scss +23 -19
- data/assets/js/romo/select_dropdown.js +4 -1
- data/lib/romo/version.rb +1 -1
- metadata +2 -2
@@ -1,74 +1,78 @@
|
|
1
1
|
@import 'css/romo/vars';
|
2
2
|
@import 'css/romo/mixins';
|
3
3
|
|
4
|
-
.romo
|
5
|
-
position: relative;
|
6
|
-
}
|
4
|
+
.romo {
|
7
5
|
|
8
|
-
.romo-datepicker-
|
9
|
-
|
10
|
-
|
11
|
-
right: 6px;
|
12
|
-
vertical-align: middle;
|
13
|
-
cursor: pointer;
|
14
|
-
}
|
15
|
-
.romo-datepicker-indicator.disabled {
|
16
|
-
cursor: $notAllowedCursor;
|
17
|
-
color: $disabledColor;
|
18
|
-
}
|
6
|
+
.romo-datepicker-wrapper {
|
7
|
+
position: relative;
|
8
|
+
}
|
19
9
|
|
20
|
-
.romo-datepicker-
|
21
|
-
|
22
|
-
|
10
|
+
.romo-datepicker-indicator {
|
11
|
+
display: inline-block;
|
12
|
+
position: absolute;
|
13
|
+
right: 6px;
|
14
|
+
vertical-align: middle;
|
15
|
+
cursor: pointer;
|
16
|
+
}
|
17
|
+
.romo-datepicker-indicator.disabled {
|
18
|
+
cursor: $notAllowedCursor;
|
19
|
+
color: $disabledColor;
|
20
|
+
}
|
23
21
|
|
24
|
-
|
25
|
-
|
26
|
-
|
22
|
+
.romo-datepicker-calendar {
|
23
|
+
padding: $spacingSize0;
|
24
|
+
@include user-select(none);
|
27
25
|
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
border-spacing: 0;
|
32
|
-
width: 100%;
|
33
|
-
}
|
26
|
+
background-color: $inputBgColor;
|
27
|
+
color: $inputColor;
|
28
|
+
}
|
34
29
|
|
35
|
-
.romo-datepicker-calendar
|
36
|
-
|
37
|
-
|
38
|
-
|
39
|
-
|
30
|
+
.romo-datepicker-calendar table {
|
31
|
+
background-color: transparent;
|
32
|
+
border-collapse: collapse;
|
33
|
+
border-spacing: 0;
|
34
|
+
width: 100%;
|
35
|
+
}
|
40
36
|
|
41
|
-
.romo-datepicker-calendar
|
42
|
-
.romo-datepicker-calendar
|
43
|
-
|
44
|
-
|
45
|
-
}
|
37
|
+
.romo-datepicker-calendar th,
|
38
|
+
.romo-datepicker-calendar td {
|
39
|
+
width: 14.285714286%; /* 100% / 7 */
|
40
|
+
text-align: center;
|
41
|
+
}
|
46
42
|
|
47
|
-
.romo-datepicker-calendar
|
48
|
-
|
49
|
-
|
43
|
+
.romo-datepicker-calendar .romo-datepicker-prev,
|
44
|
+
.romo-datepicker-calendar .romo-datepicker-next,
|
45
|
+
.romo-datepicker-calendar TD.romo-datepicker-day:not(.disabled) {
|
46
|
+
cursor: pointer;
|
47
|
+
}
|
50
48
|
|
51
|
-
.romo-datepicker-calendar .romo-datepicker-
|
52
|
-
|
53
|
-
|
54
|
-
background: darken($altBgColor, 10%);
|
55
|
-
}
|
49
|
+
.romo-datepicker-calendar TD.romo-datepicker-day-weekend {
|
50
|
+
background: $altBgColor;
|
51
|
+
}
|
56
52
|
|
57
|
-
.romo-datepicker-calendar
|
58
|
-
|
59
|
-
|
60
|
-
|
53
|
+
.romo-datepicker-calendar .romo-datepicker-prev:hover,
|
54
|
+
.romo-datepicker-calendar .romo-datepicker-next:hover,
|
55
|
+
.romo-datepicker-calendar TD.romo-datepicker-day.romo-datepicker-highlight:not(.disabled) {
|
56
|
+
background: darken($altBgColor, 10%);
|
57
|
+
}
|
61
58
|
|
62
|
-
.romo-datepicker-calendar TD.romo-datepicker-day
|
63
|
-
|
64
|
-
|
59
|
+
.romo-datepicker-calendar TD.romo-datepicker-day.disabled {
|
60
|
+
cursor: $notAllowedCursor;
|
61
|
+
color: $disabledColor;
|
62
|
+
}
|
65
63
|
|
66
|
-
.romo-datepicker-calendar TD.romo-datepicker-day-
|
67
|
-
|
68
|
-
}
|
64
|
+
.romo-datepicker-calendar TD.romo-datepicker-day-other {
|
65
|
+
color: darken($inputDisabledColor, 20%);;
|
66
|
+
}
|
67
|
+
|
68
|
+
.romo-datepicker-calendar TD.romo-datepicker-day-today {
|
69
|
+
border: 1px solid $inputColor;
|
70
|
+
}
|
71
|
+
|
72
|
+
.romo-datepicker-calendar TD.romo-datepicker-day.selected,
|
73
|
+
.romo-datepicker-calendar TD.romo-datepicker-day.selected.romo-datepicker-highlight {
|
74
|
+
background-color: $inputHighlightBgColor;
|
75
|
+
color: $inputBgColor;
|
76
|
+
}
|
69
77
|
|
70
|
-
.romo-datepicker-calendar TD.romo-datepicker-day.selected,
|
71
|
-
.romo-datepicker-calendar TD.romo-datepicker-day.selected.romo-datepicker-highlight {
|
72
|
-
background-color: $inputHighlightBgColor;
|
73
|
-
color: $inputBgColor;
|
74
78
|
}
|
@@ -1,33 +1,37 @@
|
|
1
1
|
@import 'css/romo/vars';
|
2
2
|
@import 'css/romo/mixins';
|
3
3
|
|
4
|
-
.romo
|
5
|
-
[data-romo-dropdown-close="true"] {
|
6
|
-
cursor: pointer;
|
7
|
-
}
|
4
|
+
.romo {
|
8
5
|
|
9
|
-
.romo-dropdown
|
10
|
-
|
11
|
-
|
12
|
-
|
6
|
+
.romo-dropdown,
|
7
|
+
[data-romo-dropdown-close="true"] {
|
8
|
+
cursor: pointer;
|
9
|
+
}
|
13
10
|
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
11
|
+
.romo-dropdown-popup {
|
12
|
+
position: absolute;
|
13
|
+
float: left;
|
14
|
+
@include border0;
|
18
15
|
|
19
|
-
|
20
|
-
|
21
|
-
|
16
|
+
background-color: $baseBgColor;
|
17
|
+
border-color: $baseBorderColor;
|
18
|
+
border-color: rgba(0, 0, 0, 0.2);
|
19
|
+
}
|
22
20
|
|
23
|
-
.romo-dropdown-popup[data-romo-dropdown-
|
24
|
-
|
25
|
-
}
|
21
|
+
.romo-dropdown-popup[data-romo-dropdown-fixed="true"] {
|
22
|
+
position: fixed;
|
23
|
+
}
|
26
24
|
|
27
|
-
.romo-dropdown-popup[data-romo-dropdown-position="
|
28
|
-
|
29
|
-
}
|
25
|
+
.romo-dropdown-popup[data-romo-dropdown-position="bottom"] {
|
26
|
+
@include box-shadow(0 5px 10px rgba(0, 0, 0, 0.2));
|
27
|
+
}
|
28
|
+
|
29
|
+
.romo-dropdown-popup[data-romo-dropdown-position="top"] {
|
30
|
+
@include box-shadow(0 -3px 10px rgba(0, 0, 0, 0.2));
|
31
|
+
}
|
32
|
+
|
33
|
+
.romo-dropdown-popup:not([class*="romo-dropdown-open"]) {
|
34
|
+
display: none;
|
35
|
+
}
|
30
36
|
|
31
|
-
.romo-dropdown-popup:not([class*="romo-dropdown-open"]) {
|
32
|
-
display: none;
|
33
37
|
}
|
data/assets/css/romo/forms.scss
CHANGED
@@ -1,218 +1,222 @@
|
|
1
1
|
@import 'css/romo/vars';
|
2
2
|
@import 'css/romo/mixins';
|
3
3
|
|
4
|
-
|
4
|
+
.romo {
|
5
5
|
|
6
|
-
|
7
|
-
label { display: block; }
|
6
|
+
/* defaults */
|
8
7
|
|
9
|
-
|
8
|
+
form { @include rm-push; @include rm-pad; }
|
9
|
+
label { display: block; }
|
10
10
|
|
11
|
-
|
12
|
-
@include rm-push;
|
13
|
-
@include rm-pad;
|
14
|
-
@include rm-border;
|
15
|
-
}
|
11
|
+
/* basic */
|
16
12
|
|
17
|
-
.romo-form
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
@include push0-bottom;
|
23
|
-
@include rm-border;
|
24
|
-
@include border1-bottom;
|
25
|
-
}
|
13
|
+
.romo-form fieldset {
|
14
|
+
@include rm-push;
|
15
|
+
@include rm-pad;
|
16
|
+
@include rm-border;
|
17
|
+
}
|
26
18
|
|
27
|
-
.romo-form
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
|
19
|
+
.romo-form legend {
|
20
|
+
display: block;
|
21
|
+
width: 100%;
|
22
|
+
@include rm-push;
|
23
|
+
@include rm-pad;
|
24
|
+
@include push0-bottom;
|
25
|
+
@include rm-border;
|
26
|
+
@include border1-bottom;
|
27
|
+
}
|
35
28
|
|
36
|
-
.romo-form
|
37
|
-
.romo-form
|
38
|
-
|
39
|
-
input
|
40
|
-
|
41
|
-
|
29
|
+
.romo-form input,
|
30
|
+
.romo-form select,
|
31
|
+
.romo-form textarea,
|
32
|
+
input.romo-select-dropdown-option-filter {
|
33
|
+
font-size: 100%;
|
34
|
+
@include rm-push;
|
42
35
|
@include align-middle;
|
43
36
|
}
|
44
|
-
}
|
45
37
|
|
46
|
-
.romo-form
|
47
|
-
|
48
|
-
|
49
|
-
|
50
|
-
|
38
|
+
.romo-form label.romo-radio,
|
39
|
+
.romo-form label.romo-checkbox {
|
40
|
+
span,
|
41
|
+
input[type="radio"],
|
42
|
+
input[type="checkbox"] {
|
43
|
+
line-height: 1;
|
44
|
+
@include align-middle;
|
45
|
+
}
|
46
|
+
}
|
51
47
|
|
52
|
-
.romo-form
|
53
|
-
|
54
|
-
|
48
|
+
.romo-form input,
|
49
|
+
input.romo-select-dropdown-option-filter {
|
50
|
+
*overflow: visible;
|
51
|
+
line-height: normal;
|
52
|
+
}
|
55
53
|
|
56
|
-
.romo-form
|
57
|
-
|
58
|
-
|
59
|
-
.romo-form input[type="reset"],
|
60
|
-
.romo-form input[type="submit"],
|
61
|
-
.romo-form input[type="radio"],
|
62
|
-
.romo-form input[type="checkbox"] { cursor: pointer; }
|
63
|
-
|
64
|
-
.romo-form input[disabled],
|
65
|
-
.romo-form select[disabled],
|
66
|
-
.romo-form textarea[disabled],
|
67
|
-
.romo-form input[readonly],
|
68
|
-
.romo-form select[readonly],
|
69
|
-
.romo-form textarea[readonly],
|
70
|
-
input.romo-select-dropdown-option-filter[disabled],
|
71
|
-
input.romo-select-dropdown-option-filter[readonly] { cursor: $notAllowedCursor; }
|
72
|
-
|
73
|
-
.romo-form select {
|
74
|
-
font-weight: normal;
|
75
|
-
background-color: $inputBgColor;
|
76
|
-
@include border1;
|
77
|
-
}
|
78
|
-
.romo-form select optgroup { @include select-optgroup; }
|
79
|
-
.romo-form select option { @include select-option; }
|
80
|
-
|
81
|
-
.romo-form textarea,
|
82
|
-
.romo-form input[type="text"],
|
83
|
-
.romo-form input[type="password"],
|
84
|
-
.romo-form input[type="datetime"],
|
85
|
-
.romo-form input[type="datetime-local"],
|
86
|
-
.romo-form input[type="date"],
|
87
|
-
.romo-form input[type="month"],
|
88
|
-
.romo-form input[type="time"],
|
89
|
-
.romo-form input[type="week"],
|
90
|
-
.romo-form input[type="number"],
|
91
|
-
.romo-form input[type="email"],
|
92
|
-
.romo-form input[type="url"],
|
93
|
-
.romo-form input[type="search"],
|
94
|
-
.romo-form input[type="tel"],
|
95
|
-
.romo-form input[type="color"],
|
96
|
-
input.romo-select-dropdown-option-filter {
|
97
|
-
font-weight: normal;
|
98
|
-
background-color: $inputBgColor;
|
99
|
-
@include border1;
|
100
|
-
@include box-shadow(inset 0 1px 1px rgba(0, 0, 0, 0.075));
|
101
|
-
}
|
54
|
+
.romo-form textarea {
|
55
|
+
overflow: auto; @include align-top;
|
56
|
+
}
|
102
57
|
|
103
|
-
.romo-form
|
104
|
-
.romo-form
|
105
|
-
.romo-form input[type="
|
106
|
-
.romo-form input[type="
|
107
|
-
.romo-form input[type="
|
108
|
-
.romo-form input[type="
|
109
|
-
.romo-form input[type="
|
110
|
-
|
111
|
-
.romo-form input[
|
112
|
-
.romo-form
|
113
|
-
.romo-form
|
114
|
-
.romo-form input[
|
115
|
-
.romo-form
|
116
|
-
.romo-form
|
117
|
-
.romo-
|
118
|
-
.romo-
|
119
|
-
|
120
|
-
|
121
|
-
|
58
|
+
.romo-form label,
|
59
|
+
.romo-form select,
|
60
|
+
.romo-form input[type="button"],
|
61
|
+
.romo-form input[type="reset"],
|
62
|
+
.romo-form input[type="submit"],
|
63
|
+
.romo-form input[type="radio"],
|
64
|
+
.romo-form input[type="checkbox"] { cursor: pointer; }
|
65
|
+
|
66
|
+
.romo-form input[disabled],
|
67
|
+
.romo-form select[disabled],
|
68
|
+
.romo-form textarea[disabled],
|
69
|
+
.romo-form input[readonly],
|
70
|
+
.romo-form select[readonly],
|
71
|
+
.romo-form textarea[readonly],
|
72
|
+
input.romo-select-dropdown-option-filter[disabled],
|
73
|
+
input.romo-select-dropdown-option-filter[readonly] { cursor: $notAllowedCursor; }
|
74
|
+
|
75
|
+
.romo-form select {
|
76
|
+
font-weight: normal;
|
77
|
+
background-color: $inputBgColor;
|
78
|
+
@include border1;
|
79
|
+
}
|
80
|
+
.romo-form select optgroup { @include select-optgroup; }
|
81
|
+
.romo-form select option { @include select-option; }
|
82
|
+
|
83
|
+
.romo-form textarea,
|
84
|
+
.romo-form input[type="text"],
|
85
|
+
.romo-form input[type="password"],
|
86
|
+
.romo-form input[type="datetime"],
|
87
|
+
.romo-form input[type="datetime-local"],
|
88
|
+
.romo-form input[type="date"],
|
89
|
+
.romo-form input[type="month"],
|
90
|
+
.romo-form input[type="time"],
|
91
|
+
.romo-form input[type="week"],
|
92
|
+
.romo-form input[type="number"],
|
93
|
+
.romo-form input[type="email"],
|
94
|
+
.romo-form input[type="url"],
|
95
|
+
.romo-form input[type="search"],
|
96
|
+
.romo-form input[type="tel"],
|
97
|
+
.romo-form input[type="color"],
|
98
|
+
input.romo-select-dropdown-option-filter {
|
99
|
+
font-weight: normal;
|
100
|
+
background-color: $inputBgColor;
|
101
|
+
@include border1;
|
102
|
+
@include box-shadow(inset 0 1px 1px rgba(0, 0, 0, 0.075));
|
103
|
+
}
|
122
104
|
|
123
|
-
.romo-form
|
124
|
-
.romo-form
|
125
|
-
.romo-form
|
126
|
-
.romo-form input[
|
127
|
-
.romo-form
|
128
|
-
.romo-form
|
129
|
-
|
130
|
-
|
131
|
-
|
132
|
-
.romo-form input[type="
|
133
|
-
.romo-form input[type="
|
134
|
-
.romo-form input[type="
|
135
|
-
.romo-form input[type="
|
136
|
-
|
137
|
-
.romo-form
|
138
|
-
.romo-form input[type="
|
139
|
-
.romo-
|
140
|
-
|
141
|
-
|
142
|
-
.romo-form input[type="date"],
|
143
|
-
.romo-form input[type="month"],
|
144
|
-
.romo-form input[type="time"],
|
145
|
-
.romo-form input[type="week"],
|
146
|
-
.romo-form input[type="number"],
|
147
|
-
.romo-form input[type="email"],
|
148
|
-
.romo-form input[type="url"],
|
149
|
-
.romo-form input[type="search"],
|
150
|
-
.romo-form input[type="tel"],
|
151
|
-
.romo-form input[type="color"],
|
152
|
-
input.romo-select-dropdown-option-filter {
|
153
|
-
height: $inputHeight;
|
154
|
-
line-height: $baseLineHeight;
|
155
|
-
@include align-middle;
|
156
|
-
}
|
105
|
+
.romo-form select:focus,
|
106
|
+
.romo-form textarea:focus,
|
107
|
+
.romo-form input[type="text"]:focus,
|
108
|
+
.romo-form input[type="password"]:focus,
|
109
|
+
.romo-form input[type="datetime"]:focus,
|
110
|
+
.romo-form input[type="datetime-local"]:focus,
|
111
|
+
.romo-form input[type="date"]:focus,
|
112
|
+
.romo-form input[type="month"]:focus,
|
113
|
+
.romo-form input[type="time"]:focus,
|
114
|
+
.romo-form input[type="week"]:focus,
|
115
|
+
.romo-form input[type="number"]:focus,
|
116
|
+
.romo-form input[type="email"]:focus,
|
117
|
+
.romo-form input[type="url"]:focus,
|
118
|
+
.romo-form input[type="search"]:focus,
|
119
|
+
.romo-form input[type="tel"]:focus,
|
120
|
+
.romo-form input[type="color"]:focus,
|
121
|
+
input.romo-select-dropdown-option-filter:focus {
|
122
|
+
@include input-focus;
|
123
|
+
}
|
157
124
|
|
158
|
-
|
159
|
-
|
160
|
-
|
125
|
+
.romo-form input[disabled],
|
126
|
+
.romo-form select[disabled],
|
127
|
+
.romo-form textarea[disabled],
|
128
|
+
.romo-form input[readonly],
|
129
|
+
.romo-form select[readonly],
|
130
|
+
.romo-form textarea[readonly],
|
131
|
+
input.romo-select-dropdown-option-filter[disabled],
|
132
|
+
input.romo-select-dropdown-option-filter[readonly] { background-color: $inputDisabledColor; }
|
133
|
+
|
134
|
+
.romo-form input[type="radio"][disabled],
|
135
|
+
.romo-form input[type="checkbox"][disabled],
|
136
|
+
.romo-form input[type="radio"][readonly],
|
137
|
+
.romo-form input[type="checkbox"][readonly] { background-color: transparent };
|
138
|
+
|
139
|
+
.romo-form select,
|
140
|
+
.romo-form input[type="text"],
|
141
|
+
.romo-form input[type="password"],
|
142
|
+
.romo-form input[type="datetime"],
|
143
|
+
.romo-form input[type="datetime-local"],
|
144
|
+
.romo-form input[type="date"],
|
145
|
+
.romo-form input[type="month"],
|
146
|
+
.romo-form input[type="time"],
|
147
|
+
.romo-form input[type="week"],
|
148
|
+
.romo-form input[type="number"],
|
149
|
+
.romo-form input[type="email"],
|
150
|
+
.romo-form input[type="url"],
|
151
|
+
.romo-form input[type="search"],
|
152
|
+
.romo-form input[type="tel"],
|
153
|
+
.romo-form input[type="color"],
|
154
|
+
input.romo-select-dropdown-option-filter {
|
155
|
+
height: $inputHeight;
|
156
|
+
line-height: $baseLineHeight;
|
157
|
+
@include align-middle;
|
158
|
+
}
|
161
159
|
|
162
|
-
.romo-
|
163
|
-
|
164
|
-
|
165
|
-
.romo-form input[type="datetime"],
|
166
|
-
.romo-form input[type="datetime-local"],
|
167
|
-
.romo-form input[type="date"],
|
168
|
-
.romo-form input[type="month"],
|
169
|
-
.romo-form input[type="time"],
|
170
|
-
.romo-form input[type="week"],
|
171
|
-
.romo-form input[type="number"],
|
172
|
-
.romo-form input[type="email"],
|
173
|
-
.romo-form input[type="url"],
|
174
|
-
.romo-form input[type="search"],
|
175
|
-
.romo-form input[type="tel"],
|
176
|
-
.romo-form input[type="color"],
|
177
|
-
input.romo-select-dropdown-option-filter {
|
178
|
-
display: inline-block;
|
179
|
-
padding: 4px 6px;
|
180
|
-
color: $inputColor;
|
181
|
-
}
|
160
|
+
input.romo-select-dropdown-option-filter {
|
161
|
+
height: $inputFilterHeight;
|
162
|
+
}
|
182
163
|
|
183
|
-
|
184
|
-
|
185
|
-
|
186
|
-
|
164
|
+
.romo-form textarea,
|
165
|
+
.romo-form input[type="text"],
|
166
|
+
.romo-form input[type="password"],
|
167
|
+
.romo-form input[type="datetime"],
|
168
|
+
.romo-form input[type="datetime-local"],
|
169
|
+
.romo-form input[type="date"],
|
170
|
+
.romo-form input[type="month"],
|
171
|
+
.romo-form input[type="time"],
|
172
|
+
.romo-form input[type="week"],
|
173
|
+
.romo-form input[type="number"],
|
174
|
+
.romo-form input[type="email"],
|
175
|
+
.romo-form input[type="url"],
|
176
|
+
.romo-form input[type="search"],
|
177
|
+
.romo-form input[type="tel"],
|
178
|
+
.romo-form input[type="color"],
|
179
|
+
input.romo-select-dropdown-option-filter {
|
180
|
+
display: inline-block;
|
181
|
+
padding: 4px 6px;
|
182
|
+
color: $inputColor;
|
183
|
+
}
|
184
|
+
|
185
|
+
input.romo-select-dropdown-option-filter {
|
186
|
+
display: block;
|
187
|
+
width: 100%;
|
188
|
+
}
|
187
189
|
|
188
|
-
.romo-form textarea,
|
189
|
-
.romo-form select[multiple],
|
190
|
-
.romo-form select[size] { height: auto; }
|
190
|
+
.romo-form textarea,
|
191
|
+
.romo-form select[multiple],
|
192
|
+
.romo-form select[size] { height: auto; }
|
191
193
|
|
192
|
-
.romo-form input[type="file"] {
|
193
|
-
|
194
|
-
|
195
|
-
}
|
194
|
+
.romo-form input[type="file"] {
|
195
|
+
height: ($baseLineHeight / 2) * 3; /* 30px */
|
196
|
+
line-height: ($baseLineHeight / 2) * 3; /* 30px */
|
197
|
+
}
|
198
|
+
|
199
|
+
.romo-input,
|
200
|
+
.romo-input1 { width: $inputSize1; }
|
201
|
+
.romo-input-small,
|
202
|
+
.romo-input0 { width: $inputSize0; }
|
203
|
+
.romo-input-large,
|
204
|
+
.romo-input2 { width: $inputSize2; }
|
205
|
+
|
206
|
+
.romo-input-block { width: 100%; display: block; }
|
207
|
+
|
208
|
+
.romo-form input[type="file"],
|
209
|
+
.romo-form input[type="image"],
|
210
|
+
.romo-form input[type="submit"],
|
211
|
+
.romo-form input[type="reset"],
|
212
|
+
.romo-form input[type="button"],
|
213
|
+
.romo-form input[type="radio"],
|
214
|
+
.romo-form input[type="checkbox"] { width: auto; }
|
215
|
+
|
216
|
+
.romo-form .romo-input-inline,
|
217
|
+
.romo-form .romo-input-help {
|
218
|
+
line-height: $inputHeight;
|
219
|
+
@include align-middle;
|
220
|
+
}
|
196
221
|
|
197
|
-
.romo-input,
|
198
|
-
.romo-input1 { width: $inputSize1; }
|
199
|
-
.romo-input-small,
|
200
|
-
.romo-input0 { width: $inputSize0; }
|
201
|
-
.romo-input-large,
|
202
|
-
.romo-input2 { width: $inputSize2; }
|
203
|
-
|
204
|
-
.romo-input-block { width: 100%; display: block; }
|
205
|
-
|
206
|
-
.romo-form input[type="file"],
|
207
|
-
.romo-form input[type="image"],
|
208
|
-
.romo-form input[type="submit"],
|
209
|
-
.romo-form input[type="reset"],
|
210
|
-
.romo-form input[type="button"],
|
211
|
-
.romo-form input[type="radio"],
|
212
|
-
.romo-form input[type="checkbox"] { width: auto; }
|
213
|
-
|
214
|
-
.romo-form .romo-input-inline,
|
215
|
-
.romo-form .romo-input-help {
|
216
|
-
line-height: $inputHeight;
|
217
|
-
@include align-middle;
|
218
222
|
}
|