Skip to content

Commit

Permalink
Use shorthand for CSS properties
Browse files Browse the repository at this point in the history
  • Loading branch information
Chocobo1 committed Oct 22, 2021
1 parent 6226dd5 commit 1532001
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 16 deletions.
12 changes: 6 additions & 6 deletions src/webui/www/private/css/Layout.css
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ body {
background: url("../images/logo.gif") no-repeat;
background-position: left 0;
height: 32px;
padding: 7px 8px 6px 8px;
padding: 7px 8px 6px;
}

#desktopTitlebar h1.applicationTitle {
Expand All @@ -69,7 +69,7 @@ body {
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 10px;
font-weight: bold;
padding: 7px 0 0 0;
padding: 7px 0 0;
text-align: center;
text-transform: uppercase;
}
Expand Down Expand Up @@ -128,7 +128,7 @@ body {
#desktopNavbar ul li a {
color: #333;
font-weight: normal;
padding: 2px 10px 6px 10px;
padding: 2px 10px 6px;
}

#desktopNavbar ul li a:hover {
Expand Down Expand Up @@ -239,7 +239,7 @@ li.divider {
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 11px;
height: 24px;
padding: 6px 8px 0 8px;
padding: 6px 8px 0;
}

/* Panel Layout
Expand Down Expand Up @@ -306,7 +306,7 @@ li.divider {
height: 22px;
margin: 0;
overflow: hidden;
padding: 3px 8px 0 8px;
padding: 3px 8px 0;
}

.panel-collapse {
Expand Down Expand Up @@ -406,7 +406,7 @@ div.toolbox.divider {
#spinnerWrapper {
background: url("../images/spinner-placeholder.gif") no-repeat;
height: 16px;
margin: 4px 5px 0 5px;
margin: 4px 5px 0;
width: 16px;
}

Expand Down
2 changes: 1 addition & 1 deletion src/webui/www/private/css/Tabs.css
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ Required by:
background-position: left -35px;
cursor: pointer;
float: left;
margin: 0 0 5px 0;
margin: 0 0 5px;
}

.tab-menu li.selected {
Expand Down
4 changes: 1 addition & 3 deletions src/webui/www/private/css/dynamicTable.css
Original file line number Diff line number Diff line change
Expand Up @@ -51,9 +51,7 @@ tr.dynamicTableHeader {

.dynamicTable th {
background-color: #eee;
border-right-color: #ccc;
border-right-style: solid;
border-right-width: 1px;
border-right: 1px solid #ccc;
-moz-box-sizing: border-box;
-webkit-box-sizing: border-box;
box-sizing: border-box;
Expand Down
12 changes: 6 additions & 6 deletions src/webui/www/private/css/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ h4 {
font-size: 12px;
font-weight: bold;
margin: 0;
padding: 0 0 5px 0;
padding: 0 0 5px;
}

h2 {
Expand All @@ -55,8 +55,8 @@ h2 {
border-bottom: 1px solid #bbb;
display: block;
font-size: 12px;
margin: 0 0 8px 0;
padding: 6px 0 6px 0;
margin: 0 0 8px;
padding: 6px 0;
}

#error_div {
Expand All @@ -82,7 +82,7 @@ a:hover {

p {
margin: 0;
padding: 0 0 9px 0;
padding: 0 0 9px;
}

/* List Elements */
Expand All @@ -97,7 +97,7 @@ dt {
}

dd {
padding: 0 0 9px 0;
padding: 0 0 9px;
}

/* Code */
Expand All @@ -109,7 +109,7 @@ pre {
display: block;
font-family: "Courier New", Courier, monospace;
font-size: 11px;
margin: 0 0 10px 0;
margin: 0 0 10px;
max-height: 250px;
overflow: auto;
padding: 10px;
Expand Down

0 comments on commit 1532001

Please sign in to comment.