Refactored table CSS, bettered layout in problems
This commit is contained in:
parent
1215b13d47
commit
2c5b434fd2
15 changed files with 379 additions and 146 deletions
|
|
@ -49,7 +49,9 @@ dialog,
|
|||
#acknowledged-list,
|
||||
#values,
|
||||
#services,
|
||||
#notifications {
|
||||
#notifications,
|
||||
#group,
|
||||
.table {
|
||||
background-color: #fff !important;
|
||||
border: 1px solid #ddd;
|
||||
box-shadow: 5px 5px 8px 0px rgba(0, 0, 0, 0.25);
|
||||
|
|
|
|||
|
|
@ -1,3 +1,28 @@
|
|||
.table {
|
||||
display: grid;
|
||||
grid-gap: 6px 16px;
|
||||
align-items: center;
|
||||
margin-top: 32px;
|
||||
margin-bottom: 32px;
|
||||
background-color: #2979b8;
|
||||
padding: 16px 24px;
|
||||
width: min-content;
|
||||
border-top-left-radius: 8px;
|
||||
border-top-right-radius: 8px;
|
||||
}
|
||||
.table .row {
|
||||
grid-column: 1 / -1;
|
||||
}
|
||||
.table > div {
|
||||
white-space: nowrap;
|
||||
line-height: 24px;
|
||||
}
|
||||
.table .header {
|
||||
font-size: 0.85em;
|
||||
font-weight: bold;
|
||||
color: #7bb8eb;
|
||||
line-height: unset !important;
|
||||
}
|
||||
html {
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,61 +1,45 @@
|
|||
#problems-list,
|
||||
#acknowledged-list {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(6, min-content);
|
||||
grid-gap: 4px 16px;
|
||||
margin-top: 32px;
|
||||
margin-bottom: 32px;
|
||||
background-color: #2979b8;
|
||||
padding: 16px 24px;
|
||||
width: min-content;
|
||||
border-top-left-radius: 8px;
|
||||
border-top-right-radius: 8px;
|
||||
}
|
||||
#problems-list div,
|
||||
#acknowledged-list div {
|
||||
white-space: nowrap;
|
||||
line-height: 24px;
|
||||
}
|
||||
#problems-list .header,
|
||||
#acknowledged-list .header {
|
||||
font-weight: 800;
|
||||
color: #7bb8eb;
|
||||
grid-template-columns: repeat(7, min-content);
|
||||
}
|
||||
#problems-list .trigger,
|
||||
#acknowledged-list .trigger {
|
||||
color: #1b4e78;
|
||||
font-weight: 800;
|
||||
}
|
||||
#problems-list .acknowledge img,
|
||||
#acknowledged-list .acknowledge img {
|
||||
#problems-list img.acknowledge,
|
||||
#acknowledged-list img.acknowledge {
|
||||
height: 16px;
|
||||
}
|
||||
#problems-list .info,
|
||||
#acknowledged-list .info {
|
||||
margin-right: 8px;
|
||||
}
|
||||
#problems-list .icons,
|
||||
#acknowledged-list .icons {
|
||||
display: grid;
|
||||
grid-template-columns: min-content min-content;
|
||||
align-items: center;
|
||||
}
|
||||
#acknowledged-list.hidden {
|
||||
display: none;
|
||||
}
|
||||
#areas {
|
||||
#area-grouped {
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
gap: 24px;
|
||||
margin-top: 16px;
|
||||
align-items: flex-start;
|
||||
}
|
||||
#areas .area .section {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(4, min-content);
|
||||
grid-gap: 8px 12px;
|
||||
#area-grouped .area {
|
||||
grid-template-columns: repeat(5, min-content);
|
||||
}
|
||||
#areas .area .section .name {
|
||||
color: #000;
|
||||
grid-column: 1 / -1;
|
||||
font-weight: bold !important;
|
||||
line-height: 24px;
|
||||
}
|
||||
#areas .area .section div {
|
||||
white-space: nowrap;
|
||||
#area-grouped .area .section {
|
||||
padding: 4px 10px;
|
||||
border-radius: 5px;
|
||||
background: #2979b8;
|
||||
color: #fff;
|
||||
width: min-content;
|
||||
margin-bottom: 8px;
|
||||
}
|
||||
.hidden {
|
||||
display: none;
|
||||
|
|
|
|||
25
static/css/default_light/table.css
Normal file
25
static/css/default_light/table.css
Normal file
|
|
@ -0,0 +1,25 @@
|
|||
.table {
|
||||
display: grid;
|
||||
grid-gap: 6px 16px;
|
||||
align-items: center;
|
||||
margin-top: 32px;
|
||||
margin-bottom: 32px;
|
||||
background-color: #2979b8;
|
||||
padding: 16px 24px;
|
||||
width: min-content;
|
||||
border-top-left-radius: 8px;
|
||||
border-top-right-radius: 8px;
|
||||
}
|
||||
.table .row {
|
||||
grid-column: 1 / -1;
|
||||
}
|
||||
.table > div {
|
||||
white-space: nowrap;
|
||||
line-height: 24px;
|
||||
}
|
||||
.table .header {
|
||||
font-size: 0.85em;
|
||||
font-weight: bold;
|
||||
color: #7bb8eb;
|
||||
line-height: unset !important;
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue