diff --git a/apps/spreadsheeteditor/mobile/resources/css/app-ios.css b/apps/spreadsheeteditor/mobile/resources/css/app-ios.css index f6b1beb01..359c8f690 100644 --- a/apps/spreadsheeteditor/mobile/resources/css/app-ios.css +++ b/apps/spreadsheeteditor/mobile/resources/css/app-ios.css @@ -7220,3 +7220,10 @@ html.pixel-ratio-3 .cell-styles.dataview .row li { #user-list ul:before { content: none; } +.filter-root-view .list-center .item-title { + text-align: center; + width: 100%; +} +.filter-root-view #btn-delete-filter { + color: #ff3b30; +} diff --git a/apps/spreadsheeteditor/mobile/resources/css/app-material.css b/apps/spreadsheeteditor/mobile/resources/css/app-material.css index 71ca1aa6b..f593d29b8 100644 --- a/apps/spreadsheeteditor/mobile/resources/css/app-material.css +++ b/apps/spreadsheeteditor/mobile/resources/css/app-material.css @@ -7088,3 +7088,10 @@ html.pixel-ratio-3 .cell-styles.dataview .row li { #user-list ul:before { content: none; } +.filter-root-view .list-center .item-title { + text-align: center; + width: 100%; +} +.filter-root-view #btn-delete-filter { + color: #f44336; +} diff --git a/apps/spreadsheeteditor/mobile/resources/less/app-ios.less b/apps/spreadsheeteditor/mobile/resources/less/app-ios.less index f845e7d08..d807de74f 100644 --- a/apps/spreadsheeteditor/mobile/resources/less/app-ios.less +++ b/apps/spreadsheeteditor/mobile/resources/less/app-ios.less @@ -221,4 +221,15 @@ input, textarea { ul:before { content: none; } +} + +//Filter Options +.filter-root-view { + .list-center .item-title { + text-align: center; + width: 100%; + } + #btn-delete-filter { + color: @red; + } } \ No newline at end of file diff --git a/apps/spreadsheeteditor/mobile/resources/less/app-material.less b/apps/spreadsheeteditor/mobile/resources/less/app-material.less index b168d50e4..971fbc1b3 100644 --- a/apps/spreadsheeteditor/mobile/resources/less/app-material.less +++ b/apps/spreadsheeteditor/mobile/resources/less/app-material.less @@ -207,4 +207,15 @@ input, textarea { ul:before { content: none; } +} + +//Filter Options +.filter-root-view { + .list-center .item-title { + text-align: center; + width: 100%; + } + #btn-delete-filter { + color: @red; + } } \ No newline at end of file