liquid_feedback_frontend
view static/trace.css @ 10:72c5e0ee7c98
Version beta6
Bugfixes:
- Security fix: Every user was able to change the discussion URL of an initiative
- Creation of new issues in areas without default policies is now possible
- Members can now be sorted in different ways
- No error when trying to compare a draft with itself
- Added missing local statement to variable initialization in app/main/delegation/new.lua
- CSS flaw in initiative action bar fixed
New features:
- Possiblity to invite other users to become initiator
- Revokation of initiatives implemented
- Number of suggestions, supporters, etc. is shown on corresponding tabs of initiative view
- Members can now be sorted by account creation (default sorting is "newest first")
- Configuration option to create an automatic discussion link for all issues
- First draft of global timeline feature (not accessible via link yet)
- Custom stylesheet URL for users marked as developers
In area listing the number of closed issues is shown too
Renamed "author" field of initiative to "last author"
Removed wrongly included file app/main/member/_show_thumb.lua.orig in the distribution
Help texts updated
Bugfixes:
- Security fix: Every user was able to change the discussion URL of an initiative
- Creation of new issues in areas without default policies is now possible
- Members can now be sorted in different ways
- No error when trying to compare a draft with itself
- Added missing local statement to variable initialization in app/main/delegation/new.lua
- CSS flaw in initiative action bar fixed
New features:
- Possiblity to invite other users to become initiator
- Revokation of initiatives implemented
- Number of suggestions, supporters, etc. is shown on corresponding tabs of initiative view
- Members can now be sorted by account creation (default sorting is "newest first")
- Configuration option to create an automatic discussion link for all issues
- First draft of global timeline feature (not accessible via link yet)
- Custom stylesheet URL for users marked as developers
In area listing the number of closed issues is shown too
Renamed "author" field of initiative to "last author"
Removed wrongly included file app/main/member/_show_thumb.lua.orig in the distribution
Help texts updated
| author | bsw |
|---|---|
| date | Sun Jan 10 12:00:00 2010 +0100 (2010-01-10) |
| parents | 3bfb2fcf7ab9 |
| children | 2aa8c9f925f4 |
line source
1 .layout_trace {
2 position: absolute;
3 right: 0;
4 margin-top: 20px;
5 border: 1px solid #404040;
6 font-size: 70%;
7 padding: 5px;
8 background: #ffe0c0;
9 }
11 #trace_show {
12 cursor: pointer;
13 }
15 .trace_list {
16 margin: 0px;
17 margin-bottom: 10px;
18 padding: 0px;
19 list-style-type: none;
20 }
22 .trace_list .trace_list {
23 border-top: 1px solid;
24 margin-bottom: 0px;
25 }
27 .trace_list li {
28 margin: 3px;
29 padding: 0px;
30 }
32 .trace_head {
33 font-weight: bold;
34 margin: 1px;
35 }
37 .trace_error {
38 border: 3px solid red;
39 background-color: black;
40 color: #c00000;
41 text-align: center;
42 text-decoration: blink;
43 }
45 .trace_error_position {
46 color: red;
47 text-decoration: blink;
48 font-weight: bold;
49 }
51 .trace_config {
52 border: 1px solid #608000;
53 background-color: #ffffff;
54 color: #608000;
55 }
57 .trace_config .trace_list {
58 border-color: #608000;
59 }
61 .trace_request {
62 border: 1px solid #6000ff;
63 background-color: #c080ff;
64 color: #6000ff;
65 }
67 .trace_request .trace_list {
68 border-color: #6000ff;
69 }
71 .trace_filter {
72 border: 1px solid #606060;
73 background-color: #c0c0c0;
74 color: #606060;
75 }
77 .trace_filter .trace_list {
78 border-color: #606060;
79 }
81 .trace_view {
82 border: 1px solid #0000ff;
83 background-color: #40c0ff;
84 color: #0000ff;
85 }
87 .trace_view .trace_list {
88 border-color: #0000ff;
89 }
91 .trace_action_success {
92 border: 1px solid #006000;
93 background-color: #80ff80;
94 color: #006000;
95 }
97 .trace_action_success .trace_list {
98 border-color: #006000;
99 }
101 .trace_action_softfail {
102 border: 1px solid #600000;
103 background-color: #ff6020;
104 color: #600000;
105 }
107 .trace_action_softfail .trace_list {
108 border-color: #600000;
109 }
111 .trace_action_status {
112 font-weight: bold;
113 }
115 .trace_action_neutral {
116 border: 1px solid #600000;
117 background-color: #ffc040;
118 color: #600000;
119 }
121 .trace_action_neutral .trace_list {
122 border-color: #600000;
123 }
125 .trace_redirect, .trace_forward {
126 border: 1px solid #404000;
127 background-color: #c08040;
128 color: #404000;
129 }
131 .trace_redirect .trace_list, .trace_forward .trace_list {
132 border-color: #404000;
133 }
135 .trace_exectime {
136 border: 1px solid black;
137 background-color: #404040;
138 color: white;
139 }
141 .trace_exectime .trace_list {
142 border-color: white;
143 }
145 .trace_close {
146 border: 1px solid black;
147 background-color: #605040;
148 margin: 3px;
149 padding: 3px;
150 color: white;
151 text-align: center;
152 cursor: pointer;
153 }
