1
0
mirror of https://github.com/s00500/ESPUI.git synced 2025-06-12 09:20:39 +00:00

The Pad works again

Don't set the style of all the <ul> and <li> in the css, use the class
This commit is contained in:
Christian Riggenbach
2019-03-08 21:17:28 +01:00
parent b987828a25
commit 00d996d8dd
10 changed files with 17 additions and 16 deletions

View File

@ -892,21 +892,21 @@ input[id^="num"] {
font-size: 115%;
}
body div > ul {
body div > ul.navigation {
margin: 0;
padding: 0;
border-bottom: 3px solid #666;
overflow: hidden;
}
ul li {
ul.navigation li {
list-style: none;
float: left;
margin-right: 4px;
}
ul li.controls {
ul.navigation li.controls {
float: right;
}
ul li a {
ul.navigation li a {
font-weight: bold;
display: inline-block;
padding: 6px 12px;
@ -920,7 +920,7 @@ ul li a {
-pie-background: linear-gradient(#eee,#e4e4e4);
}
ul li.active a {
ul.navigation li.active a {
pointer-events: none;
color: white;
background: #666;
@ -929,6 +929,7 @@ ul li.active a {
background: linear-gradient(#888,#666);
-pie-background: linear-gradient(#888,#666);
}
div.tabscontent > div {
padding: 0 15px;
}

File diff suppressed because one or more lines are too long