source: Dev/branches/rest-dojo-ui/client/rft/css/rftLineWithButtons.css @ 396

Last change on this file since 396 was 395, checked in by tjcschipper, 13 years ago
  • Fixed inheritBgColor CSS classes. Now works for buttons as well. LineWithActions? and the classes that use it still need some changes. LWA needs to get rid of colour "modifier" property and always pass "inheritBgColor (light, optionally) to the buttons". Classes that use LWA need to stop passing modifiers to them;)
  • Improved SurveyEditorPreviewItem? design, less of an eyesore, and can now use the correct button colors.
File size: 2.1 KB
Line 
1.claro .rftLineWithButtons {
2    height: 24px;
3    line-height: 24px;
4    font-size: 13px;
5    margin: 4px 0;
6    white-space: nowrap;
7}
8.claro .rftLineWithButtons .rftLineWithButtonsButtons {
9    float: right;
10    height: 24px;
11    line-height: 24px;
12    margin: 0;
13    padding: 0;
14}
15.claro .rftLineWithButtons .rftLineWithButtonsButtons .rftBlockButton {
16    float: right;
17    clear: none;
18}
19.claro .rftLineWithButtons .rftLineWithButtonsTitle {
20    float: left;
21    margin: 0 8px 0 8px;
22    overflow: hidden;
23}
24
25/* SurveyListView stuff */
26.claro div.blue.inheritBgColor.dojoDndItemAnchor,
27.claro .blue .inheritBgColor.dojoDndItemAnchor,
28.claro.blue .inheritBgColor.dojoDndItemAnchor {
29    background-color: #0794d1;
30    color: #ffffff;
31}
32.claro div.green.inheritBgColor.dojoDndItemAnchor,
33.claro .green .inheritBgColor.dojoDndItemAnchor,
34.claro.green .inheritBgColor.dojoDndItemAnchor {
35    background-color: #79ca0a;
36    color: #ffffff;
37}
38.claro div.orange.inheritBgColor.dojoDndItemAnchor,
39.claro .orange .inheritBgColor.dojoDndItemAnchor,
40.claro.orange .inheritBgColor.dojoDndItemAnchor {
41    background-color: #ff9140;
42    color: #ffffff;
43}
44.claro div.purple.inheritBgColor.dojoDndItemAnchor,
45.claro .purple .inheritBgColor.dojoDndItemAnchor,
46.claro.purple .inheritBgColor.dojoDndItemAnchor {
47    background-color: #993dec;
48    color: #ffffff;
49}
50.claro div.red.inheritBgColor.dojoDndItemAnchor,
51.claro .red .inheritBgColor.dojoDndItemAnchor,
52.claro.red .inheritBgColor.dojoDndItemAnchor {
53    background-color: #bd0013;
54    color: #ffffff;
55}
56
57.claro .rftLineWithButtons.dojoDndItem {
58    transition: all 0.2s;
59    -moz-transition: all 0.2s;
60    -webkit-transition: all 0.2s;
61    -o-transition: all 0.2s;
62}
63.claro .rftLineWithButtons.dojoDndItem.dojoDndItemBefore {
64    margin-top: 6px;
65    border-top: 6px solid #ffffff;
66}
67.claro .rftLineWithButtons.dojoDndItem.dojoDndItemAfter {
68    margin-bottom: 6px;
69    border-bottom: 6px solid #ffffff;
70}
71.claro .dojoDndAvatar {
72    color: #000000;
73}
74.claro .dojoDndSourceMoved .rftLineWithButtons.dojoDndItemAnchor {
75    height: 0;
76    overflow: hidden;
77}
Note: See TracBrowser for help on using the repository browser.