| OLD | NEW |
| 1 .help-window-outer { | 1 .help-window-outer { |
| 2 position: absolute; | 2 position: absolute !important; |
| 3 top: 0; | 3 top: 0; |
| 4 left: 0; | 4 left: 0; |
| 5 right: 0; | 5 right: 0; |
| 6 bottom: 0; | 6 bottom: 0; |
| 7 z-index: 2000; | 7 z-index: 2000; |
| 8 } | 8 } |
| 9 | 9 |
| 10 .help-window-main { | 10 .help-window-main { |
| 11 max-height: 100%; | 11 max-height: 100%; |
| 12 color: white; | 12 color: white; |
| (...skipping 20 matching lines...) Expand all Loading... |
| 33 margin: 0; | 33 margin: 0; |
| 34 padding-top: 1px; | 34 padding-top: 1px; |
| 35 margin-bottom: -1px; | 35 margin-bottom: -1px; |
| 36 } | 36 } |
| 37 | 37 |
| 38 .help-content { | 38 .help-content { |
| 39 overflow-y: auto; | 39 overflow-y: auto; |
| 40 overflow-x: hidden; | 40 overflow-x: hidden; |
| 41 margin: 8px; | 41 margin: 8px; |
| 42 padding: 0 4px; | 42 padding: 0 4px; |
| 43 flex: auto; |
| 43 } | 44 } |
| 44 | 45 |
| 45 .help-footnote { | 46 .help-footnote { |
| 46 border-top: 1px solid #EEEEEE; | 47 border-top: 1px solid #EEEEEE; |
| 47 margin: 0; | 48 margin: 0; |
| 48 padding: 12px; | 49 padding: 12px; |
| 49 } | 50 } |
| 50 | 51 |
| 51 .help-window-main .help-container-wrapper::-webkit-scrollbar { | 52 .help-window-main .help-container-wrapper::-webkit-scrollbar { |
| 52 width: 11px; | 53 width: 11px; |
| 53 } | 54 } |
| 54 | 55 |
| 55 .help-window-main .help-container-wrapper::-webkit-scrollbar-corner, | 56 .help-window-main .help-container-wrapper::-webkit-scrollbar-corner, |
| 56 .help-window-main .help-container-wrapper::-webkit-resizer { | 57 .help-window-main .help-container-wrapper::-webkit-resizer { |
| 57 display: none; | 58 display: none; |
| 58 } | 59 } |
| 59 | 60 |
| 60 .help-window-main .help-container-wrapper::-webkit-scrollbar-thumb:vertical { | 61 .help-window-main .help-container-wrapper::-webkit-scrollbar-thumb:vertical { |
| 61 background: -webkit-gradient(linear, left top, right top, from(rgb(128, 128,
128)), to(rgb(128, 128, 128)), color-stop(40%, rgb(96, 96, 96))); | 62 background: linear-gradient(to right, rgb(128, 128, 128), rgb(96, 96, 96) 40
%, rgb(128, 128, 128)); |
| 62 border-radius: 5px; | 63 border-radius: 5px; |
| 63 min-height: 20px; | 64 min-height: 20px; |
| 64 } | 65 } |
| 65 | 66 |
| 66 .help-window-main .help-container-wrapper::-webkit-scrollbar-thumb:vertical:hove
r, | 67 .help-window-main .help-container-wrapper::-webkit-scrollbar-thumb:vertical:hove
r, |
| 67 .help-window-main .help-container-wrapper::-webkit-scrollbar-thumb:vertical:acti
ve { | 68 .help-window-main .help-container-wrapper::-webkit-scrollbar-thumb:vertical:acti
ve { |
| 68 background: -webkit-gradient(linear, left top, right top, from(rgb(176, 176,
176)), to(rgb(176, 176, 176)), color-stop(40%, rgb(144, 144, 144))); | 69 background: linear-gradient(to right, rgb(176, 176, 176), rgb(144, 144, 144)
40%, rgb(176, 176, 176)); |
| 69 } | 70 } |
| 70 | 71 |
| 71 .help-window-main .help-container-wrapper::-webkit-scrollbar-track:vertical { | 72 .help-window-main .help-container-wrapper::-webkit-scrollbar-track:vertical { |
| 72 background: -webkit-gradient(linear, left top, right top, from(rgb(10, 10, 1
0)), to(rgb(32, 32, 32)), color-stop(25%, rgb(32, 32, 32))); | 73 background: linear-gradient(to right, rgb(10, 10, 10), rgb(32, 32, 32) 25%,
rgb(32, 32, 32)); |
| 73 border-radius: 5px; | 74 border-radius: 5px; |
| 74 } | 75 } |
| 75 | 76 |
| 76 .help-close-button { | 77 .help-close-button { |
| 77 position: absolute; | 78 position: absolute; |
| 78 top: 8px; | 79 top: 8px; |
| 79 right: 8px; | 80 right: 8px; |
| 80 } | 81 } |
| 81 | 82 |
| 82 body.dock-to-bottom .help-content { | 83 body.dock-to-bottom .help-content { |
| (...skipping 15 matching lines...) Expand all Loading... |
| 98 } | 99 } |
| 99 | 100 |
| 100 body.platform-mac .settings-tab .help-container { | 101 body.platform-mac .settings-tab .help-container { |
| 101 -webkit-column-width: 430px; | 102 -webkit-column-width: 430px; |
| 102 } | 103 } |
| 103 | 104 |
| 104 body.platform-mac .help-container { | 105 body.platform-mac .help-container { |
| 105 -webkit-column-width: 361px; | 106 -webkit-column-width: 361px; |
| 106 } | 107 } |
| 107 | 108 |
| 109 .help-no-columns { |
| 110 -webkit-column-width: initial !important; |
| 111 } |
| 112 |
| 108 .help-block { | 113 .help-block { |
| 109 display: block; | 114 display: block; |
| 110 padding-bottom: 9px; | 115 padding-bottom: 9px; |
| 111 width: 470px; | 116 width: 470px; |
| 112 -webkit-column-break-inside: avoid; | 117 -webkit-column-break-inside: avoid; |
| 113 } | 118 } |
| 114 | 119 |
| 115 body.platform-mac .settings-tab .help-block { | 120 body.platform-mac .settings-tab .help-block { |
| 116 width: 430px; | 121 width: 430px; |
| 117 } | 122 } |
| (...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 185 } | 190 } |
| 186 | 191 |
| 187 .help-window-outer fieldset { | 192 .help-window-outer fieldset { |
| 188 margin: 0; | 193 margin: 0; |
| 189 padding: 0; | 194 padding: 0; |
| 190 border: none; | 195 border: none; |
| 191 } | 196 } |
| 192 | 197 |
| 193 .settings-tab label { | 198 .settings-tab label { |
| 194 padding-right: 4px; | 199 padding-right: 4px; |
| 200 display: flex; |
| 195 } | 201 } |
| 196 | 202 |
| 197 #general-tab-content .help-block fieldset legend { | 203 #general-tab-content .help-block fieldset legend { |
| 198 font-size: 14px; | 204 font-size: 14px; |
| 199 } | 205 } |
| 200 | 206 |
| 201 .help-block p p { | 207 .help-block p p { |
| 202 padding-left: 30px; | 208 padding-left: 30px; |
| 203 } | 209 } |
| 204 | 210 |
| (...skipping 12 matching lines...) Expand all Loading... |
| 217 | 223 |
| 218 .settings-experiments-warning-subsection-message { | 224 .settings-experiments-warning-subsection-message { |
| 219 color: inherit; | 225 color: inherit; |
| 220 } | 226 } |
| 221 | 227 |
| 222 #resolution-override-section { | 228 #resolution-override-section { |
| 223 margin-left: 13px; | 229 margin-left: 13px; |
| 224 } | 230 } |
| 225 | 231 |
| 226 .help-content input[type=checkbox] { | 232 .help-content input[type=checkbox] { |
| 227 height: 13px; | 233 margin-right: 7px; |
| 228 width: 13px; | |
| 229 margin: 0 7px 0 0; | |
| 230 vertical-align: -2px; | |
| 231 } | |
| 232 | |
| 233 body.platform-mac .help-content input[type=checkbox] { | |
| 234 vertical-align: -1px; | |
| 235 } | |
| 236 | |
| 237 .help-content input[type=radio] { | |
| 238 vertical-align: -2px; | |
| 239 } | |
| 240 | |
| 241 body.platform-mac .help-content input[type=radio] { | |
| 242 vertical-align: -1px; | |
| 243 } | 234 } |
| 244 | 235 |
| 245 .help-content select { | 236 .help-content select { |
| 246 background-color: rgb(64, 64, 64); | 237 background-color: rgb(64, 64, 64); |
| 247 color: white; | 238 color: white; |
| 248 border-color: black; | 239 border-color: black; |
| 249 padding: 0 4px; | 240 padding: 0 4px; |
| 250 } | 241 } |
| 251 | 242 |
| 252 .help-content select:disabled { | 243 .help-content select:disabled { |
| (...skipping 99 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 352 color: #444444; | 343 color: #444444; |
| 353 padding: 3px; | 344 padding: 3px; |
| 354 } | 345 } |
| 355 | 346 |
| 356 .settings-tab input.numeric { | 347 .settings-tab input.numeric { |
| 357 text-align: right; | 348 text-align: right; |
| 358 } | 349 } |
| 359 | 350 |
| 360 .settings-tab-container { | 351 .settings-tab-container { |
| 361 flex: auto; | 352 flex: auto; |
| 353 overflow: hidden; |
| 362 } | 354 } |
| 363 | 355 |
| 364 .settings-tab-container header { | 356 .settings-tab-container header { |
| 365 padding: 14px 0 6px; | 357 padding: 14px 0 6px; |
| 366 border-bottom: 1px solid #EEEEEE; | 358 border-bottom: 1px solid #EEEEEE; |
| 367 } | 359 } |
| 368 | 360 |
| 369 #tab-shortcuts { | 361 #tab-shortcuts { |
| 370 margin-top: 25px !important; | 362 margin-top: 25px !important; |
| 371 } | 363 } |
| (...skipping 77 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 449 | 441 |
| 450 #workspace-tab-content .workspace-settings-row .add-button { | 442 #workspace-tab-content .workspace-settings-row .add-button { |
| 451 background-image: url(Images/addIcon.png); | 443 background-image: url(Images/addIcon.png); |
| 452 } | 444 } |
| 453 | 445 |
| 454 #workspace-tab-content .workspace-settings-error { | 446 #workspace-tab-content .workspace-settings-error { |
| 455 color: red; | 447 color: red; |
| 456 } | 448 } |
| 457 | 449 |
| 458 .settings-tab-text-button { | 450 .settings-tab-text-button { |
| 459 background-image: -webkit-linear-gradient(hsl(0, 0%, 93%), hsl(0, 0%, 93%) 3
8%, hsl(0, 0%, 87%)); | 451 background-image: linear-gradient(hsl(0, 0%, 93%), hsl(0, 0%, 93%) 38%, hsl(
0, 0%, 87%)); |
| 460 border: 1px solid hsla(0, 0%, 0%, 0.25); | 452 border: 1px solid hsla(0, 0%, 0%, 0.25); |
| 461 border-radius: 2px; | 453 border-radius: 2px; |
| 462 box-shadow: 0 1px 0 hsla(0, 0%, 0%, 0.08), inset 0 1px 2px hsla(0, 100%, 100
%, 0.75); | 454 box-shadow: 0 1px 0 hsla(0, 0%, 0%, 0.08), inset 0 1px 2px hsla(0, 100%, 100
%, 0.75); |
| 463 color: hsl(0, 0%, 27%); | 455 color: hsl(0, 0%, 27%); |
| 464 font-size: 12px; | 456 font-size: 12px; |
| 465 margin: 0 1px 0 0; | 457 margin: 0 1px 0 0; |
| 466 text-shadow: 0 1px 0 hsl(0, 0%, 94%); | 458 text-shadow: 0 1px 0 hsl(0, 0%, 94%); |
| 467 min-height: 2em; | 459 min-height: 2em; |
| 468 padding-left: 10px; | 460 padding-left: 10px; |
| 469 padding-right: 10px; | 461 padding-right: 10px; |
| 470 } | 462 } |
| 471 | 463 |
| 472 .settings-tab-text-button:disabled { | 464 .settings-tab-text-button:disabled { |
| 473 background-image: -webkit-linear-gradient(#f1f1f1, #f1f1f1 38%, #e6e6e6); | 465 background-image: linear-gradient(#f1f1f1, #f1f1f1 38%, #e6e6e6); |
| 474 border-color: rgba(80, 80, 80, 0.2); | 466 border-color: rgba(80, 80, 80, 0.2); |
| 475 box-shadow: 0 1px 0 rgba(80, 80, 80, 0.08), inset 0 1px 2px rgba(255, 255, 2
55, 0.75); | 467 box-shadow: 0 1px 0 rgba(80, 80, 80, 0.08), inset 0 1px 2px rgba(255, 255, 2
55, 0.75); |
| 476 color: #aaa; | 468 color: #aaa; |
| 477 } | 469 } |
| 478 | 470 |
| 479 .settings-tab-text-button:not(:disabled):hover { | 471 .settings-tab-text-button:not(:disabled):hover { |
| 480 background-image: -webkit-linear-gradient(hsl(0, 0%, 94%), hsl(0, 0%, 94%) 3
8%, hsl(0, 0%, 88%)); | 472 background-image: linear-gradient(hsl(0, 0%, 94%), hsl(0, 0%, 94%) 38%, hsl(
0, 0%, 88%)); |
| 481 border-color: hsla(0, 0%, 0%, 0.3); | 473 border-color: hsla(0, 0%, 0%, 0.3); |
| 482 box-shadow: 0 1px 0 hsla(0, 0%, 0%, 0.12), inset 0 1px 2px hsla(0, 100%, 100
%, 0.95); | 474 box-shadow: 0 1px 0 hsla(0, 0%, 0%, 0.12), inset 0 1px 2px hsla(0, 100%, 100
%, 0.95); |
| 483 color: hsl(0, 0%, 0%); | 475 color: hsl(0, 0%, 0%); |
| 484 } | 476 } |
| 485 | 477 |
| 486 .settings-tab-text-button:not(:disabled):active { | 478 .settings-tab-text-button:not(:disabled):active { |
| 487 background-image: -webkit-linear-gradient(hsl(0, 0%, 91%), hsl(0, 0%, 91%) 3
8%, hsl(0, 0%, 84%)); | 479 background-image: linear-gradient(hsl(0, 0%, 91%), hsl(0, 0%, 91%) 38%, hsl(
0, 0%, 84%)); |
| 488 box-shadow: none; | 480 box-shadow: none; |
| 489 text-shadow: none; | 481 text-shadow: none; |
| 490 } | 482 } |
| 491 | 483 |
| 492 .settings-tab .settings-list-container { | 484 .settings-tab .settings-list-container { |
| 493 background-color: white; | 485 background-color: white; |
| 494 margin-bottom: 10px; | 486 margin-bottom: 10px; |
| 495 } | 487 } |
| 496 | 488 |
| 497 .settings-tab .settings-list { | 489 .settings-tab .settings-list { |
| (...skipping 148 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 646 color: #333; | 638 color: #333; |
| 647 font-size: 14px; | 639 font-size: 14px; |
| 648 margin: 0; | 640 margin: 0; |
| 649 padding: 14px 17px 14px; | 641 padding: 14px 17px 14px; |
| 650 } | 642 } |
| 651 | 643 |
| 652 .settings-dialog .contents { | 644 .settings-dialog .contents { |
| 653 flex: 1 1 auto; | 645 flex: 1 1 auto; |
| 654 padding: 0 17px; | 646 padding: 0 17px; |
| 655 overflow: auto; | 647 overflow: auto; |
| 656 margin-bottom: 10px; | |
| 657 } | 648 } |
| 658 | 649 |
| 659 .settings-dialog .block-header { | 650 .settings-dialog .block-header { |
| 660 color: black; | 651 color: black; |
| 661 font-size: 1.2em; | 652 font-size: 1.2em; |
| 662 margin-bottom: 0.8em; | 653 margin-bottom: 0.8em; |
| 663 } | 654 } |
| 664 | 655 |
| 665 .settings-dialog .done-button { | 656 .settings-dialog .done-button { |
| 666 float: right; | 657 float: right; |
| (...skipping 10 matching lines...) Expand all Loading... |
| 677 } | 668 } |
| 678 | 669 |
| 679 .help-indent-labels label { | 670 .help-indent-labels label { |
| 680 padding-left: 10px; | 671 padding-left: 10px; |
| 681 } | 672 } |
| 682 | 673 |
| 683 .help-field-note { | 674 .help-field-note { |
| 684 opacity: 0.6; | 675 opacity: 0.6; |
| 685 padding-left: 19px; | 676 padding-left: 19px; |
| 686 } | 677 } |
| 678 |
| 679 .edit-file-system-dialog .section { |
| 680 min-width: 400px; |
| 681 } |
| OLD | NEW |