@ons/design-system 54.0.0 → 54.0.1
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/components/autosuggest/_autosuggest.scss +4 -4
- package/components/autosuggest/autosuggest.spec.js +12 -2
- package/components/autosuggest/autosuggest.ui.js +4 -7
- package/components/button/_button.scss +8 -1
- package/components/checkboxes/_checkbox.scss +7 -7
- package/components/input/_input-type.scss +34 -3
- package/components/input/_input.scss +16 -8
- package/components/input/_macro.njk +15 -17
- package/components/radios/_radio.scss +2 -2
- package/components/relationships/_relationships.scss +2 -2
- package/components/table/_table.scss +3 -2
- package/components/tabs/_tabs.scss +55 -34
- package/components/tabs/tabs.js +4 -2
- package/components/upload/_upload.scss +2 -2
- package/css/census.css +1 -1
- package/css/ids.css +1 -1
- package/css/main.css +1 -1
- package/package.json +1 -1
- package/scripts/main.es5.js +1 -1
- package/scripts/main.js +1 -1
- package/scss/patternlib.scss +0 -56
- package/scss/vars/_colors.scss +2 -1
package/scss/patternlib.scss
CHANGED
|
@@ -86,62 +86,6 @@
|
|
|
86
86
|
}
|
|
87
87
|
}
|
|
88
88
|
|
|
89
|
-
.ons-table-scrollable {
|
|
90
|
-
position: relative;
|
|
91
|
-
::-webkit-scrollbar {
|
|
92
|
-
height: 7px;
|
|
93
|
-
}
|
|
94
|
-
::-webkit-scrollbar-thumb {
|
|
95
|
-
background: $color-grey-75;
|
|
96
|
-
border-radius: 20px;
|
|
97
|
-
}
|
|
98
|
-
&--on {
|
|
99
|
-
th,
|
|
100
|
-
td {
|
|
101
|
-
white-space: nowrap;
|
|
102
|
-
}
|
|
103
|
-
}
|
|
104
|
-
&__content {
|
|
105
|
-
overflow: visible;
|
|
106
|
-
overflow-x: scroll;
|
|
107
|
-
width: 100%;
|
|
108
|
-
&:focus {
|
|
109
|
-
outline: 3px solid $color-focus;
|
|
110
|
-
outline-offset: 3px;
|
|
111
|
-
}
|
|
112
|
-
th,
|
|
113
|
-
td {
|
|
114
|
-
@include mq(xxs, m) {
|
|
115
|
-
white-space: nowrap;
|
|
116
|
-
}
|
|
117
|
-
}
|
|
118
|
-
.ons-table__right-shadow,
|
|
119
|
-
.ons-table__left-shadow {
|
|
120
|
-
height: 100%;
|
|
121
|
-
position: absolute;
|
|
122
|
-
top: 0;
|
|
123
|
-
width: 5px;
|
|
124
|
-
z-index: 200;
|
|
125
|
-
|
|
126
|
-
&.ons-with-transition {
|
|
127
|
-
transition: box-shadow 0.4s ease-out;
|
|
128
|
-
}
|
|
129
|
-
}
|
|
130
|
-
.ons-table__right-shadow {
|
|
131
|
-
right: 0;
|
|
132
|
-
&.ons-visible {
|
|
133
|
-
box-shadow: inset -1px 0 0 0 #bfc1c3, inset -5px 0 0 0 rgba(191, 193, 195, 0.4);
|
|
134
|
-
}
|
|
135
|
-
}
|
|
136
|
-
.ons-table__left-shadow {
|
|
137
|
-
left: 0;
|
|
138
|
-
&.ons-visible {
|
|
139
|
-
box-shadow: inset 1px 0 0 0 #bfc1c3, inset -5px 0 0 0 rgba(191, 193, 195, 0.4);
|
|
140
|
-
}
|
|
141
|
-
}
|
|
142
|
-
}
|
|
143
|
-
}
|
|
144
|
-
|
|
145
89
|
&__content,
|
|
146
90
|
&__sub-nav {
|
|
147
91
|
> {
|
package/scss/vars/_colors.scss
CHANGED
|
@@ -92,7 +92,8 @@ $color-placeholder: $color-grey-15 !default;
|
|
|
92
92
|
// Form elements
|
|
93
93
|
$color-button: $color-leaf-green !default;
|
|
94
94
|
$color-button-secondary: $color-grey-15 !default;
|
|
95
|
-
$color-input: $color-black !default;
|
|
95
|
+
$color-input-border: $color-black !default;
|
|
96
|
+
$color-input-bg: $color-white !default;
|
|
96
97
|
|
|
97
98
|
// Panels and status
|
|
98
99
|
$color-info: $color-ocean-blue !default;
|