source: Dev/branches/rest-dojo-ui/client/rft/css/LESS/rftLineWithActions.css @ 409

Last change on this file since 409 was 403, checked in by tjcschipper, 13 years ago
  • Switched to LESS for stylesheets. Most of the conversion is done, it's only (predictably) the color system that is giving trouble. Plan for next week: get rid of the inherit stuff, just use proper color classes.

-> Use only a minimal .*colorName* .bg/.text class combination that doesn't inherit. Do anything more complicated than that in a page-specific stylesheet.

File size: 1.4 KB
Line 
1#rft .claro .rftLineWithButtons {
2  border: none;
3  background-image: none;
4  -webkit-box-shadow: none;
5  box-shadow: none;
6  position: relative;
7  height: 24px;
8  white-space: nowrap;
9  margin: 4px 0;
10}
11#rft .claro .rftLineWithButtons.dojoDndItem {
12  -webkit-transition: all 0.2s;
13  -moz-transition: all 0.2s;
14  -o-transition: all 0.2s;
15  -ms-transition: all 0.2s;
16  transition: all 0.2s;
17}
18#rft .claro .rftLineWithButtons.dojoDndItem.dojoDndItemBefore {
19  margin-top: 6px;
20  border-top: 6px solid #ffffff;
21}
22#rft .claro .rftLineWithButtons.dojoDndItem.dojoDndItemAfter {
23  margin-bottom: 6px;
24  border-bottom: 6px solid #ffffff;
25}
26#rft .claro .rftLineWithButtons.dojoDndItem.dojoDndItemover,
27#rft .claro .rftLineWithButtons.dojoDndItem.dojoDndItemAnchor {
28  background-image: none;
29  border: none;
30  padding: 2px;
31}
32#rft .claro .rftLineWithButtons.dojoDndItem.dojoDndItemover *,
33#rft .claro .rftLineWithButtons.dojoDndItem.dojoDndItemAnchor * {
34  background-color: rgba(255, 255, 255, 0.1);
35}
36#rft .claro .rftLineWithButtons .rftLineWithButtonsTitle {
37  float: left;
38  margin: 0 8px;
39  overflow: hidden;
40  white-space: nowrap;
41  word-wrap: break-word;
42}
43#rft .claro .rftLineWithButtons .rftLineWithButtonsButtons {
44  margin: 0;
45  padding: 0;
46  line-height: 24px;
47  height: 24px;
48  position: absolute;
49  right: 0;
50  float: left;
51}
52#rft .claro .dojoDndSourceMoved .rftLineWithButtons.dojoDndItemAnchor {
53  height: 0;
54}
Note: See TracBrowser for help on using the repository browser.