This commit is contained in:
Jeremy Thomas
2017-10-07 16:57:19 +01:00
parent f23012edbd
commit fc5ddd473c
7 changed files with 116 additions and 18 deletions

View File

@@ -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;

File diff suppressed because one or more lines are too long