Farmbot-Web-App/frontend/css/status_ticker.scss

112 lines
1.8 KiB
SCSS
Raw Permalink Normal View History

2017-06-29 12:54:02 -06:00
.ticker-list {
2017-07-07 02:39:41 -06:00
position: fixed;
2017-07-07 10:50:52 -06:00
top: 0;
2017-07-07 02:39:41 -06:00
left: 0;
right: 0;
2017-07-07 10:50:52 -06:00
z-index: 3;
background: $black;
opacity: 0.9;
2019-02-11 19:45:30 -07:00
min-height: 3.25rem;
2018-09-28 13:22:28 -06:00
.bp3-collapse {
2019-02-06 18:36:11 -07:00
width: 100% !important;
2017-07-07 10:50:52 -06:00
overflow-y: scroll !important;
max-height: 20rem !important;
2017-07-07 02:39:41 -06:00
}
2017-07-07 10:50:52 -06:00
* {
color: $white;
text-rendering: optimizeLegibility;
-webkit-font-smoothing: antialiased;
2017-07-07 02:39:41 -06:00
}
&:after {
content: "";
left: 0;
2018-09-13 14:26:53 -06:00
bottom: 0;
2017-07-07 02:39:41 -06:00
right: 0;
pointer-events: none;
}
2018-07-10 22:29:10 -06:00
a {
color: $off_white;
&:link {
font-weight: 500;
color: $off_white;
}
&:visited {
color: $off_white;
}
&:hover {
font-weight: bold;
color: $off_white;
}
&:active {
color: $off_white;
}
}
2017-07-07 10:50:52 -06:00
}
.status-ticker-wrapper {
padding: 0.6rem 1rem 0;
2017-07-07 15:32:18 -06:00
transition: all 0.2s ease;
&:hover {
background: rgba(255, 255, 255, 0.2);
}
2017-07-07 10:50:52 -06:00
.saucer {
2018-09-13 14:26:53 -06:00
margin: 0.2rem 0.6rem 0rem 0;
2017-07-07 10:50:52 -06:00
float: left;
width: 1.6rem;
height: 1.6rem;
border-radius: 50%;
2017-07-07 02:39:41 -06:00
}
2017-06-29 12:54:02 -06:00
}
2018-05-14 21:36:38 -06:00
.ticker-list,
2017-07-07 10:50:52 -06:00
.first-ticker {
2017-07-25 14:08:04 -06:00
.markdown p {
font-weight: 600;
2018-01-27 02:29:13 -07:00
code {
background: $dark_gray;
}
2017-07-25 14:08:04 -06:00
}
2018-05-14 21:36:38 -06:00
}
.first-ticker {
2019-07-23 14:57:43 -06:00
height: 3rem;
overflow: hidden;
2018-05-14 21:36:38 -06:00
padding-bottom: 0.5rem;
background: $black;
2017-07-25 14:08:04 -06:00
.status-ticker-created-at {
font-size: 1.2rem;
font-weight: 600;
}
2017-07-07 15:32:18 -06:00
.status-ticker-wrapper {
&:hover {
background: initial;
}
}
2017-06-29 12:54:02 -06:00
}
2017-07-07 10:50:52 -06:00
.status-ticker-created-at {
float: right;
2017-07-07 15:32:18 -06:00
margin-top: 0.2rem;
2017-07-25 14:08:04 -06:00
font-weight: 400;
2017-06-29 12:54:02 -06:00
}
2017-07-07 10:50:52 -06:00
// background: linear-gradient(to top, black 0%, transparent 30%);
2017-07-25 14:08:04 -06:00
.status-ticker-message {
display: inline;
2017-07-25 16:25:25 -06:00
letter-spacing: 0.1rem;
2017-07-25 14:08:04 -06:00
span {
-webkit-animation: flash 1.5s ease-in;
animation: flash 1.5s ease-in;
}
2017-11-07 18:16:38 -07:00
}
.logs-page-link {
2018-05-14 21:36:38 -06:00
label {
cursor: pointer;
}
2017-11-07 18:16:38 -07:00
text-align: center;
&:hover {
background: rgba(255, 255, 255, 0.2);
}
}