mirror of
https://github.com/getredash/redash.git
synced 2026-03-23 13:00:10 -04:00
94 lines
1.4 KiB
Plaintext
94 lines
1.4 KiB
Plaintext
@import (reference, less) "~@/assets/less/ant";
|
|
|
|
// Empty states
|
|
.empty-state {
|
|
width: 100%;
|
|
margin: 0 auto 10px;
|
|
display: flex;
|
|
flex-direction: row;
|
|
justify-content: space-between;
|
|
font-size: 14px;
|
|
line-height: 21px;
|
|
|
|
.empty-state__summary,
|
|
.empty-state__steps {
|
|
width: 48%;
|
|
padding: 35px;
|
|
padding-bottom: 25px;
|
|
}
|
|
|
|
.empty-state__steps {
|
|
padding-left: 0;
|
|
}
|
|
|
|
.empty-state__summary {
|
|
align-self: flex-start;
|
|
text-align: center;
|
|
background: rgba(102, 136, 153, 0.025);
|
|
|
|
p {
|
|
margin-bottom: 0;
|
|
}
|
|
}
|
|
|
|
ol {
|
|
margin-bottom: 15px;
|
|
padding: 17px;
|
|
}
|
|
|
|
li.done {
|
|
text-decoration: line-through;
|
|
}
|
|
|
|
h2 {
|
|
margin: 0 0 15px;
|
|
}
|
|
|
|
h4 {
|
|
margin-top: 0;
|
|
margin-bottom: 15px;
|
|
}
|
|
|
|
a:hover {
|
|
cursor: pointer;
|
|
}
|
|
|
|
@media (max-width: 767px) {
|
|
flex-direction: column;
|
|
|
|
.empty-state__summary {
|
|
margin-bottom: 25px;
|
|
padding-bottom: 15px;
|
|
}
|
|
|
|
.empty-state__summary,
|
|
.empty-state__steps {
|
|
width: 100%;
|
|
}
|
|
|
|
.empty-state__steps {
|
|
padding-left: 35px;
|
|
padding-top: 15px;
|
|
}
|
|
}
|
|
}
|
|
|
|
// close button
|
|
.empty-state-wrapper {
|
|
position: relative;
|
|
|
|
.close-button {
|
|
position: absolute;
|
|
top: 15px;
|
|
right: 25px;
|
|
font-size: 15px;
|
|
color: @text-color-secondary;
|
|
cursor: pointer;
|
|
transition: color @animation-duration-slow;
|
|
|
|
&:hover {
|
|
color: @text-color;
|
|
}
|
|
}
|
|
}
|