 Issue 29334038:
  Issue 2802/2358 - Dynamically generate tooltips in options page  (Closed)
    
  
    Issue 29334038:
  Issue 2802/2358 - Dynamically generate tooltips in options page  (Closed) 
  | 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; |