|
@@ -2591,6 +2591,26 @@ a.box:active {
|
|
|
cursor: not-allowed;
|
|
|
}
|
|
|
|
|
|
+.input::-moz-placeholder,
|
|
|
+.textarea::-moz-placeholder {
|
|
|
+ color: rgba(54, 54, 54, 0.3);
|
|
|
+}
|
|
|
+
|
|
|
+.input::-webkit-input-placeholder,
|
|
|
+.textarea::-webkit-input-placeholder {
|
|
|
+ color: rgba(54, 54, 54, 0.3);
|
|
|
+}
|
|
|
+
|
|
|
+.input:-moz-placeholder,
|
|
|
+.textarea:-moz-placeholder {
|
|
|
+ color: rgba(54, 54, 54, 0.3);
|
|
|
+}
|
|
|
+
|
|
|
+.input:-ms-input-placeholder,
|
|
|
+.textarea:-ms-input-placeholder {
|
|
|
+ color: rgba(54, 54, 54, 0.3);
|
|
|
+}
|
|
|
+
|
|
|
.input:hover, .input.is-hovered,
|
|
|
.textarea:hover,
|
|
|
.textarea.is-hovered {
|
|
@@ -2931,6 +2951,22 @@ a.box:active {
|
|
|
cursor: not-allowed;
|
|
|
}
|
|
|
|
|
|
+.select select::-moz-placeholder {
|
|
|
+ color: rgba(54, 54, 54, 0.3);
|
|
|
+}
|
|
|
+
|
|
|
+.select select::-webkit-input-placeholder {
|
|
|
+ color: rgba(54, 54, 54, 0.3);
|
|
|
+}
|
|
|
+
|
|
|
+.select select:-moz-placeholder {
|
|
|
+ color: rgba(54, 54, 54, 0.3);
|
|
|
+}
|
|
|
+
|
|
|
+.select select:-ms-input-placeholder {
|
|
|
+ color: rgba(54, 54, 54, 0.3);
|
|
|
+}
|
|
|
+
|
|
|
.select select:hover, .select select.is-hovered {
|
|
|
border-color: #b5b5b5;
|
|
|
}
|
|
@@ -4427,10 +4463,6 @@ a.box:active {
|
|
|
text-align: left;
|
|
|
}
|
|
|
|
|
|
-.table tr:hover {
|
|
|
- background-color: #fafafa;
|
|
|
-}
|
|
|
-
|
|
|
.table tr.is-selected {
|
|
|
background-color: #00d1b2;
|
|
|
color: #fff;
|
|
@@ -4478,6 +4510,14 @@ a.box:active {
|
|
|
width: 100%;
|
|
|
}
|
|
|
|
|
|
+.table.is-hoverable tbody tr:hover {
|
|
|
+ background-color: #fafafa;
|
|
|
+}
|
|
|
+
|
|
|
+.table.is-hoverable.is-striped tbody tr:not(.is-selected):hover {
|
|
|
+ background-color: whitesmoke;
|
|
|
+}
|
|
|
+
|
|
|
.table.is-narrow td,
|
|
|
.table.is-narrow th {
|
|
|
padding: 0.25em 0.5em;
|
|
@@ -4487,10 +4527,6 @@ a.box:active {
|
|
|
background-color: #fafafa;
|
|
|
}
|
|
|
|
|
|
-.table.is-striped tbody tr:not(.is-selected):nth-child(even):hover {
|
|
|
- background-color: whitesmoke;
|
|
|
-}
|
|
|
-
|
|
|
.tags {
|
|
|
-webkit-box-align: center;
|
|
|
-ms-flex-align: center;
|