Skip to content

Commit

Permalink
Synch with other source server
Browse files Browse the repository at this point in the history
  • Loading branch information
vitmalina committed Jul 9, 2012
1 parent fd093b0 commit 4410e2c
Show file tree
Hide file tree
Showing 142 changed files with 2,561 additions and 1,548 deletions.
58 changes: 58 additions & 0 deletions css/w20-buttons.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,58 @@
/* BUTTONS and DROPDOWN */

input[type=text], input[type=password], textarea, select {
margin: 0px;
padding: 3px;
border: 1px solid #b7b7b7;
background-color: white;
border-radius: 2px;
-moz-border-radius: 2px;
-webkit-border-radius: 2px;
}

input[type=text]:focus,input[type=password]:focus,textarea:focus {
box-shadow: 0px 0px 3px #dda63a;
-moz-box-shadow: 0px 0px 3px #dda63a;
-webkit-box-shadow: 0px 0px 3px #dda63a;
border: 1px solid #dda63a;
}

input[type=file] {
margin-top: 3px;
}

input[disabled], textarea[disabled], select[disabled], option[disabled]{
color: gray;
background-color: #efefef;
}

input[readonly], textarea[readonly], select[readonly], option[readonly] {
background-color: #efefef;
}

button, input[type=button], input[type=submit] {
color: #444444;
padding: 1px 5px 2px 5px;
border: 1px solid #888888;
background: url(../images/mac_bg.png) center center;
border-radius: 4px;
-moz-border-radius: 4px;
-webkit-border-radius: 4px;
}

button:hover, input[type=button]:hover, input[type=submit]:hover{
color: navy;
background: url(../images/mac_bg2.png) center center;
}

button:active, input[type=button]:active, input[type=submit]:active{
color: #444444;
background: url(../images/mac_bg3.png) center center;
}

button[disabled], button[disabled]:hover, button[disabled]:active,
input[type=button][disabled], input[type=button][disabled]:hover, input[type=button][disabled]:active,
input[type=submit][disabled], input[type=submit][disabled]:hover, input[type=submit][disabled]:active {
color: #d7d7d7;
background: #f7f7f7;
}
163 changes: 163 additions & 0 deletions css/w20-controls.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,163 @@
/* ================================================== */
/* ---- Message Dialog ---- */

div.w20-message {
border-radius: 4px;
padding: 0px;
margin: 0px;
border: 1px solid #676e73;
box-shadow: 0px 0px 15px #555555;
-webkit-box-shadow: 0px 0px 15px #555555;
}
div.w20-message div.msg_title {
padding: 10px 5px 4px 5px;
border-radius: 4px 4px 0px 0px;
background-color: #7bceff;
color: white;
font-family: Arial;
font-size: 16px;
font-weight: bold;
position: absolute;
overflow: hidden;
height: 26px;
left: 0px;
right: 0px;
top: 0px;
text-overflow: ellipsis;
}
div.w20-message div.msg_buttons {
padding: 7px 5px;
border-radius: 0px 0px 4px 4px;
background-color: #eeeeee;
text-align: center;
position: absolute;
overflow: hidden;
height: 26px;
left: 0px;
right: 0px;
bottom: 0px;
}
div.w20-message div.msg_body {
padding: 7px;
background-color: white;
font-family: Arial;
font-size: 12px;
position: absolute;
overflow: auto;
left: 0px;
right: 0px;
top: 40px;
bottom: 40px;
}
div.w20-message div.msg_no-title {
border-top-left-radius: 4px;
border-top-right-radius: 4px;
top: 0px !important;
}
div.w20-message div.msg_no-buttons {
border-bottom-left-radius: 4px;
border-bottom-right-radius: 4px;
bottom: 0px !important;
}

/* ================================================== */
/* ---- Date Picker ---- */

div.w20-calendar {
margin: 0px;
margin-top: 1px;
padding: 0px;
border: 1px solid silver;
box-shadow: #dddddd 4px 4px 6px;
}
div.w20-calendar table{
background-color: #e4ebed;
font-family: verdana;
font-size: 11px;
}
div.w20-calendar td.title {
padding: 5px;
border-bottom: 1px solid silver;
background-image: url(../images/bl_title_bg.png);
color: black;
}
div.w20-calendar td.week_day {
background-color: #e8e8e8;
color: gray;
text-align: center;
border-left: 1px solid #e8e8e8;
}
div.w20-calendar td.day {
border: 1px solid #e8e8e8;
color: black;
background-color: #f4f4fe;
padding-left: 5px;
padding-right: 5px;
cursor: default;
text-align: right;
}
div.w20-calendar td.day_hover {
background-color: yellow;
}
div.w20-calendar td.day_empty {
cursor: default;
background-color: #f4f4fe;
border: 1px solid #e8e8e8;
}
div.w20-calendar td.day_today {
border: 1px solid #8cb067;
background-color: #e2f7cd;
}
div.w20-calendar td.day_saturday {
color: #c8493b;
}
div.w20-calendar td.day_sunday {
color: #c8493b;
}

/* ================================================== */
/* --- AUTOCOMPLETE && LOOKUP ---- */

div.w20-items {
font-size: 11px;
font-family: verdana;
background-color: white;
border: 1px solid silver;
padding: 2px;
margin: 0px;
margin-top: 1px;
text-align: left;
box-shadow: #dddddd 4px 4px 6px;
}

div.w20-items ul {
cursor: default;
padding: 0px;
margin: 0px;
width: 100%;
}

div.w20-items ul li {
-moz-box-sizing: border-box;
-webkit-box-sizing: border-box;
-ms-box-sizing: border-box;
display: inline-block;
list-style-type: none;
color: black;
background-color: white;
width: 100%;
padding: 3px 1px;
}

div.w20-items ul li:hover, div.w20-items ul li.selected {
color: white;
background-color: #7dd4f1 !important;
}

div.w20-items ul li.odd {
background-color: white;
}

div.w20-items ul li.even {
background-color: #efefef;
}
57 changes: 57 additions & 0 deletions css/w20-editor.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,57 @@
.CodeMirror-wrapping {
border: 1px solid silver;
background-color: white;
}
.CodeMirror-line-numbers {
width: 2.2em;
color: #aaa;
background-color: #eee;
text-align: right;
padding-right: .3em;
font-size: 10pt;
font-family: monospace;
padding-top: .4em;
}
/* ============ TREE ================= */

.tree_table {
cursor: default;
font-family: verdana;
font-size: 11px;
color: black;
background-color: transparent;
border: 0px;
}

.tree_nodeImg {
padding-left: 1px;
padding-right: 1px;
}

.tree_nodeTxt {
padding-bottom: 1px;
padding-left: 2px;
padding-right: 2px;
}

.tree_node {
margin: 0px;
margin-bottom: 1px;
cursor: default;
font-family: verdana;
font-size: 11px;
color: black;
background-color: transparent;
border: 1px solid transparent;
}

.tree_nodeSelected {
margin: 0px;
margin-bottom: 1px;
cursor: default;
font-family: verdana;
font-size: 11px;
color: white;
background-color: #6fa2b0;
border: 1px solid transparent;
}
Loading

0 comments on commit 4410e2c

Please sign in to comment.