maputnik/src/styles/_zoomproperty.scss

136 lines
2.2 KiB
SCSS
Raw Normal View History

2017-01-11 13:34:38 +01:00
// ZOOM FUNC
.maputnik-make-zoom-function {
background-color: transparent;
display: inline-block;
2017-01-12 11:23:06 +01:00
padding-bottom: 0;
padding-top: 0;
2017-01-11 13:34:38 +01:00
vertical-align: middle;
2017-01-12 11:23:06 +01:00
2017-01-11 13:34:38 +01:00
@extend .maputnik-icon-button;
}
// ZOOM PROPERTY
.maputnik-zoom-spec-property {
@extend .clearfix;
}
.maputnik-zoom-spec-property-label {
display: inline-block;
width: 41%;
}
.maputnik-zoom-spec-property-stop-item {
margin-bottom: $margin-2;
margin-top: $margin-2;
}
.maputnik-zoom-spec-property-stop-edit {
display: inline-block;
vertical-align: top;
width: 16%;
margin-right: 3%;
2017-01-12 11:23:06 +01:00
2017-01-11 13:34:38 +01:00
> * {
width: 100%;
}
}
.maputnik-zoom-spec-property-stop-value {
display: inline-block;
width: 81%;
2017-01-12 11:23:06 +01:00
2017-01-11 13:34:38 +01:00
> * {
width: 100%;
}
}
.maputnik-delete-stop {
@extend .maputnik-icon-button;
2017-01-12 11:23:06 +01:00
2017-01-11 13:34:38 +01:00
vertical-align: top;
.maputnik-doc-wrapper {
width: auto;
}
2017-01-12 11:23:06 +01:00
2017-01-11 13:34:38 +01:00
.maputnik-doc-target {
cursor: pointer;
}
}
.maputnik-add-stop {
display: inline-block;
float: right;
margin-right: $margin-3;
}
// DATA FUNC
.maputnik-make-data-function {
background-color: transparent;
display: inline-block;
padding-bottom: 0;
padding-top: 0;
vertical-align: middle;
@extend .maputnik-icon-button;
}
.maputnik-data-spec-property {
.maputnik-input-block-label {
width: 30%;
}
.maputnik-input-block:not(:first-child) .maputnik-input-block-label {
visibility: hidden;
}
.maputnik-input-block-content {
width: 70%;
}
2017-10-02 02:17:43 +02:00
.maputnik-data-spec-property-group {
margin-bottom: 3%;
.maputnik-doc-wrapper {
width: 25%;
color: $color-lowgray;
}
2017-10-02 02:17:43 +02:00
.maputnik-doc-wrapper:hover {
color: inherit;
}
2017-10-02 02:17:43 +02:00
.maputnik-data-spec-property-input {
width: 75%;
display: inline-block;
.maputnik-string {
margin-bottom: 3%;
}
}
}
}
.maputnik-data-spec-block {
overflow: auto;
.maputnik-data-spec-property-stop-edit,
.maputnik-data-spec-property-stop-data {
display: inline-block;
margin-bottom: 3%;
}
.maputnik-data-spec-property-stop-edit {
width: 18%;
margin-right: 3%;
}
2017-10-02 02:17:43 +02:00
.maputnik-data-spec-property-stop-data {
2018-04-16 00:08:54 +02:00
width: 100%;
}
2018-04-16 14:44:00 +02:00
2018-04-16 00:08:54 +02:00
.maputnik-data-spec-property-stop-edit + .maputnik-data-spec-property-stop-data {
width: 78%;
}
2017-10-02 02:17:43 +02:00
}