Icon für Kontextmenüeintrag "auf Version zurücksetzen"
[kivitendo-erp.git] / css / requirement_spec.css
1 /* ------------------------------------------------------------ */
2 /* General page layout */
3 /* ------------------------------------------------------------ */
4
5 input.rs_input_field, select.rs_input_field,
6 table.rs_input_field input, table.rs_input_field select {
7   width: 300px;
8 }
9
10 #column-container {
11   width: 100%;
12   padding-left: 0;
13   padding-right: 0;
14   margin-left: 0;
15   margin-right: 0;
16 }
17
18 #tree-column {
19   float: left;
20   width: 25%;
21 }
22
23 #content-column {
24   float: right;
25   width: 74%;
26   padding-left: 10px;
27 }
28
29 .section-empty-description {
30   color: #bbb;
31 }
32
33 /* ------------------------------------------------------------ */
34 /* Special things that apply to the tree */
35 /* ------------------------------------------------------------ */
36
37 #tree li.flagged > a > ins {
38  background-image: url("../image/flag-red.png") !important;
39  background-position: 0;
40 }
41
42 /* ------------------------------------------------------------ */
43 /* Special things that apply to the context menu */
44 /* ------------------------------------------------------------ */
45
46 .context-menu-item.icon-flag   { background-image: url("../image/flag-red.png"); }
47 .context-menu-item.icon-close  { background-image: url("../image/document-close.png"); }
48 .context-menu-item.icon-save   { background-image: url("../image/document-save.png"); }
49 .context-menu-item.icon-revert { background-image: url("../image/edit-undo.png"); }
50
51 /* ------------------------------------------------------------ */
52 /* Sections & function blocks */
53 /* ------------------------------------------------------------ */
54
55 .section {
56   border-left: 0;
57   margin-left: 0;
58 }
59
60 .section-description-heading {
61   font-weight: bold;
62 }
63
64 .section-description {
65   color: #000;
66   background: rgb(235, 235, 235);
67   border: 1px solid #ccc;
68   margin-bottom: 15px;
69 }
70
71 .function-block {
72   border-bottom: 1px solid #bbb;
73   border-left: 0;
74   margin-left: 0;
75 }
76
77 .function-block-form {
78   background: rgb(235, 235, 235);
79   border: 1px solid rgb(0, 100, 0);
80 }
81
82 .function-block-number {
83   font-weight: bold;
84 }
85
86 .function-block-form > div {
87   padding: 5px;
88 }
89
90 .sub-function-block {
91   background-color: #fff;
92   border-bottom: 1px solid #ccc;
93   border-left: 0;
94   margin-left: 0;
95 }
96
97 .sub-function-block-container {
98   margin: 10px 0px 10px 20px;
99   border: 1px solid #ccc;
100 }
101
102 .sub-function-block-header {
103   padding: 5px;
104   font-weight: bold;
105   color: #fff;
106   background: #ccc;
107 }
108
109 /* Flagged sections, function blocks, text blocks */
110
111 .section.flagged .section-description,
112 .function-block.flagged,
113 .sub-function-block.flagged {
114   background-color: #feece3;
115 }
116
117 .section.flagged .section-description > .section-description-heading,
118 .function-block.flagged > .function-block-content > div > .function-block-number,
119 .sub-function-block.flagged > .sub-function-block-content > div > .function-block-number {
120   background-color: #fe5f14;
121   color: #fff;
122 }
123
124 /* Selected sections, function blocks, text blocks */
125
126 .section.selected, .function-block.selected, .sub-function-block.selected {
127   margin-left: -3px;
128   border-left: 3px solid #cbb120;
129 }
130
131 /* ------------------------------------------------------------ */
132 /* Text blocks */
133 /* ------------------------------------------------------------ */
134
135 .requirement-spec-text-block {
136   border-left: 0;
137   margin-left: 3px;
138   margin-top: 10px;
139 }
140
141 .requirement-spec-text-block > h2 {
142   margin-top: 0px;
143 }
144
145 .requirement-spec-text-block.flagged {
146   background-color: #feece3;
147   /* border: 1px solid #fe5f14; */
148 }
149
150 .requirement-spec-text-block.flagged > h2 {
151   background-color: #fe5f14;
152   color: #fff;
153 }
154
155 .requirement-spec-text-block.selected {
156   border-left: 3px solid #cbb120;
157   margin-left: 0;
158 }