[DE mobile] Fix Bug 55049
This commit is contained in:
parent
d150d4af7f
commit
383c95fc22
|
@ -52,6 +52,9 @@
|
||||||
--f7-subnavbar-border-color: @background-menu-divider;
|
--f7-subnavbar-border-color: @background-menu-divider;
|
||||||
--f7-list-border-color: @background-menu-divider;
|
--f7-list-border-color: @background-menu-divider;
|
||||||
|
|
||||||
|
--f7-picker-item-text-color: rgba(var(--text-normal), 0.45);
|
||||||
|
--f7-picker-item-selected-text-color: @text-normal;
|
||||||
|
|
||||||
// Main Toolbar
|
// Main Toolbar
|
||||||
#editor-navbar.navbar .right a + a,
|
#editor-navbar.navbar .right a + a,
|
||||||
#editor-navbar.navbar .left a + a {
|
#editor-navbar.navbar .left a + a {
|
||||||
|
|
|
@ -43,6 +43,9 @@
|
||||||
--f7-dialog-title-text-color: @text-normal;
|
--f7-dialog-title-text-color: @text-normal;
|
||||||
--f7-dialog-button-text-color: @brandColor;
|
--f7-dialog-button-text-color: @brandColor;
|
||||||
|
|
||||||
|
--f7-picker-item-text-color: rgba(var(--text-normal), 0.45);
|
||||||
|
--f7-picker-item-selected-text-color: @text-normal;
|
||||||
|
|
||||||
.button {
|
.button {
|
||||||
--f7-touch-ripple-color: transparent;
|
--f7-touch-ripple-color: transparent;
|
||||||
}
|
}
|
||||||
|
|
|
@ -37,7 +37,7 @@ class AddTableController extends Component {
|
||||||
text: '',
|
text: '',
|
||||||
content:
|
content:
|
||||||
'<div class="content-block">' +
|
'<div class="content-block">' +
|
||||||
'<div class="row">' +
|
'<div class="row row-picker">' +
|
||||||
'<div class="col-50">' + _t.textColumns + '</div>' +
|
'<div class="col-50">' + _t.textColumns + '</div>' +
|
||||||
'<div class="col-50">' + _t.textRows + '</div>' +
|
'<div class="col-50">' + _t.textRows + '</div>' +
|
||||||
'</div>' +
|
'</div>' +
|
||||||
|
|
|
@ -4,6 +4,7 @@
|
||||||
@import '../../../../common/mobile/resources/less/_mixins.less';
|
@import '../../../../common/mobile/resources/less/_mixins.less';
|
||||||
@import '../../../../common/mobile/resources/less/colors-table.less';
|
@import '../../../../common/mobile/resources/less/colors-table.less';
|
||||||
@import '../../../../common/mobile/resources/less/colors-table-dark.less';
|
@import '../../../../common/mobile/resources/less/colors-table-dark.less';
|
||||||
|
|
||||||
@brandColor: var(--brand-word);
|
@brandColor: var(--brand-word);
|
||||||
|
|
||||||
.device-ios {
|
.device-ios {
|
||||||
|
@ -158,4 +159,12 @@
|
||||||
height: 50px;
|
height: 50px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Picker
|
||||||
|
|
||||||
|
.row-picker {
|
||||||
|
.col-50 {
|
||||||
|
color: @text-secondary;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue