Skip to content

Commit

Permalink
! a couple of color statements were in the base css
Browse files Browse the repository at this point in the history
! no units for 0
  • Loading branch information
Spuds committed Aug 30, 2014
1 parent 8006ebe commit ddde658
Show file tree
Hide file tree
Showing 3 changed files with 49 additions and 47 deletions.
18 changes: 14 additions & 4 deletions themes/default/css/_besocial/index_besocial.css
Expand Up @@ -246,6 +246,9 @@ strong {
background: #d1e1ef;
color: #555;
}
.table_grid .standard_row {
background: #fff;
}

/* Used for sections that need somewhat larger corners */
/* @todo - Daft name. Other stuffz. :P */
Expand Down Expand Up @@ -1043,6 +1046,16 @@ a.active {
}

/* $BOXES */

/* Lotsa boxes. */
.description, .information, .warningbox, .successbox, .infobox, .errorbox {
background: #fff;
border: 1px solid #ccc;
}
/* Information boxes. */
.information {
background: #f0f6f0;
}
/* More little boxes on a hillside. */
.warningbox {
padding: 6px 12px;
Expand Down Expand Up @@ -1257,28 +1270,25 @@ a.help .icon {
/*floating error box*/
/* currently used by like funcationality*/
.floating_error {
background: #fff;
background: rgba(255, 255, 255, 1);
font-size: 15px;
color: #404040;
border-radius: 10px;
border: solid 1px #E4E4E4;
}

.floating_error .error_heading {
font-weight: bold;
}

.floating_error .error_msg {
color: #3D3C3C;
}

.floating_error .error_btn {
border-top: solid 1px #D6D6D6;
color: #157DFB;
font-size: 16px;
font-weight: bold;
}

.floating_error .error_btn:hover {
cursor: pointer;
}
Expand Down
43 changes: 26 additions & 17 deletions themes/default/css/_light/index_light.css
Expand Up @@ -69,7 +69,6 @@ body {
color: #666;
}
fieldset {
border: none;
background: transparent;
border: 1px solid #ccc;
padding: 6px;
Expand Down Expand Up @@ -490,7 +489,7 @@ div.bbc_footnotes .meaction{
color: orange;
background-color: white;
border-radius: 0.3em;
text-shadow: 1px 1px 0px #000;
text-shadow: 1px 1px 0 #000;
}

#debug_logging a, #debug_logging strong {
Expand Down Expand Up @@ -673,7 +672,6 @@ div.bbc_footnotes .meaction{
}
.likes_indicator {
font-size: .857em;
border-radius: 4px 4px 4px 0;
box-shadow: 2px 2px 2px rgba(0,0,0,0.25);
border-radius: 6px 6px 6px 0;
line-height: 1.5em;
Expand Down Expand Up @@ -935,9 +933,13 @@ div.bbc_footnotes .meaction{
.table_grid td, .letterspacing {
border-bottom: 1px solid #ccc;
}
/* Subtle zebra striping for rows. */
.table_grid .standard_row:nth-child(even) {
background: #fafafa;
}
.table_grid .standard_row {
background: #fff;
}
/* Legacy highlight color, for selected membergroups etc. */
/* Used by JS to show a selected item. Still used in manage languages */
.table_grid .standard_row.highlight2 {
Expand Down Expand Up @@ -1566,36 +1568,36 @@ div.bbc_footnotes .meaction{
#helpmain {
border: 1px solid #ccc;
border-radius: 7px;
box-shadow: 0 -2px 2px rgba(0,0,0,0.1);
box-shadow: 0 -2px 2px rgba(0, 0, 0, 0.1);
}

/* Styles for the tooltips. */
.tooltip {
border: 1px solid #aaa;
border-radius: 4px;
background: #fff;
box-shadow: 3px 3px 3px rgba(0,0,0,0.3);
box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.3);
}
/* The darkened background for help pop-ups. */
.popup_container {
/* Flat colour fallback will be bad (visually), ie8 only though. */
background: rgb(0,0,0);
background: rgba(0,0,0,0.4);
background: rgb(0, 0, 0);
background: rgba(0, 0, 0, 0.4);
}
/* The actual pop-up wrapper. */
.popup_window {
border: 1px solid #777;
border-radius: 7px 7px 3px 3px;
background-color: #fafafa;
box-shadow: 0 4px 6px rgba(0,0,0,0.6);
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.6);
}
/* The text content, hopefully helpful. */
.popup_content {
border: 1px solid #bbb;
border-bottom: 1px solid #ccc;
border-radius: 6px 6px 2px 2px;
background: #f5f5f5;
box-shadow: 0 -2px 3px rgba(0,0,0,0.15);
box-shadow: 0 -2px 3px rgba(0, 0, 0, 0.15);
}

/* $SEARCH */
Expand All @@ -1607,8 +1609,8 @@ div.bbc_footnotes .meaction{
border-radius: 5px;
}
.search_results_posts .topic_body {
border-top: 1px solid #CCCCCC;
box-shadow: 0px 1px 0px #FFFFFF inset;
border-top: 1px solid #ccc;
box-shadow: 0 1px 0 #fff inset;
}

/* $MEMBERLIST */
Expand Down Expand Up @@ -1653,6 +1655,16 @@ div.bbc_footnotes .meaction{

/* $BOXES */
/* ------------------------------------------------------- */

/* Lotsa boxes. */
.description, .information, .warningbox, .successbox, .infobox, .errorbox {
background: #fff;
border: 1px solid #ccc;
}
/* Information boxes. */
.information {
background: #f0f6f0;
}
.warningbox {
border-top: 1px solid #ffd324;
border-bottom: 1px solid #ffd324;
Expand Down Expand Up @@ -1743,31 +1755,28 @@ div.bbc_footnotes .meaction{
overflow: hidden;
}

/*floating error box*/
/* currently used by like funcationality*/
/* floating error box */
/* currently used by like funcationality */
.floating_error {
background: #fff;
background: rgba(255, 255, 255, 1);
font-size: 15px;
color: #404040;
border-radius: 10px;
border: solid 1px #E4E4E4;
}

.floating_error .error_heading {
font-weight: bold;
}

.floating_error .error_msg {
color: #3D3C3C;
}

.floating_error .error_btn {
border-top: solid 1px #D6D6D6;
color: #157DFB;
font-size: 16px;
font-weight: bold;
}

.floating_error .error_btn:hover {
cursor: pointer;
}
Expand Down
35 changes: 9 additions & 26 deletions themes/default/css/index.css
Expand Up @@ -1467,11 +1467,6 @@ a.bbc_link {
padding: 5px 8px;
border-bottom: 1px solid #ccc;
}
/* Subtle zebra striping for rows. */
.table_grid .standard_row {
background: #fff;
}

.table_grid textarea {
width: 100%;
}
Expand Down Expand Up @@ -3347,7 +3342,6 @@ div.labels {
margin: 0 0 -95px 11.5em;
padding: 8px 8px 100px 8px;
}
/* Add a background that fits with the calendar. */
#calendar_navigation {
padding: 12px 0;
}
Expand Down Expand Up @@ -3543,7 +3537,7 @@ a.help .icon {
padding: 12px;
}

/* The darkened background for help pop-ups. */
/* The help pop-ups. */
.popup_container {
position: fixed;
top: 0;
Expand Down Expand Up @@ -3589,7 +3583,7 @@ a.help .icon {
margin-bottom: 0;
}
.custom_mask {
margin: 0 2em;
margin: 0 2em;
}

/* $SEARCH */
Expand Down Expand Up @@ -3620,7 +3614,6 @@ a.help .icon {
padding-top: 12px;
width: 600px;
}

#advanced_search dt {
float: left;
clear: both;
Expand Down Expand Up @@ -3653,24 +3646,24 @@ a.help .icon {
padding: 5px 12px 0 0;
}
.compact_view .topic_details {
border-bottom: 0px;
border-bottom: 0;
}
.search_results_posts .topic_details {
position: relative;
margin: 0.2em 1em 0px;
margin: 0.2em 1em 0;
}
.search_results_posts .quickbuttons {
margin-left: 1em;
margin-right: 1em;
}
.search_results_posts .topic_body {
margin: 0px 1em 0px;
margin: 0 1em 0;
padding-bottom: 12px;
padding-top: 12px;
}
.search_results_posts .quick_mod {
position: absolute;
right: 0px;
right: 0;
top: 10%;
}
.search_results_posts .counter {
Expand All @@ -3679,8 +3672,7 @@ a.help .icon {
.compact_view .content {
overflow: auto;
}
#topicForm .pagesection,
#topicForm .flow_auto {
#topicForm .pagesection, #topicForm .flow_auto {
display: inline-block;
}
#topicForm:after {
Expand Down Expand Up @@ -3910,14 +3902,8 @@ dl.no_members {
.description, .information, .warningbox, .successbox, .infobox, .errorbox {
margin: 0 0 12px 0;
padding: 6px 12px;
border: 1px solid #ccc;
background: #fff;
font-size: 0.929em;
}
/* Information boxes. */
.information {
background: #f0f6f0;
}
.information p {
padding: 12px;
}
Expand Down Expand Up @@ -4008,17 +3994,14 @@ dl.no_members {
text-align: center;
z-index: 102;
}

.floating_error .error_heading {
margin: 0;
padding: 5px 10px 0;
}

.floating_error .error_msg {
margin: 10px auto 15px;
width: 100%;
}

.floating_error .error_btn {
padding: 10px;
position: relative;
Expand Down Expand Up @@ -4474,7 +4457,7 @@ dl.no_members {
display: none !important;
}
#gotop, #gobottom {
bottom: 0%;
bottom: 0;
padding: 0.2em 0.1em;
height: 1em;
width: 1.2em;
Expand Down Expand Up @@ -4676,4 +4659,4 @@ dl.no_members {
.shortcuts {
display: none;
}
}
}

0 comments on commit ddde658

Please sign in to comment.