NIHVIVO-1979: Made stylesheets syntax consistent across the app.

This commit is contained in:
mb863 2011-02-02 02:59:12 +00:00
parent fa0d314699
commit c54f2c75b7
16 changed files with 846 additions and 634 deletions

View file

@ -1,17 +1,76 @@
/* $This file is distributed under the terms of the license in /doc/license.txt$ */
.ui-notify { width:350px; position:fixed; top:10px; right:10px; }
.ui-notify-message { padding:10px; margin-bottom:15px; -moz-border-radius:8px; -webkit-border-radius:8px; border-radius:8px }
.ui-notify-message h1 { font-size:14px; margin:0; padding:0 }
.ui-notify-message p { margin:3px 0; padding:0; line-height:18px }
.ui-notify-message:last-child { margin-bottom:0 }
.ui-notify-message-style { background:#000; background:rgba(0,0,0,0.8); -moz-box-shadow: 0 0 6px #000; -webkit-box-shadow: 0 0 6px #000; box-shadow: 0 0 6px #000; }
.ui-notify-message-style h1 { color:#fff; font-weight:bold }
.ui-notify-message-style p { color:#fff }
.ui-notify-close { color:#fff; text-decoration:underline }
.ui-notify-click { cursor:pointer }
.ui-notify-cross { margin-top:-4px; float:right; cursor:pointer; text-decoration:none; font-size:12px; font-weight:bold; text-shadow:0 1px 1px #fff; padding:2px }
.ui-notify-cross:hover { color:#ffffab }
.ui-notify-cross:active { position:relative; top:1px }
.ui-state-error h1 { font-size:14px; margin:0; padding:0; color: #CD0A0A; font-weight: bold; }
.ui-state-error p { color: #CD0A0A; }
.ui-notify {
width: 350px;
position: fixed;
top: 10px;
right: 10px;
}
.ui-notify-message {
padding: 10px;
margin-bottom: 15px;
-moz-border-radius: 8px;
-webkit-border-radius: 8px;
border-radius: 8px;
}
.ui-notify-message h1 {
font-size: 14px;
margin: 0;
padding: 0;
}
.ui-notify-message p {
margin: 3px 0;
padding: 0;
line-height: 18px
}
.ui-notify-message:last-child {
margin-bottom: 0;
}
.ui-notify-message-style {
background: #000;
background: rgba(0,0,0,0.8);
-moz-box-shadow: 0 0 6px #000;
-webkit-box-shadow: 0 0 6px #000;
box-shadow: 0 0 6px #000;
}
.ui-notify-message-style h1 {
color: #fff;
font-weight: bold;
}
.ui-notify-message-style p {
color: #fff;
}
.ui-notify-close {
color: #fff;
text-decoration: underline
}
.ui-notify-click {
cursor: pointer;
}
.ui-notify-cross {
margin-top: -4px;
float: right;
cursor: pointer;
text-decoration: none;
font-size: 12px;
font-weight: bold;
text-shadow: 0 1px 1px #fff;
padding: 2px;
}
.ui-notify-cross:hover {
color: #ffffab;
}
.ui-notify-cross:active {
position:relative;
top: 1px;
}
.ui-state-error h1 {
font-size: 14px;
margin: 0;
padding: 0;
color: #cd0a0a;
font-weight: bold;
}
.ui-state-error p {
color: #cd0a0a;
}