mirror of
https://github.com/langhuihui/monibuca.git
synced 2025-09-26 23:05:55 +08:00
280 lines
5.7 KiB
CSS
280 lines
5.7 KiB
CSS
* {
|
|
margin: 0;
|
|
padding: 0;
|
|
box-sizing: border-box;
|
|
}
|
|
html, body {
|
|
height: 100%;
|
|
}
|
|
body {
|
|
font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol';
|
|
font-size: 13px;
|
|
line-height: 1.4;
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
a {
|
|
color: #2a66d9;
|
|
}
|
|
.header {
|
|
display: flex;
|
|
align-items: center;
|
|
height: 44px;
|
|
min-height: 44px;
|
|
background-color: #eee;
|
|
color: #212121;
|
|
padding: 0 1rem;
|
|
}
|
|
.header > div {
|
|
margin: 0 0.125em;
|
|
}
|
|
.header .title h1 {
|
|
font-size: 1.75em;
|
|
margin-right: 1rem;
|
|
margin-bottom: 4px;
|
|
}
|
|
.header .title a {
|
|
color: #212121;
|
|
text-decoration: none;
|
|
}
|
|
.header .title a:hover {
|
|
text-decoration: underline;
|
|
}
|
|
.header .description {
|
|
width: 100%;
|
|
text-align: right;
|
|
white-space: nowrap;
|
|
}
|
|
@media screen and (max-width: 799px) {
|
|
.header input {
|
|
display: none;
|
|
}
|
|
}
|
|
#detailsbox {
|
|
display: none;
|
|
position: fixed;
|
|
top: 40px;
|
|
right: 20px;
|
|
background-color: #ffffff;
|
|
box-shadow: 0 1px 5px rgba(0,0,0,.3);
|
|
line-height: 24px;
|
|
padding: 1em;
|
|
text-align: left;
|
|
}
|
|
.header input {
|
|
background: white url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' style='pointer-events:none;display:block;width:100%25;height:100%25;fill:%23757575'%3E%3Cpath d='M15.5 14h-.79l-.28-.27C15.41 12.59 16 11.11 16 9.5 16 5.91 13.09 3 9.5 3S3 5.91 3 9.5 5.91 16 9.5 16c1.61.0 3.09-.59 4.23-1.57l.27.28v.79l5 4.99L20.49 19l-4.99-5zm-6 0C7.01 14 5 11.99 5 9.5S7.01 5 9.5 5 14 7.01 14 9.5 11.99 14 9.5 14z'/%3E%3C/svg%3E") no-repeat 4px center/20px 20px;
|
|
border: 1px solid #d1d2d3;
|
|
border-radius: 2px 0 0 2px;
|
|
padding: 0.25em;
|
|
padding-left: 28px;
|
|
margin-left: 1em;
|
|
font-family: 'Roboto', 'Noto', sans-serif;
|
|
font-size: 1em;
|
|
line-height: 24px;
|
|
color: #212121;
|
|
}
|
|
.downArrow {
|
|
border-top: .36em solid #ccc;
|
|
border-left: .36em solid transparent;
|
|
border-right: .36em solid transparent;
|
|
margin-bottom: .05em;
|
|
margin-left: .5em;
|
|
transition: border-top-color 200ms;
|
|
}
|
|
.menu-item {
|
|
height: 100%;
|
|
text-transform: uppercase;
|
|
font-family: 'Roboto Medium', -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol';
|
|
position: relative;
|
|
}
|
|
.menu-item .menu-name:hover {
|
|
opacity: 0.75;
|
|
}
|
|
.menu-item .menu-name:hover .downArrow {
|
|
border-top-color: #666;
|
|
}
|
|
.menu-name {
|
|
height: 100%;
|
|
padding: 0 0.5em;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
}
|
|
.menu-name a {
|
|
text-decoration: none;
|
|
color: #212121;
|
|
}
|
|
.submenu {
|
|
display: none;
|
|
margin-top: -4px;
|
|
min-width: 10em;
|
|
position: absolute;
|
|
left: 0px;
|
|
background-color: white;
|
|
box-shadow: 0 1px 5px rgba(0,0,0,.3);
|
|
font-size: 100%;
|
|
text-transform: none;
|
|
white-space: nowrap;
|
|
}
|
|
.menu-item, .submenu {
|
|
user-select: none;
|
|
-moz-user-select: none;
|
|
-ms-user-select: none;
|
|
-webkit-user-select: none;
|
|
}
|
|
.submenu hr {
|
|
border: 0;
|
|
border-top: 2px solid #eee;
|
|
}
|
|
.submenu a {
|
|
display: block;
|
|
padding: .5em 1em;
|
|
text-decoration: none;
|
|
}
|
|
.submenu a:hover, .submenu a.active {
|
|
color: white;
|
|
background-color: #6b82d6;
|
|
}
|
|
.submenu a.disabled {
|
|
color: gray;
|
|
pointer-events: none;
|
|
}
|
|
.menu-check-mark {
|
|
position: absolute;
|
|
left: 2px;
|
|
}
|
|
.menu-delete-btn {
|
|
position: absolute;
|
|
right: 2px;
|
|
}
|
|
|
|
.help {
|
|
padding-left: 1em;
|
|
}
|
|
|
|
{{/* Used to disable events when a modal dialog is displayed */}}
|
|
#dialog-overlay {
|
|
display: none;
|
|
position: fixed;
|
|
left: 0px;
|
|
top: 0px;
|
|
width: 100%;
|
|
height: 100%;
|
|
background-color: rgba(1,1,1,0.1);
|
|
}
|
|
|
|
.dialog {
|
|
{{/* Displayed centered horizontally near the top */}}
|
|
display: none;
|
|
position: fixed;
|
|
margin: 0px;
|
|
top: 60px;
|
|
left: 50%;
|
|
transform: translateX(-50%);
|
|
font-size: 125%;
|
|
background-color: #ffffff;
|
|
box-shadow: 0 1px 5px rgba(0,0,0,.3);
|
|
}
|
|
.dialog-header {
|
|
font-size: 120%;
|
|
border-bottom: 1px solid #CCCCCC;
|
|
width: 100%;
|
|
text-align: center;
|
|
background: #EEEEEE;
|
|
user-select: none;
|
|
}
|
|
.dialog-footer {
|
|
border-top: 1px solid #CCCCCC;
|
|
width: 100%;
|
|
text-align: right;
|
|
padding: 10px;
|
|
}
|
|
.dialog-error {
|
|
margin: 10px;
|
|
color: red;
|
|
}
|
|
.dialog input {
|
|
margin: 10px;
|
|
font-size: inherit;
|
|
}
|
|
.dialog button {
|
|
margin-left: 10px;
|
|
font-size: inherit;
|
|
}
|
|
#save-dialog, #delete-dialog {
|
|
width: 50%;
|
|
max-width: 20em;
|
|
}
|
|
#delete-prompt {
|
|
padding: 10px;
|
|
}
|
|
|
|
#content {
|
|
overflow-y: scroll;
|
|
padding: 1em;
|
|
}
|
|
#top {
|
|
overflow-y: scroll;
|
|
}
|
|
#graph {
|
|
overflow: hidden;
|
|
}
|
|
#graph svg {
|
|
width: 100%;
|
|
height: auto;
|
|
padding: 10px;
|
|
}
|
|
#content.source .filename {
|
|
margin-top: 0;
|
|
margin-bottom: 1em;
|
|
font-size: 120%;
|
|
}
|
|
#content.source pre {
|
|
margin-bottom: 3em;
|
|
}
|
|
table {
|
|
border-spacing: 0px;
|
|
width: 100%;
|
|
padding-bottom: 1em;
|
|
white-space: nowrap;
|
|
}
|
|
table thead {
|
|
font-family: 'Roboto Medium', -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol';
|
|
}
|
|
table tr th {
|
|
position: sticky;
|
|
top: 0;
|
|
background-color: #ddd;
|
|
text-align: right;
|
|
padding: .3em .5em;
|
|
}
|
|
table tr td {
|
|
padding: .3em .5em;
|
|
text-align: right;
|
|
}
|
|
#top table tr th:nth-child(6),
|
|
#top table tr th:nth-child(7),
|
|
#top table tr td:nth-child(6),
|
|
#top table tr td:nth-child(7) {
|
|
text-align: left;
|
|
}
|
|
#top table tr td:nth-child(6) {
|
|
width: 100%;
|
|
text-overflow: ellipsis;
|
|
overflow: hidden;
|
|
white-space: nowrap;
|
|
}
|
|
#flathdr1, #flathdr2, #cumhdr1, #cumhdr2, #namehdr {
|
|
cursor: ns-resize;
|
|
}
|
|
.hilite {
|
|
background-color: #ebf5fb;
|
|
font-weight: bold;
|
|
}
|
|
/* stacking order */
|
|
.boxtext { z-index: 2; } /* flame graph box text */
|
|
#current-details { z-index: 2; } /* flame graph current box info */
|
|
#detailsbox { z-index: 3; } /* profile details */
|
|
.submenu { z-index: 4; }
|
|
.dialog { z-index: 5; }
|