comparison pylons_app/public/css/monoblue_custom.css @ 237:f188b156603d

Added flash messages support
author Marcin Kuzminski <marcin@python-works.com>
date Sun, 30 May 2010 17:52:20 +0200
parents d982ed8e32d8
children 576e85ca1b0b
comparison
equal deleted inserted replaced
236:5ba66bb4ca95 237:f188b156603d
42 border-top: 1px solid #AAAAAA; 42 border-top: 1px solid #AAAAAA;
43 border-bottom: 2px solid #666666; 43 border-bottom: 2px solid #666666;
44 } 44 }
45 .table_disp td { 45 .table_disp td {
46 border-left: 1px solid #AAAAAA; 46 border-left: 1px solid #AAAAAA;
47 padding-left: 2px; 47 padding-left: 4px;
48 padding-right: 0px; 48 padding-right: 4px;
49 } 49 }
50 50
51 table tr.parity0:hover,table tr.parity1:hover { 51 table tr.parity0:hover,table tr.parity1:hover {
52 background: #D5E1E6; 52 background: #D5E1E6;
53 } 53 }
96 .action_button:hover{ 96 .action_button:hover{
97 border:0px; 97 border:0px;
98 font-style:italic; 98 font-style:italic;
99 cursor: pointer; 99 cursor: pointer;
100 } 100 }
101
102 .flash_msg ul{
103 margin:0;
104 padding:25px 0px 0px 0px;
105
106 }
107 .error_msg {
108 background-color:#FFCFCF;
109 background-image: url("/images/icons/error_msg.png");
110 border:1px solid #FF9595;
111 color:#CC3300;
112 }
113 .warning_msg {
114 background-color:#FFFBCC;
115 background-image: url("/images/icons/warning_msg.png");
116 border:1px solid #FFF35E;
117 color:#C69E00;
118 }
119 .success_msg {
120 background-color:#D5FFCF;
121 background-image: url("/images/icons/success_msg.png");
122 border:1px solid #97FF88;
123 color:#009900;
124 }
125 .notice_msg {
126 background-color:#DCE3FF;
127 background-image: url("/images/icons/notice_msg.png");
128 border:1px solid #93A8FF;
129 color:#556CB5;
130 }
131
132 .success_msg, .error_msg, .notice_msg, .warning_msg{
133 background-position:10px center;
134 background-repeat:no-repeat;
135 font-size:12px;
136 font-weight:bold;
137 min-height:14px;
138 line-height:14px;
139 margin-bottom:0px;
140 margin-top:0px;
141 padding:3px 10px 3px 40px;
142 display:block;
143 overflow: auto;
144 }
145
146 #msg_close {
147 background:transparent url("icons/cross_grey_small.png") no-repeat scroll 0 0;
148 cursor:pointer;
149 height:16px;
150 position:absolute;
151 right:5px;
152 top:5px;
153 width:16px;
154 }
155
101 156
102 div#main { 157 div#main {
103 padding: 5px; 158 padding: 5px;
104 } 159 }
105 160