| Index: skin/options.css |
| =================================================================== |
| --- a/skin/options.css |
| +++ b/skin/options.css |
| @@ -334,14 +334,19 @@ |
| .table li |
| { |
| display: flex; |
| - padding: 14px 0px; |
| + padding: 12px 0px; |
| -webkit-padding-start: 16px; |
| -moz-padding-start: 16px; |
| + border-radius: 3px; |
| } |
| .table.list li .display |
| { |
| flex: 1; |
| + line-height: 16px; |
| + overflow: hidden; |
| + text-overflow: ellipsis; |
| + white-space: nowrap; |
|
saroyanm
2016/01/25 16:32:37
What about setup max-width as well, because curren
Thomas Greiner
2016/01/25 18:41:24
You're right. That behavior must've been introduce
|
| } |
| .table.list li:nth-child(odd), |
| @@ -379,27 +384,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; |
| -} |
| - |
| .table input[type="checkbox"] |
| { |
| margin-top: 0px; |
| @@ -941,7 +925,7 @@ |
| { |
| display: none; |
| background-color: white; |
| - position: absolute; |
| + position: fixed; |
| opacity: 0.7; |
| top: 0px; |
| right: 0px; |
| @@ -961,8 +945,8 @@ |
| border: 2px solid #4D9D4B; |
| border-radius: 3px; |
| margin: auto; |
| - position:absolute; |
| - top:100px; |
| + position: fixed; |
|
saroyanm
2016/01/25 16:32:37
Note: I think whenever we fixing a block we can al
Thomas Greiner
2016/01/25 18:41:24
Done.
|
| + top: 100px; |
| left: 0px; |
| right: 0px; |
| z-index: 2; |
| @@ -973,7 +957,7 @@ |
| { |
| background-color: #4D9D4B; |
| display: flex; |
| - height: 25px; |
| + min-height: 25px; |
| padding: 10px; |
| } |
| @@ -1028,9 +1012,8 @@ |
| width: 100%; |
| } |
| -#dialog #other-language .table |
| +#dialog #dialog-content-language .table |
| { |
| - height: 200px; |
| overflow: auto; |
| } |
| @@ -1085,6 +1068,18 @@ |
| display: none; |
| } |
| +#dialog-content-language .dialog-content-block |
| +{ |
| + display: flex; |
|
saroyanm
2016/01/25 16:32:37
For some reason, RTL have a bug. It feels like cau
saroyanm
2016/01/25 17:16:17
Browser update, fixed the issue.
|
| + flex-direction: column; |
| + height: 120px; |
| +} |
| + |
| +#dialog-content-language #other-language |
| +{ |
| + height: 200px; |
| +} |
| + |
| #other-language .button-add |
| { |
| background-color: transparent; |