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: Rebased to 536c9b810423 Created March 21, 2016, 2:04 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
« options.js ('K') | « 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
@@ -365,7 +365,8 @@
border-radius: 3px;
}
-.table.list li .display
+.table.list li .display,
+.fill
{
flex: 1;
line-height: 16px;
@@ -883,15 +884,21 @@
Tooltips
*/
+.read-more
+{
+ color: #3A7BA6;
+ font-size: 12px;
+}
+
.tooltip
{
- 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;
}
@@ -938,8 +945,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;
@@ -1056,8 +1063,8 @@
background-position: -71px -34px;
}
-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;
« options.js ('K') | « options.js ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld