1
0
Fork 0
mirror of https://github.com/gorhill/uMatrix.git synced 2024-05-03 20:03:27 +12:00
uMatrix/src/css/dashboard.css
Raymond Hill 9b292304d3
Bring uMatrix up to date
Notably:
- Import logger improvements from uBO
- Import CNAME uncloaking from uBO
- Import more improvements from uBO
- Make use of modern JS features

This should un-stall further development of uMatrix.
2019-12-20 12:24:18 -05:00

68 lines
1.3 KiB
CSS

body {
border: 0;
display: flex;
flex-direction: column;
font: 15px sans-serif;
height: 100vh;
margin: 0;
overflow: hidden;
padding: 0;
width: 100vw;
}
#dashboard-nav {
border: 0;
margin: 0;
padding: 0;
width: 100vw;
z-index: 10;
}
#dashboard-nav-widgets {
margin: 0;
border-bottom: 1px solid #ccc;
padding: 4px 0 0 0;
white-space: nowrap;
background-color: white;
}
#dashboard-nav-widgets > span {
padding: 0 0.5em;
font-size: larger;
vertical-align: bottom;
}
#dashboard-nav-widgets > span > img {
width: 1em;
}
.tabButton {
margin: 0;
border: 1px solid #ccc;
border-top-left-radius: 3px;
border-top-right-radius: 3px;
padding: 4px;
display: inline-block;
position: relative;
top: 1px;
color: black;
background-color: #eee;
font: inherit;
cursor: pointer;
text-decoration: none;
}
.tabButton:focus {
outline: 0;
}
.tabButton:active,.tabButton:visited {
color: inherited;
}
.tabButton.selected {
border-bottom: 1px solid white;
background-color: white;
}
iframe {
background-color: transparent;
border: 0;
flex-grow: 1;
margin: 0;
overflow: auto;
padding: 0;
width: 100%;
}