This commit is contained in:
Jeremy Thomas
2017-09-18 23:33:19 +01:00
parent f89cca4c50
commit 63bac2c775
6 changed files with 122 additions and 9 deletions

View File

@@ -2641,6 +2641,12 @@ a.box:active {
border-radius: 290486px;
}
.input[readonly],
.textarea[readonly] {
-webkit-box-shadow: none;
box-shadow: none;
}
.input.is-white,
.textarea.is-white {
border-color: white;
@@ -2795,6 +2801,15 @@ a.box:active {
width: auto;
}
.input.is-static {
background-color: transparent;
border-color: transparent;
-webkit-box-shadow: none;
box-shadow: none;
padding-left: 0;
padding-right: 0;
}
.textarea {
display: block;
max-width: 100%;

File diff suppressed because one or more lines are too long