1
0
mirror of https://github.com/Unleash/unleash.git synced 2025-09-19 17:52:45 +02:00
unleash.unleash/frontend/src/component/common/common.scss
2017-03-01 21:54:31 +01:00

84 lines
1.2 KiB
SCSS

.truncate {
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
.fullwidth {
width: 100%;
}
.horisontalScroll {
overflow-x: scroll;
-webkit-overflow-scrolling: touch;
}
.horisontalScroll::-webkit-scrollbar {
display: none;
}
.listLink {
color: #212121;
text-decoration: none;
font-weight: normal;
display: block;
}
.listLink:hover {
color: #000;
}
@media (max-width: 920px) {
.hideLt920 {
display: none;
}
}
.dataTableHeader {
display: flex;
justify-content: space-between;
align-items: center;
height: 64px;
.title {
padding: 20px 16px 20px 24px;
}
.titleText {
margin: 0;
font-size: 20px;
line-height: 24px
}
.actions {
flex-shrink: 0;
padding: 20px 14px 20px 16px;
}
}
.switchWithLabel {
display: flex;
.label {
padding-right: 16px;
line-height: 24px;
}
.switch {
display: inline-block;
padding-right: 8px;
}
}
.emptyState {
display: flex;
align-items: center;
flex-direction: column;
justify-content: center;
min-height: 200px;
}
.dropdownButton {
text-transform: none;
font-weight: normal;
}