Compare commits

...

3 Commits

Author SHA1 Message Date
6ded48f3bd Add styling for WEditor 2024-03-12 12:11:30 -05:00
6c4b6ef1b3 move box-sizing to both textarea AND input 2024-03-12 12:10:03 -05:00
d49352be88 Add box-sizing to textarea 2024-03-12 12:09:18 -05:00
2 changed files with 34 additions and 0 deletions

View File

@ -121,3 +121,31 @@
border: var(--tab-border); border: var(--tab-border);
} }
} }
.tabbed-container._weditor .tablist .buttonrow {
height: 0px;
overflow: hidden;
}
.tabbed-container._weditor .tablist .buttonrow.visible {
background: var(--tab-selected);
border: var(--tab-border);
border-bottom: none;
padding: 4px 0px 0px 4px;
height: unset;
}
.tabbed-container._weditor .tablist .buttonrow .button {
margin: 0px;
}
.tabbed-container._weditor .box {
display: flex;
margin: 0px;
padding: 0px;
}
.tabbed-container._weditor .box textarea {
border: none;
margin: 0px;
}

View File

@ -52,6 +52,12 @@ textarea {
width: 100%; width: 100%;
} }
textarea, input {
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
}
@media only screen and (orientation: landscape) { @media only screen and (orientation: landscape) {
:target::before { :target::before {
content: ""; content: "";