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

Unified Diff: Tools/GardeningServer/styles/notifications.css

Issue 201853004: Make Garden-o-matic at least readable on mobile devices (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Fix combinators Created 6 years, 9 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 | « Tools/GardeningServer/styles/main.css ('k') | Tools/GardeningServer/styles/onebar.css » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Tools/GardeningServer/styles/notifications.css
diff --git a/Tools/GardeningServer/styles/notifications.css b/Tools/GardeningServer/styles/notifications.css
index 25e517494dac9619be4b437e04b9534cb0ebe3d2..c4a7b6c49a7601465f0d650619b7596c955df030 100644
--- a/Tools/GardeningServer/styles/notifications.css
+++ b/Tools/GardeningServer/styles/notifications.css
@@ -24,7 +24,7 @@
*/
/* FIXME: This should really be in actions.css. */
-ul.actions>li {
+ul.actions > li {
display: inline-block;
}
@@ -39,8 +39,9 @@ ol.notifications ul {
padding: 0;
}
-ol.notifications>li {
- display: -webkit-box;
+ol.notifications > li {
+ display: flex;
+ flex-wrap: wrap;
position: relative;
width: 100%;
padding: 10px;
@@ -62,15 +63,15 @@ ol.notifications div.what {
display: -webkit-box;
-webkit-box-orient: vertical;
padding: 0 0 0 10px;
- -webkit-box-flex: 1;
+ flex: 1;
}
- ol.notifications>li div.what ul.effects>li.builder {
+ ol.notifications > li div.what ul.effects > li.builder {
display: inline;
padding-right: 5px;
}
-ol.notifications ul.causes>li, ol.notifications div.problem {
+ol.notifications ul.causes > li, ol.notifications div.problem {
display: -webkit-box;
}
@@ -78,48 +79,48 @@ ol.notifications ul.causes div.description, ol.notifications div.problem ul.effe
-webkit-box-flex: 1;
}
-ol.notifications>li div.problem {
+ol.notifications > li div.problem {
padding-bottom: 10px;
}
- ol.notifications>li div.problem>ul.actions {
+ ol.notifications > li div.problem > ul.actions {
visibility: hidden;
}
- ol.notifications>li:hover div.problem>ul.actions {
+ ol.notifications > li:hover div.problem > ul.actions {
visibility: visible;
}
- ol.notifications>li table.failures {
+ ol.notifications > li table.failures {
opacity: 0.2;
-webkit-transition: opacity 0.5s;
}
- ol.notifications>li:hover table.failures {
+ ol.notifications > li:hover table.failures {
opacity: 1;
}
-ol.notifications>li ul.causes>li>ul.actions {
+ol.notifications > li ul.causes > li > ul.actions {
}
- ol.notifications>li ul.causes>li>div.description {
+ ol.notifications > li ul.causes > li > div.description {
padding: 0 10px 5px 0;
display: -webkit-box;
}
- ol.notifications>li ul.causes>li>div.description>a {
+ ol.notifications > li ul.causes > li > div.description > a {
padding: 5px 10px 5px 10px;
margin: -5px 10px -2px 0;
border-radius: 4px;
display: inline-block;
}
- ol.notifications>li ul.causes>li:hover>div.description>a {
+ ol.notifications > li ul.causes > li:hover > div.description > a {
background-color: #555;
color: White;
}
- ol.notifications>li ul.causes>li:hover>div.description>a::after {
+ ol.notifications > li ul.causes > li:hover > div.description > a::after {
content: '';
width: 0;
height: 0;
@@ -131,7 +132,7 @@ ol.notifications>li ul.causes>li>ul.actions {
border-bottom: 5px solid White;
}
- ol.notifications>li ul.causes>li>div.description>span {
+ ol.notifications > li ul.causes > li > div.description > span {
padding: 0 10px 0 0;
display: block;
cursor: default;
@@ -139,46 +140,46 @@ ol.notifications>li ul.causes>li>ul.actions {
-webkit-box-flex: 1;
}
- ol.notifications>li ul.causes>li>div.description>span>span.author {
+ ol.notifications > li ul.causes > li > div.description > span > span.author {
padding: 0 0 0 5px;
font-style: italic;
}
- ol.notifications>li ul.causes>li>div.description>span>span.reviewer {
+ ol.notifications > li ul.causes > li > div.description > span > span.reviewer {
color: Gray;
}
- ol.notifications>li ul.causes>li>div.description>span>span.bugID::before {
+ ol.notifications > li ul.causes > li > div.description > span > span.bugID::before {
content: '[bug ';
padding-left: 8px;
}
- ol.notifications>li ul.causes>li>div.description>span>span.bugID::after {
+ ol.notifications > li ul.causes > li > div.description > span > span.bugID::after {
content: ']';
}
- ol.notifications>li ul.causes>li>div.description>span>span.bugID>a {
+ ol.notifications > li ul.causes > li > div.description > span > span.bugID > a {
cursor: hand;
pointer-events: auto;
}
- ol.notifications>li ul.causes>li>div.description>span>span.reviewer::before {
+ ol.notifications > li ul.causes > li > div.description > span > span.reviewer::before {
content: ' (';
}
- ol.notifications>li ul.causes>li>div.description>span>span.reviewer::after {
+ ol.notifications > li ul.causes > li > div.description > span > span.reviewer::after {
content: ')';
}
- ol.notifications>li ul.causes>li>ul.actions {
+ ol.notifications > li ul.causes > li > ul.actions {
visibility: hidden;
}
- ol.notifications>li ul.causes>li:hover>ul.actions {
+ ol.notifications > li ul.causes > li:hover > ul.actions {
visibility: visible;
}
- ol.notifications>li ul.causes>li li {
+ ol.notifications > li ul.causes > li li {
padding: 10px 0 0 0;
display: inline;
}
« no previous file with comments | « Tools/GardeningServer/styles/main.css ('k') | Tools/GardeningServer/styles/onebar.css » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698