Skip to content
Snippets Groups Projects

collectstatic

Merged Nico Vermaas requested to merge dev-nico into release
102 files
+ 7148
3846
Compare changes
  • Side-by-side
  • Inline
Files
102
@@ -4,6 +4,10 @@
@import url(fonts.css);
html, body {
height: 100%;
}
body {
margin: 0;
padding: 0;
@@ -94,7 +98,7 @@ h5 {
letter-spacing: 1px;
}
ul li {
ul > li {
list-style-type: square;
padding: 1px 0;
}
@@ -124,6 +128,7 @@ form {
fieldset {
margin: 0;
min-width: 0;
padding: 0;
border: none;
border-top: 1px solid #eee;
@@ -141,6 +146,7 @@ code, pre {
font-family: "Bitstream Vera Sans Mono", Monaco, "Courier New", Courier, monospace;
color: #666;
font-size: 12px;
overflow-x: auto;
}
pre.literal-block {
@@ -171,22 +177,10 @@ hr {
font-size: 11px;
}
.tiny {
font-size: 10px;
}
p.tiny {
margin-top: -2px;
}
.mini {
font-size: 10px;
}
p.mini {
margin-top: -3px;
}
.help, p.help, form p.help, div.help, form div.help, div.help li {
font-size: 11px;
color: #999;
@@ -209,32 +203,10 @@ p img, h1 img, h2 img, h3 img, h4 img, td img {
font-weight: normal;
}
.float-right {
float: right;
}
.float-left {
float: left;
}
.clear {
clear: both;
}
.align-left {
text-align: left;
}
.align-right {
text-align: right;
}
.example {
margin: 10px 0;
padding: 5px 10px;
background: #efefef;
}
.nowrap {
white-space: nowrap;
}
@@ -284,11 +256,14 @@ tr.alt {
background: #f6f6f6;
}
.row1 {
tr:nth-child(odd), .row-form-errors {
background: #fff;
}
.row2 {
tr:nth-child(even),
tr:nth-child(even) .errorlist,
tr:nth-child(odd) + .row-form-errors,
tr:nth-child(odd) + .row-form-errors .errorlist {
background: #f9f9f9;
}
@@ -441,6 +416,8 @@ select {
}
select[multiple] {
/* Allow HTML size attribute to override the height in the rule above. */
height: auto;
min-height: 150px;
}
@@ -618,24 +595,11 @@ td ul.errorlist li {
padding-left: 0;
}
.errors input, .errors select, .errors textarea {
.errors input, .errors select, .errors textarea,
td ul.errorlist + input, td ul.errorlist + select, td ul.errorlist + textarea {
border: 1px solid #ba2121;
}
div.system-message {
background: #ffc;
margin: 10px;
padding: 6px 8px;
font-size: .8em;
}
div.system-message p.system-message-title {
padding: 4px 5px 4px 25px;
margin: 0;
color: #c11;
background: #ffefef url(../img/icon-no.svg) 5px 5px no-repeat;
}
.description {
font-size: 12px;
padding: 5px 0 0 12px;
@@ -772,6 +736,23 @@ table#change-history tbody th {
width: 100%;
min-width: 980px;
padding: 0;
display: flex;
flex-direction: column;
height: 100%;
}
#container > div {
flex-shrink: 0;
}
#container > .main {
display: flex;
flex: 1 0 auto;
}
.main > .content {
flex: 1 0;
max-width: 100%;
}
#content {
@@ -827,10 +808,12 @@ table#change-history tbody th {
#header {
width: auto;
height: 40px;
height: auto;
display: flex;
justify-content: space-between;
align-items: center;
padding: 10px 40px;
background: #417690;
line-height: 40px;
color: #ffc;
overflow: hidden;
}
Loading