css: add normalizer, and fix previous rules

Some old rules was build with box-sizing: content-box. Switching now to border-box change how containers are calculated
This commit is contained in:
Sebastian Castro 2020-04-06 12:20:22 +02:00 committed by muxator
parent ae1a2531f8
commit fb5a65c5fc
8 changed files with 432 additions and 23 deletions

View file

@ -74,11 +74,6 @@
padding: 8px;
}
#chatinputbox #chatinput {
width: calc(100% - 20px);
float: right;
}
.plugin-ep_author_neat #chatbox.stickyChat #chattext {
padding: 5px 3px;
}

View file

@ -1,8 +1,8 @@
#input_title, #chatinput, .hyperlink-dialog>.hyperlink-url {
input[type="text"], #input_title, #chatinput, .hyperlink-dialog>.hyperlink-url {
border: 1px solid #d2d2d2;
height: 18px;
border-radius: 3px;
padding: 8px 10px;
height: 28px;
background: none !important;
background-color: white !important;
box-shadow: none !important;

View file

@ -11,11 +11,6 @@
min-width: 0;
}
.popup input[type=text] {
border: none !important;
border-bottom: 1px solid #d7d8da !important;
}
.popup h1 {
margin-bottom: 15px;
}