Skip to content

Commit

Permalink
Manually apply pull bcit-ci#300 (fixes bcit-ci#295) [ci skip]
Browse files Browse the repository at this point in the history
  • Loading branch information
narfbg committed Oct 5, 2012
1 parent 9438e26 commit 0af0258
Show file tree
Hide file tree
Showing 4 changed files with 22 additions and 15 deletions.
8 changes: 5 additions & 3 deletions application/views/errors/error_404.php
Original file line number Diff line number Diff line change
Expand Up @@ -31,9 +31,9 @@
<title>404 Page Not Found</title>
<style type="text/css">

::selection{ background-color: #E13300; color: white; }
::moz-selection{ background-color: #E13300; color: white; }
::webkit-selection{ background-color: #E13300; color: white; }
::selection { background-color: #E13300; color: white; }
::-moz-selection { background-color: #E13300; color: white; }
::-webkit-selection { background-color: #E13300; color: white; }

body {
background-color: #fff;
Expand Down Expand Up @@ -73,6 +73,8 @@
margin: 10px;
border: 1px solid #D0D0D0;
box-shadow: 0 0 8px #D0D0D0;
-moz-box-shadow: 0 0 8px #D0D0D0;
-webkit-box-shadow: 0 0 8px #D0D0D0;
}

p {
Expand Down
8 changes: 5 additions & 3 deletions application/views/errors/error_db.php
Original file line number Diff line number Diff line change
Expand Up @@ -31,9 +31,9 @@
<title>Database Error</title>
<style type="text/css">

::selection{ background-color: #E13300; color: white; }
::moz-selection{ background-color: #E13300; color: white; }
::webkit-selection{ background-color: #E13300; color: white; }
::selection { background-color: #E13300; color: white; }
::-moz-selection { background-color: #E13300; color: white; }
::-webkit-selection { background-color: #E13300; color: white; }

body {
background-color: #fff;
Expand Down Expand Up @@ -73,6 +73,8 @@
margin: 10px;
border: 1px solid #D0D0D0;
box-shadow: 0 0 8px #D0D0D0;
-moz-box-shadow: 0 0 8px #D0D0D0;
-webkit-box-shadow: 0 0 8px #D0D0D0;
}

p {
Expand Down
8 changes: 5 additions & 3 deletions application/views/errors/error_general.php
Original file line number Diff line number Diff line change
Expand Up @@ -31,9 +31,9 @@
<title>Error</title>
<style type="text/css">

::selection{ background-color: #E13300; color: white; }
::moz-selection{ background-color: #E13300; color: white; }
::webkit-selection{ background-color: #E13300; color: white; }
::selection { background-color: #E13300; color: white; }
::-moz-selection { background-color: #E13300; color: white; }
::-webkit-selection { background-color: #E13300; color: white; }

body {
background-color: #fff;
Expand Down Expand Up @@ -73,6 +73,8 @@
margin: 10px;
border: 1px solid #D0D0D0;
box-shadow: 0 0 8px #D0D0D0;
-moz-box-shadow: 0 0 8px #D0D0D0;
-webkit-box-shadow: 0 0 8px #D0D0D0;
}

p {
Expand Down
13 changes: 7 additions & 6 deletions application/views/welcome_message.php
Original file line number Diff line number Diff line change
Expand Up @@ -32,9 +32,9 @@

<style type="text/css">

::selection{ background-color: #E13300; color: white; }
::moz-selection{ background-color: #E13300; color: white; }
::webkit-selection{ background-color: #E13300; color: white; }
::selection { background-color: #E13300; color: white; }
::-moz-selection { background-color: #E13300; color: white; }
::-webkit-selection { background-color: #E13300; color: white; }

body {
background-color: #fff;
Expand Down Expand Up @@ -70,11 +70,11 @@
padding: 12px 10px 12px 10px;
}

#body{
#body {
margin: 0 15px 0 15px;
}

p.footer{
p.footer {
text-align: right;
font-size: 11px;
border-top: 1px solid #D0D0D0;
Expand All @@ -83,9 +83,10 @@
margin: 20px 0 0 0;
}

#container{
#container {
margin: 10px;
border: 1px solid #D0D0D0;
-moz-box-shadow: 0 0 8px #D0D0D0;
-webkit-box-shadow: 0 0 8px #D0D0D0;
}
</style>
Expand Down

0 comments on commit 0af0258

Please sign in to comment.