Skip to content

Commit e0ae51a

Browse files
committed
fix inputs rgba
1 parent 4ede506 commit e0ae51a

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

themes/Theme-Minimal/inputs.css

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -110,8 +110,8 @@ button.btn.favorite-button {
110110
transition: opacity 0.5s;
111111

112112
&.not-favorite {
113-
color: 191, 204, 214, 0.5;
114-
filter: drop-shadow(0 0 2px 0, 0, 0, 0.9);
113+
color: rgba(191, 204, 214, 0.5);
114+
filter: drop-shadow(0 0 2px rgba(0, 0, 0, 0.9));
115115

116116
&.hide-not-favorite {
117117
opacity: 0;
@@ -120,7 +120,7 @@ button.btn.favorite-button {
120120

121121
&.favorite {
122122
color: #ff7373;
123-
filter: drop-shadow(0 0 2px 0, 0, 0, 0.9);
123+
filter: drop-shadow(0 0 2px rgba(0, 0, 0, 0.9));
124124
}
125125

126126
&:hover,
@@ -136,7 +136,7 @@ button.btn.favorite-button {
136136
border-radius: 5px;
137137

138138
&:hover {
139-
background: 138, 155, 168, 0.15;
139+
background: rgba(138, 155, 168, 0.15);
140140
color: #f5f8fa;
141141
}
142142

@@ -320,7 +320,7 @@ div.react-datepicker {
320320
}
321321

322322
&:hover {
323-
background: 138, 155, 168, 0.15;
323+
background: rgba(138, 155, 168, 0.15);
324324
}
325325
}
326326

@@ -329,7 +329,7 @@ div.react-datepicker {
329329
color: var(--primary-12);
330330

331331
ul.react-datepicker__time-list li.react-datepicker__time-list-item:hover {
332-
background-color: 138, 155, 168, 0.15;
332+
background-color: rgba(138, 155, 168, 0.15);
333333
}
334334
}
335335

0 commit comments

Comments
 (0)