Browse Source

Merge pull request #7048 from nextcloud/flexbox-css

Vendor prefix for flexbox not needed anymore
Jan-Christoph Borchardt 6 years ago
parent
commit
4ee2d2a1c2
3 changed files with 0 additions and 25 deletions
  1. 0 4
      apps/files/css/mobile.scss
  2. 0 20
      core/css/mobile.scss
  3. 0 1
      core/css/systemtags.scss

+ 0 - 4
apps/files/css/mobile.scss

@@ -60,10 +60,6 @@ table td.filename .nametext .innernametext {
 
 /* proper notification area for multi line messages */
 #notification-container {
-	display: -webkit-box;
-	display: -moz-box;
-	display: -ms-flexbox;
-	display: -webkit-flex;
 	display: flex;
 }
 

+ 0 - 20
core/css/mobile.scss

@@ -5,26 +5,6 @@
 }
 
 #body-login .wrapper {
-	display: -webkit-box;
-	-webkit-box-orient: horizontal;
-	-webkit-box-pack: center;
-	-webkit-box-align: center;
-
-	display: -webkit-flex;
-	-webkit-flex-direction: row;
-	-webkit-align-self: center;
-	-webkit-align-items: center;
-
-	display: -moz-box;
-	-moz-box-orient: horizontal;
-	-moz-box-pack: center;
-	-moz-box-align: center;
-
-	display: -ms-flexbox;
-	-ms-flex-direction: row;
-	-ms-flex-pack: center;
-	-ms-flex-align: center;
-
 	display: flex;
 	flex-direction: row;
 	align-self: center;

+ 0 - 1
core/css/systemtags.scss

@@ -48,7 +48,6 @@
 	}
 	.label {
 		width: 85%;
-		display: -moz-inline-box;
 		display: inline-block;
 		overflow: hidden;
 		text-overflow: ellipsis;