aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/qmldesigner/qmldesignerextension/connectioneditor/stylesheet.css
blob: aeacc6373303b776c4e0e6b989fde41704b78fc0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
QFrame
{
    background-color: creatorTheme.QmlDesigner_BackgroundColorDarkAlternate;
    color: creatorTheme.PanelTextColorLight;
    font-size: creatorTheme.captionFontPixelSize;
    border-radius: 0px;
}

QTableView {
    color: creatorTheme.PanelTextColorLight;
    selection-color: creatorTheme.PanelTextColorLight;
    selection-background-color: creatorTheme.QmlDesigner_HighlightColor;

}

QTabBar QToolButton {
    background-color: creatorTheme.QmlDesigner_BackgroundColorDarkAlternate;
    border: 1px solid creatorTheme.QmlDesigner_BackgroundColorDarker;
    border-radius: 0px;
}

QTableView::item
{
    border: 0px;
    padding-left: 4px;
}

QTableView::item:focus
{
    border: none;
    background-color: transparent;
}

QTableView::item:selected
{
    border: none
}

QHeaderView::section {
    background-color: #494949;
    padding: 4px;
    border: 1px solid black;
    color: #cacaca;
    margin: 2px
}

QTableView {
    alternate-background-color: #414141;
}

QWidget#widgetSpacer {
    background-color: creatorTheme.QmlDesigner_TabLight;
}

QStackedWidget {
    border: 0px;
    background-color: #4f4f4f;
}

QTabBar::tab:selected {
    border: none;
    border-image: none;
    image: none;

    background-color: creatorTheme.QmlDesigner_TabLight;
    color: creatorTheme.QmlDesigner_TabDark;
}


QTabBar::tab {
    width: 92px;
    height: 22px;
    margin-top: 0x;
    margin-bottom: 0px;
    margin-left: 0px;
    margin-right: 0px;
    font: bold;
    font-size: creatorTheme.captionFontPixelSize;
    background-color: creatorTheme.QmlDesigner_TabDark;
    color: creatorTheme.QmlDesigner_TabLight;
}

QSpinBox
{
    font-size: creatorTheme.captionFontPixelSize;
    color: white;
    padding-right: 2px;
    padding-top: 2px;
    padding-bottom: 2px;
    padding-left: 12px;
    border: 2px solid #0F0F0F;
    border-width: 1;
    background-color: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1,
    stop: 0 #2c2c2c, stop: 1 #333333);

     min-height: 22px;
}

 QDoubleSpinBox
 {
    font-size: creatorTheme.captionFontPixelSize;
    color: white;
    padding-right: 2px;
    padding-top: 2px;
    padding-bottom: 2px;
    padding-left: 12px;
    border: 2px solid #0F0F0F;
    border-width: 1;
    background-color: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1,
    stop: 0 #2c2c2c, stop: 1 #333333);
    min-height: 22px;
 }

QLineEdit
{
    color: white;
    font-size: creatorTheme.captionFontPixelSize;
    border: 2px solid #0F0F0F;
    border-width: 1;
    min-height: 26px;
    background-color: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1,
    stop: 0 #2c2c2c, stop: 1 #333333);
}