[Libreoffice-commits] online.git: loleaflet/css

Tamás Zolnai (via logerrit) logerrit at kemper.freedesktop.org
Fri Feb 21 10:27:52 UTC 2020


 loleaflet/css/editor.css             |    2 +-
 loleaflet/css/leaflet.css            |    2 +-
 loleaflet/css/loleaflet.css          |    6 +++---
 loleaflet/css/menubar-mobile.css     |    2 +-
 loleaflet/css/menubar.css            |    2 +-
 loleaflet/css/mobilewizard.css       |    2 +-
 loleaflet/css/scrollBar.css          |    2 +-
 loleaflet/css/selectionMarkers.css   |    2 +-
 loleaflet/css/spreadsheet-mobile.css |    2 +-
 loleaflet/css/toolbar-mobile.css     |    2 +-
 loleaflet/css/vex.css                |    2 +-
 11 files changed, 13 insertions(+), 13 deletions(-)

New commits:
commit 542b4b69d65db37dd1a9945e205047d5ad12ec14
Author:     Tamás Zolnai <tamas.zolnai at collabora.com>
AuthorDate: Fri Feb 21 10:09:50 2020 +0100
Commit:     Tamás Zolnai <tamas.zolnai at collabora.com>
CommitDate: Fri Feb 21 11:27:32 2020 +0100

    css-media: Remove 'screen' condition with invalid syntax.
    
    It should be 'screen and ...', but since the other rules don't have
    this additional screen condition, I just remove it.
    
    Change-Id: Idabf28fbee303e19f1a5f5c75f3eb5e7387ac3fa
    Reviewed-on: https://gerrit.libreoffice.org/c/online/+/89170
    Tested-by: Tamás Zolnai <tamas.zolnai at collabora.com>
    Reviewed-by: Tamás Zolnai <tamas.zolnai at collabora.com>

diff --git a/loleaflet/css/editor.css b/loleaflet/css/editor.css
index 253ae5fd2..6ef767bea 100644
--- a/loleaflet/css/editor.css
+++ b/loleaflet/css/editor.css
@@ -19,7 +19,7 @@
 	text-align: center;
 	padding: 3px 5px;
 }
- at media (max-width: 767px), (max-device-height: 767px), screen (max-width: 900px) and (any-pointer: coarse) and (hover: none), (max-height: 900px) and (any-pointer: coarse) and (hover: none) {
+ at media (max-width: 767px), (max-device-height: 767px), (max-width: 900px) and (any-pointer: coarse) and (hover: none), (max-height: 900px) and (any-pointer: coarse) and (hover: none) {
 	#editor-btn{
 		max-width: 160px;
 	}
diff --git a/loleaflet/css/leaflet.css b/loleaflet/css/leaflet.css
index bf1bae24b..abd76143e 100644
--- a/loleaflet/css/leaflet.css
+++ b/loleaflet/css/leaflet.css
@@ -839,7 +839,7 @@ input.clipboard {
 		display: none;
 	}
 }
- at media (max-width: 767px),(max-device-height: 767px), screen (max-width: 900px) and (any-pointer: coarse) and (hover: none), (max-height: 900px) and (any-pointer: coarse)  and (hover: none){
+ at media (max-width: 767px),(max-device-height: 767px), (max-width: 900px) and (any-pointer: coarse) and (hover: none), (max-height: 900px) and (any-pointer: coarse)  and (hover: none){
 	.loleaflet-ruler {
 		height: 0px;
 		display: none;
diff --git a/loleaflet/css/loleaflet.css b/loleaflet/css/loleaflet.css
index eba91a207..573e8c419 100644
--- a/loleaflet/css/loleaflet.css
+++ b/loleaflet/css/loleaflet.css
@@ -219,7 +219,7 @@ body {
 	.w2ui-tag .w2ui-tag-top{display:none !important;}
 }
 
- at media (max-width: 767px), (max-device-height: 767px), screen (max-width: 900px) and (any-pointer: coarse) and (hover: none), (max-height: 900px) and (any-pointer: coarse) and (hover: none){
+ at media (max-width: 767px), (max-device-height: 767px), (max-width: 900px) and (any-pointer: coarse) and (hover: none), (max-height: 900px) and (any-pointer: coarse) and (hover: none){
 	/* Show slidesorter beyond 768px only */
 	#presentation-controls-wrapper {
 		top: initial;
@@ -294,7 +294,7 @@ body {
 		display: block !important;
 	}
 }
- at media (max-width: 767px) and (orientation: portrait),(max-device-height: 767px) and (orientation: portrait), screen (max-width: 900px) and (orientation: portrait) and (any-pointer: coarse) and (hover: none), (max-height: 900px) and (orientation: portrait)  and (any-pointer: coarse)  and (hover: none){
+ at media (max-width: 767px) and (orientation: portrait),(max-device-height: 767px) and (orientation: portrait), (max-width: 900px) and (orientation: portrait) and (any-pointer: coarse) and (hover: none), (max-height: 900px) and (orientation: portrait)  and (any-pointer: coarse)  and (hover: none){
 	#presentation-controls-wrapper {
 		top: initial;
 		left: initial;
@@ -325,7 +325,7 @@ body {
 		bottom: 33px;
 	}
 }
- at media (max-width: 767px) and (orientation: landscape),(max-device-height: 767px) and (orientation: landscape), screen (max-width: 900px) and (orientation: landscape) and (any-pointer: coarse) and (hover: none), (max-height: 900px) and (orientation: landscape)  and (any-pointer: coarse)  and (hover: none){
+ at media (max-width: 767px) and (orientation: landscape),(max-device-height: 767px) and (orientation: landscape), (max-width: 900px) and (orientation: landscape) and (any-pointer: coarse) and (hover: none), (max-height: 900px) and (orientation: landscape)  and (any-pointer: coarse)  and (hover: none){
 	#document-container.parts-preview-document {
 		left: 66px !important;
 		bottom: 33px;
diff --git a/loleaflet/css/menubar-mobile.css b/loleaflet/css/menubar-mobile.css
index 253df2944..860d5fb72 100644
--- a/loleaflet/css/menubar-mobile.css
+++ b/loleaflet/css/menubar-mobile.css
@@ -1,4 +1,4 @@
- at media (max-width: 767px), (max-device-height: 767px), screen (max-width: 900px) and (any-pointer: coarse) and (hover: none), (max-height: 900px) and (any-pointer: coarse) and (hover: none){
+ at media (max-width: 767px), (max-device-height: 767px), (max-width: 900px) and (any-pointer: coarse) and (hover: none), (max-height: 900px) and (any-pointer: coarse) and (hover: none){
 	.logo {
 		background-size: 100px;
 		max-width: 24px;
diff --git a/loleaflet/css/menubar.css b/loleaflet/css/menubar.css
index 4ad11edf2..2d47b8f55 100644
--- a/loleaflet/css/menubar.css
+++ b/loleaflet/css/menubar.css
@@ -256,7 +256,7 @@
 	background-position: bottom;
 }
 
- at media (max-width: 767px),(max-device-height: 767px), screen (max-width: 900px) and (any-pointer: coarse) and (hover: none), (max-height: 900px) and (any-pointer: coarse) and (hover: none){
+ at media (max-width: 767px),(max-device-height: 767px), (max-width: 900px) and (any-pointer: coarse) and (hover: none), (max-height: 900px) and (any-pointer: coarse) and (hover: none){
     .document-logo {
         width: 35px;
         height: 38px;
diff --git a/loleaflet/css/mobilewizard.css b/loleaflet/css/mobilewizard.css
index dda78864a..7d57a85e8 100644
--- a/loleaflet/css/mobilewizard.css
+++ b/loleaflet/css/mobilewizard.css
@@ -1,4 +1,4 @@
- at media (max-width: 767px), (max-device-height: 767px), screen (max-width: 900px) and (any-pointer: coarse) and (hover: none), (max-height: 900px) and (any-pointer: coarse) and (hover: none){
+ at media (max-width: 767px), (max-device-height: 767px), (max-width: 900px) and (any-pointer: coarse) and (hover: none), (max-height: 900px) and (any-pointer: coarse) and (hover: none){
 	.menuwizard .menu-entry-icon{
 		padding-left: 4%;
 	}
diff --git a/loleaflet/css/scrollBar.css b/loleaflet/css/scrollBar.css
index e5d9352ce..629399441 100644
--- a/loleaflet/css/scrollBar.css
+++ b/loleaflet/css/scrollBar.css
@@ -11,7 +11,7 @@
 	width: 100%;
 	overflow: auto;
 }
- at media (max-width: 767px), (max-device-height: 767px), screen (max-width: 900px) and (any-pointer: coarse) and (hover: none), (max-height: 900px) and (any-pointer: coarse) and (hover: none){
+ at media (max-width: 767px), (max-device-height: 767px), (max-width: 900px) and (any-pointer: coarse) and (hover: none), (max-height: 900px) and (any-pointer: coarse) and (hover: none){
 	.mCSB_scrollTools_vertical{
 		width: 38px !important;
 	}
diff --git a/loleaflet/css/selectionMarkers.css b/loleaflet/css/selectionMarkers.css
index b3cab7856..eb509a750 100644
--- a/loleaflet/css/selectionMarkers.css
+++ b/loleaflet/css/selectionMarkers.css
@@ -26,7 +26,7 @@
 #tb_formulabar_item_formula .inputbar_selection_handles{
 	/*display: none;*/
 }
- at media (max-width: 767px), (max-device-height: 767px) and (pointer: coarse), screen (max-width: 900px) and (any-pointer: coarse) and (hover: none), (max-height: 900px) and (any-pointer: coarse) and (hover: none){
+ at media (max-width: 767px), (max-device-height: 767px) and (pointer: coarse), (max-width: 900px) and (any-pointer: coarse) and (hover: none), (max-height: 900px) and (any-pointer: coarse) and (hover: none){
 	#tb_formulabar_item_formula, #tb_formulabar_item_address {
 		height: 54px !important;
 	}
diff --git a/loleaflet/css/spreadsheet-mobile.css b/loleaflet/css/spreadsheet-mobile.css
index edd1e1a23..48b4dc4fa 100644
--- a/loleaflet/css/spreadsheet-mobile.css
+++ b/loleaflet/css/spreadsheet-mobile.css
@@ -1,4 +1,4 @@
- at media max-width: 767px), (max-device-height: 767px), screen (max-width: 900px) and (any-pointer: coarse) and (hover: none), (max-height: 900px) and (any-pointer: coarse)  and (hover: none){
+ at media max-width: 767px), (max-device-height: 767px), (max-width: 900px) and (any-pointer: coarse) and (hover: none), (max-height: 900px) and (any-pointer: coarse)  and (hover: none){
 	@-moz-document url-prefix() {
 		#spreadsheet-row-column-frame.readonly {
 			top: 36px !important;
diff --git a/loleaflet/css/toolbar-mobile.css b/loleaflet/css/toolbar-mobile.css
index b7410abc4..7d4bbbd39 100644
--- a/loleaflet/css/toolbar-mobile.css
+++ b/loleaflet/css/toolbar-mobile.css
@@ -10,7 +10,7 @@
 		top:-1px;
 	}
 }
- at media (max-width: 767px), (max-device-height: 767px), screen (max-width: 900px) and (any-pointer: coarse) and (hover: none), (max-height: 900px) and (any-pointer: coarse)  and (hover: none){
+ at media (max-width: 767px), (max-device-height: 767px), (max-width: 900px) and (any-pointer: coarse) and (hover: none), (max-height: 900px) and (any-pointer: coarse)  and (hover: none){
 	.insertshape-grid {
 		box-sizing: content-box;
 		position: absolute;
diff --git a/loleaflet/css/vex.css b/loleaflet/css/vex.css
index 65e61ca67..c483c90a0 100644
--- a/loleaflet/css/vex.css
+++ b/loleaflet/css/vex.css
@@ -64,7 +64,7 @@
 }
 
 /*mobile*/
- at media (max-width: 767px), (max-device-height: 767px), screen (max-width: 900px) and (any-pointer: coarse) and (hover: none), (max-height: 900px) and (any-pointer: coarse)  and (hover: none){
+ at media (max-width: 767px), (max-device-height: 767px), (max-width: 900px) and (any-pointer: coarse) and (hover: none), (max-height: 900px) and (any-pointer: coarse)  and (hover: none){
 	.vex-open .loleaflet-user-idle {
 		background: rgba(0, 0, 0, 0)!important;
 		font-size: xx-large!important;


More information about the Libreoffice-commits mailing list