Warning, /plasma/breeze-gtk/src/gtk3/widgets/_dialogs.scss is written in an unsupported language. File is not indexed.

0001 @charset "UTF-8";
0002 
0003 /***********
0004  * Dialogs *
0005  ***********/
0006 
0007 // .message-dialog .dialog-action-area .button {
0008 //   //padding: 8px;
0009 // }
0010 
0011 messagedialog {
0012         // Message Dialog styling
0013 
0014         &.background {
0015                 background-color: gtk("@theme_bg_color");
0016         }
0017         &:backdrop {
0018                 background-color: gtk("@theme_unfocused_bg_color");
0019         }
0020         .titlebar {
0021                 min-height: 32px;
0022                 background-color: transparent;
0023                 background-image: linear-gradient(
0024                         to bottom,
0025                         gtkshade("@theme_titlebar_background", 1.2117647),
0026                         gtk("@theme_titlebar_background")
0027                 );
0028                 box-shadow: none;
0029         }
0030         .dialog-action-area {
0031                 padding: 8px;
0032         }
0033         button {
0034                 margin: 2px;
0035         }
0036 }
0037 
0038 filechooser {
0039         .search-bar {
0040                 background-color: gtk("@theme_bg_color");
0041                 border-color: gtk("@theme_bg_color");
0042                 box-shadow: none;
0043                 &:backdrop {
0044                         background-color: gtk("@theme_unfocused_bg_color");
0045                         border-color: gtk("@theme_unfocused_bg_color");
0046                         color: gtk("@theme_unfocused_text_color");
0047                 }
0048         }
0049         .dialog-action-box {
0050                 border-top: 1px solid gtk("@borders");
0051                 &:backdrop {
0052                         border-top-color: gtk("@unfocused_borders");
0053                 }
0054         }
0055         #pathbarbox {
0056                 background-color: gtk("@theme_bg_color");
0057                 border-bottom: 1px solid gtk("@borders");
0058         }
0059 }