Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code

Unified Diff: skin/options.css

Issue 29334038: Issue 2802/2358 - Dynamically generate tooltips in options page (Closed)
Patch Set: Created Jan. 19, 2016, 6:24 p.m.
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « options.js ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: skin/options.css
===================================================================
--- a/skin/options.css
+++ b/skin/options.css
@@ -339,7 +339,8 @@
-moz-padding-start: 16px;
}
-.table.list li .display
+.table.list li .display,
+.fill
{
flex: 1;
}
@@ -379,27 +380,6 @@
-moz-padding-start: 38px;
}
-.table::-webkit-scrollbar,
-#custom-wrapper::-webkit-scrollbar
-{
- -webkit-padding-end: 10px;
- width: 5px;
-}
-
-.table::-webkit-scrollbar-thumb,
-#custom-wrapper::-webkit-scrollbar-thumb
-{
- background-color: #CDCDCD;
- border-radius: 5px;
- padding: 0px 40px;
-}
-
-.table::-webkit-scrollbar-thumb:hover,
-#custom-wrapper::-webkit-scrollbar-thumb:hover
-{
- background-color: #A1A1A1;
-}
Thomas Greiner 2016/01/19 19:28:44 Please ignore this change. It's already covered by
-
.table input[type="checkbox"]
{
margin-top: 0px;
@@ -777,15 +757,21 @@
Tooltips
*/
+.read-more
+{
+ color: #3A7BA6;
+ font-size: 12px;
+}
+
.tooltip, #block-element-explanation a
{
- border-bottom: dashed 1px;
- color: #3A7BA6;
+ display: inline-block;
+ border-bottom: #3A7BA6 dashed 1px;
cursor: default;
- font-size: 12px;
height: 15px;
line-height: 19px;
margin: 0px 4px;
+ padding-bottom: 2px;
position: relative;
text-decoration: none;
}
@@ -827,8 +813,8 @@
z-index: 1;
}
-html[dir="ltr"] div[role="tooltip"].flip-vertical,
-html[dir="rtl"] div[role="tooltip"]:not(.flip-vertical)
+html[dir="ltr"] div[role="tooltip"].flip-horizontal,
+html[dir="rtl"] div[role="tooltip"]:not(.flip-horizontal)
{
left: inherit;
right: -20px;
@@ -855,8 +841,8 @@
left: 30px;
}
-html[dir="ltr"] div[role="tooltip"].flip-vertical::before,
-html[dir="rtl"] div[role="tooltip"]:not(.flip-vertical)::before
+html[dir="ltr"] div[role="tooltip"].flip-horizontal::before,
+html[dir="rtl"] div[role="tooltip"]:not(.flip-horizontal)::before
{
left: inherit;
right: 30px;
« no previous file with comments | « options.js ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld