Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2709)

Unified Diff: remoting/webapp/main.css

Issue 107703005: Minor cleanups in CSS. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/webapp/main.css
diff --git a/remoting/webapp/main.css b/remoting/webapp/main.css
index 851208f2b20f307dded3272dcd26ff6d47b3f489..b5b75b6d9e7e40da3311ebda451b2b888a2438c7 100644
--- a/remoting/webapp/main.css
+++ b/remoting/webapp/main.css
@@ -278,7 +278,7 @@ section h2 {
}
header {
- display: -webkit-flex;
+ display: flex;
width: 100%;
}
@@ -310,7 +310,7 @@ section {
}
.box-spacer {
- -webkit-flex: 1;
+ flex: 1;
}
.centered {
@@ -318,9 +318,9 @@ section {
}
.button-row {
- display: -webkit-flex;
- -webkit-flex-direction: row;
- -webkit-justify-content: flex-end;
+ display: flex;
+ flex-direction: row;
+ justify-content: flex-end;
margin-top: 20px;
}
@@ -337,7 +337,7 @@ section {
}
.box {
- display: -webkit-flex;
+ display: flex;
}
.host-list-empty-instructions {
@@ -361,7 +361,7 @@ section {
}
.section-row {
- display: -webkit-flex;
+ display: flex;
-webkit-align-items: center;
padding: 10px 0;
border-top: 1px solid #EBEBEB;
@@ -445,8 +445,8 @@ section {
#butter-bar > p {
background-color: #f9edbe;
border: 1px solid #f0c36d;
- -webkit-border-radius: 2px;
- -webkit-box-shadow: 0px 2px 4px rgba(0,0,0,0.2);
+ border-radius: 2px;
+ box-shadow: 0px 2px 4px rgba(0,0,0,0.2);
color: #222;
font-size: 12px;
padding: 4px 16px;
@@ -617,7 +617,7 @@ button {
top: 200px;
left: 0;
width: 100%;
- display: -webkit-flex;
+ display: flex;
}
.dialog-screen {
@@ -679,7 +679,7 @@ html.apps-v2.scrollable {
.session-client-inactive {
-webkit-filter: grayscale(70%);
- -webkit-transition: -webkit-filter 0.218s;
+ transition: -webkit-filter 0.218s;
}
#set-pin-table td {
@@ -711,11 +711,11 @@ html.apps-v2.scrollable {
}
.horizontally-centered {
- display: -webkit-flex;
+ display: flex;
}
.vertically-centered {
- display: -webkit-flex;
+ display: flex;
flex-direction: column;
height: 100%
}
@@ -725,7 +725,7 @@ html.apps-v2.scrollable {
.vertically-centered::before,
.vertically-centered::after {
content: "";
- -webkit-flex: 1;
+ flex: 1;
}
/* Bump-scrolling is currently implemented by adjusting the margins, which is
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698