mirror of
https://github.com/grafana/grafana.git
synced 2025-02-20 11:48:34 -06:00
38 lines
579 B
SCSS
38 lines
579 B
SCSS
.mapping-row {
|
|
display: flex;
|
|
margin-bottom: 10px;
|
|
}
|
|
|
|
.mapping-row-type {
|
|
margin-right: 5px;
|
|
}
|
|
|
|
.mapping-row-input {
|
|
margin-right: 5px;
|
|
}
|
|
|
|
.add-mapping-row {
|
|
display: flex;
|
|
overflow: hidden;
|
|
height: 37px;
|
|
cursor: pointer;
|
|
border-radius: $border-radius;
|
|
width: 200px;
|
|
}
|
|
|
|
.add-mapping-row-icon {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
width: 36px;
|
|
background-color: $green;
|
|
}
|
|
|
|
.add-mapping-row-label {
|
|
align-items: center;
|
|
display: flex;
|
|
padding: 5px 8px;
|
|
background-color: $input-label-bg;
|
|
width: calc(100% - 36px);
|
|
}
|