ckeditor/plugins/pbckcode/dialogs/style.css
changeset 0 44d330dccc59
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/ckeditor/plugins/pbckcode/dialogs/style.css	Thu Dec 15 18:10:20 2016 +0300
     1.3 @@ -0,0 +1,32 @@
     1.4 +/*label styling */
     1.5 +.cke_pbckcode_form .cke_dialog_ui_labeled_content {
     1.6 +    display        : inline-block;
     1.7 +    vertical-align : middle;
     1.8 +    margin-left    : 6px;
     1.9 +}
    1.10 +/*select styling */
    1.11 +.cke_pbckcode_form .cke_dialog_ui_input_select select {
    1.12 +    background-color : white;
    1.13 +    border           : 1px solid #ccc;
    1.14 +    border-radius    : 4px;
    1.15 +    color            : #555;
    1.16 +    display          : inline-block;
    1.17 +    font-family      : "Helvetica Neue", Helvetica, Arial, sans-serif;
    1.18 +    font-size        : 12px;
    1.19 +    height           : auto;
    1.20 +    margin-bottom    : 0;
    1.21 +    padding          : 0;
    1.22 +    vertical-align   : middle;
    1.23 +    width            : 110px;
    1.24 +}
    1.25 +
    1.26 + /* ace reset needed due to ckeditor style */
    1.27 +.cke_pbckcode_ace.ace_editor * {
    1.28 +    font-family : 'Monaco', 'Menlo', 'Ubuntu Mono', 'Droid Sans Mono', 'Consolas', monospace;
    1.29 +    font-size   : 12px;
    1.30 +}
    1.31 +
    1.32 +/*good font color on dark theme*/
    1.33 +.cke_pbckcode_ace.ace_dark * {
    1.34 +    color : inherit;
    1.35 +}