mirror of
https://github.com/apache/superset.git
synced 2026-04-09 19:35:21 +00:00
62 lines
955 B
CSS
62 lines
955 B
CSS
.scrollbar-container {
|
|
position: relative;
|
|
overflow: hidden;
|
|
width: 100%;
|
|
height: 100%;
|
|
}
|
|
|
|
.scrollbar-content {
|
|
position: absolute;
|
|
top: 0px;
|
|
left: 0px;
|
|
right: 0px;
|
|
bottom: 0px;
|
|
overflow-y: auto;
|
|
margin-right: 0px;
|
|
}
|
|
|
|
.fave-unfave-icon, .edit-desc-icon {
|
|
padding: 0 0 0 .5em;
|
|
font-size: 14px;
|
|
}
|
|
|
|
.checkbox {
|
|
float: left;
|
|
margin-top: 0px;
|
|
margin-right: 3px;
|
|
}
|
|
|
|
.control-panel-section {
|
|
margin-bottom: 0px;
|
|
box-shadow: none;
|
|
}
|
|
|
|
.background-transparent {
|
|
background-color: transparent !important;
|
|
}
|
|
|
|
.viztype-label {
|
|
text-align: center;
|
|
}
|
|
|
|
.viztype-selector-container {
|
|
cursor: pointer;
|
|
margin-top: 10px;
|
|
margin-bottom: 10px;
|
|
padding: 5px;
|
|
border: 1px solid #aaa;
|
|
}
|
|
|
|
.viztype-selector-container:hover {
|
|
border: 1px solid #000;
|
|
}
|
|
|
|
.viztype-selector-container.selected {
|
|
cursor: not-allowed;
|
|
opacity: 0.5;
|
|
}
|
|
.viztype-selector-container.selected {
|
|
cursor: not-allowed;
|
|
border: 1px solid #aaa;
|
|
}
|