mirror of
https://github.com/WhatCD/Gazelle.git
synced 2025-01-18 04:01:35 +00:00
Empty commit
This commit is contained in:
parent
0d47e75fd9
commit
6b3ded1511
@ -182,7 +182,7 @@ function json_print($Status, $Message) {
|
||||
} elseif ($Message) {
|
||||
print json_encode(array('status' => $Status, 'error' => $Message));
|
||||
} else {
|
||||
print json_encode(array('status' => $Status));
|
||||
print json_encode(array('status' => $Status, 'response' => array()));
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -1,5 +1,8 @@
|
||||
CHANGE LOG
|
||||
|
||||
2014-03-24 by alderaan
|
||||
Fix various CSS issues with input text boxes of type "search"
|
||||
|
||||
2014-03-22 by alderaan
|
||||
Forum search: Rename "Username" to "Posted by" and add an HTML5 placeholder for the "posted by" text box
|
||||
|
||||
|
@ -239,7 +239,8 @@ ul.thin li {
|
||||
display: inline;
|
||||
}
|
||||
|
||||
#searchbars input {
|
||||
#searchbars input,
|
||||
#searchbars input[type="search"] {
|
||||
background-color: #F1E6CC;
|
||||
border: 1px solid #65430F;
|
||||
font-size: 0.9em;
|
||||
|
@ -136,11 +136,15 @@ input {
|
||||
cursor: hand;
|
||||
}
|
||||
|
||||
input[type="text"] {
|
||||
input[type="text"],
|
||||
input[type="search"] {
|
||||
cursor: text;
|
||||
}
|
||||
|
||||
input, select, textarea {
|
||||
input,
|
||||
input[type="search"], /* override global.css */
|
||||
select,
|
||||
textarea {
|
||||
font-family: Arial, sans-serif;
|
||||
font-size: 1em;
|
||||
border: 1px solid #323232;
|
||||
@ -151,7 +155,9 @@ textarea {
|
||||
height: 100px;
|
||||
}
|
||||
|
||||
input, textarea {
|
||||
input,
|
||||
input[type="search"], /* override global.css */
|
||||
textarea {
|
||||
color: #878787;
|
||||
padding: 3px;
|
||||
background: #212121 url('images/inputbg.png') top left repeat-x;
|
||||
@ -413,26 +419,27 @@ ul#userinfo_username {
|
||||
/* SEARCH BARS */
|
||||
|
||||
|
||||
#searchbars input {
|
||||
background: transparent url('images/searchbox.png') top left no-repeat;
|
||||
border: 0 !important;
|
||||
height: 19px;
|
||||
width: 132px;
|
||||
margin: 0px 0px 0px -16px;
|
||||
padding: 4px 0px 0px 25px;
|
||||
#searchbars input,
|
||||
#searchbars input[type="search"] {
|
||||
background: transparent url('images/searchbox.png') top left no-repeat;
|
||||
border: 0 !important;
|
||||
height: 19px;
|
||||
width: 132px;
|
||||
margin: 0px 0px 0px -16px;
|
||||
padding: 4px 0px 0px 25px;
|
||||
}
|
||||
|
||||
#searchbars {
|
||||
clear: both;
|
||||
width: 960px;
|
||||
position:absolute;
|
||||
top: 120px;
|
||||
height:23px;
|
||||
margin-left:20px;
|
||||
clear: both;
|
||||
width: 960px;
|
||||
position: absolute;
|
||||
top: 120px;
|
||||
height: 23px;
|
||||
margin-left: 20px;
|
||||
}
|
||||
|
||||
#searchbars ul {
|
||||
padding:0px 0px 0px 0px;
|
||||
padding: 0px 0px 0px 0px;
|
||||
margin: 0;
|
||||
list-style: none;
|
||||
}
|
||||
@ -470,7 +477,7 @@ margin-left:20px;
|
||||
}
|
||||
|
||||
*:first-child+html #searchbars ul li {
|
||||
padding-right:10px !important;
|
||||
padding-right: 10px !important;
|
||||
}
|
||||
|
||||
#searchbars form {
|
||||
@ -718,7 +725,8 @@ margin-left:20px;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
#forums #content .thin .box form .box input[type="Text"]{
|
||||
#forums #content .thin .box form .box input[type="text"],
|
||||
#forums #content .thin .box form .box input[type="search"] {
|
||||
font-size: 20px;
|
||||
width: 500px;
|
||||
}
|
||||
@ -729,9 +737,13 @@ margin-left:20px;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
td.body {width:100%;}
|
||||
td.body {
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
strong.quoteheader{color: #878787;}
|
||||
strong.quoteheader {
|
||||
color: #878787;
|
||||
}
|
||||
|
||||
/* Toolbox */
|
||||
.permission_container {
|
||||
@ -816,11 +828,11 @@ strong.quoteheader{color: #878787;}
|
||||
}
|
||||
|
||||
#torrents .filter_torrents .submit span {
|
||||
direction:ltr;
|
||||
direction: ltr;
|
||||
}
|
||||
|
||||
.torrent a {
|
||||
font-weight:bold;
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
.linkbox {
|
||||
@ -944,8 +956,11 @@ strong.quoteheader{color: #878787;}
|
||||
}
|
||||
|
||||
#torrents #content .center .box form div input[type="text"],
|
||||
#torrents #content .center .box form div input[type="search"],
|
||||
#wiki #content .center .box form div input[type="text"],
|
||||
#artist #content .center .box form div input[type="text"] {
|
||||
#wiki #content .center .box form div input[type="search"],
|
||||
#artist #content .center .box form div input[type="text"],
|
||||
#artist #content .center .box form div input[type="search"] {
|
||||
width: 500px !important;
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
@ -1214,7 +1229,9 @@ span.size10 { font-size:3em; }
|
||||
|
||||
/* MISC */
|
||||
|
||||
form textarea, form input {max-width:100%;}
|
||||
form textarea, form input {
|
||||
max-width: 100%;
|
||||
}
|
||||
|
||||
.r00 { color: #FF0000; }
|
||||
.r01 { color: #FF1300; }
|
||||
@ -1553,10 +1570,10 @@ h3 {
|
||||
}
|
||||
|
||||
.OiNK input {
|
||||
color:#999999;
|
||||
padding:3px;
|
||||
border:1px solid #b4b4b4 !important;
|
||||
font-family:Arial,sans-serif;
|
||||
color: #999999;
|
||||
padding: 3px;
|
||||
border: 1px solid #b4b4b4 !important;
|
||||
font-family: Arial,sans-serif;
|
||||
}
|
||||
|
||||
.OiNK #MySpacePlayer object {
|
||||
|
@ -715,3 +715,10 @@ tr.torrent .bookmark>a:after {
|
||||
#reportsv2 .manage_form img {
|
||||
max-width: 616px;
|
||||
}
|
||||
|
||||
/* make Safari treat <input type="search" /> as a regular text box */
|
||||
input[type="search"] {
|
||||
-webkit-appearance: textfield;
|
||||
/*font-size: medium;
|
||||
background: #fff;*/
|
||||
}
|
||||
|
@ -8,7 +8,10 @@ a:hover{color:#49D; text-decoration:underline}
|
||||
a img{border-style:none; position:relative; top:1px}
|
||||
p{margin:10px 0 5px 0}
|
||||
td p{margin:0}
|
||||
input, select, textarea{color:#F1F1F1; padding:3px; background:#262626; border:1px solid #9C9C9C; font-family:Arial,sans-serif; font-size:11px; }
|
||||
input,
|
||||
input[type="search"], /* to override global.css */
|
||||
select,
|
||||
textarea {color:#F1F1F1; padding:3px; background:#262626; border:1px solid #9C9C9C; font-family:Arial,sans-serif; font-size:11px; }
|
||||
input:focus, textarea:focus{border:1px solid #CCC}
|
||||
blockquote{background:transparent url(images/blockquote.png) repeat; padding:5px; margin:10px; color:#F1F1F1 !important}
|
||||
input[type="submit"]:focus, input[type="button"]:focus{background:#333}
|
||||
@ -217,7 +220,8 @@ table tr td{border:1px solid #757575}
|
||||
|
||||
/* USER */
|
||||
table tr.colhead_dark td{background:#555; border:0}
|
||||
/*#user table input[type="text"]{width:98% !important}*/
|
||||
/*#user table input[type="text"],
|
||||
#user table input[type="search"] {width:98% !important}*/
|
||||
#user #styleurl{width:40% !important}
|
||||
#user table textarea{width:98% !important}
|
||||
#user table tr td.center strong{display:block}
|
||||
@ -296,7 +300,8 @@ strong.quoteheader {color: #f1f1f1;}
|
||||
|
||||
#forums .forum_post ul{margin:5px 0 0 0; padding:0}
|
||||
#forums .forum_post li{margin:0 0 0 20px; padding:0}
|
||||
#forums #content .thin .box form .box input[type="Text"]{font-size:20px; width:500px}
|
||||
#forums #content .thin .box form .box input[type="text"],
|
||||
#forums #content .thin .box form .box input[type="search"] {font-size:20px; width:500px}
|
||||
#forums #content form .box{width:510px; margin:0 auto; padding:1ex; text-align:left; background-color:#404040}
|
||||
|
||||
/* TORRENTS */
|
||||
@ -340,8 +345,11 @@ strong.quoteheader {color: #f1f1f1;}
|
||||
.torrent_table tr.group_torrent a:hover, #torrent_table tr.group_torrent a:hover{color:#007dc6}
|
||||
|
||||
#torrents #content .center .box form div input[type="text"],
|
||||
#torrents #content .center .box form div input[type="search"],
|
||||
#wiki #content .center .box form div input[type="text"],
|
||||
#artist #content .center .box form div input[type="text"]{width:500px; margin-bottom:10px}
|
||||
#wiki #content .center .box form div input[type="search"],
|
||||
#artist #content .center .box form div input[type="text"],
|
||||
#artist #content .center .box form div input[type="search"] {width:500px; margin-bottom:10px}
|
||||
|
||||
#torrents #content .center .box form div textarea,
|
||||
#wiki #content .center .box form div textarea,
|
||||
|
@ -265,7 +265,10 @@ h1.hidden {
|
||||
width: 50px !important;
|
||||
}
|
||||
|
||||
button,input[type="button"],input[type="submit"],#userinfo_username .brackets a {
|
||||
button,
|
||||
input[type="button"],
|
||||
input[type="submit"],
|
||||
#userinfo_username .brackets a {
|
||||
cursor: pointer;
|
||||
padding: 6px 8px;
|
||||
font: 12pt Helvetica,Arial,sans-serif;
|
||||
@ -283,7 +286,10 @@ button,input[type="button"],input[type="submit"],#userinfo_username .brackets a
|
||||
border: 1px solid #4d4d4d;
|
||||
}
|
||||
|
||||
button:active,input[type="button"]:active,input[type="submit"]:active,#userinfo_username .brackets a:active {
|
||||
button:active,
|
||||
input[type="button"]:active,
|
||||
input[type="submit"]:active,
|
||||
#userinfo_username .brackets a:active {
|
||||
background: -webkit-gradient(linear,left 40%,left 120%,from(#575757),to(#5f5f5f));
|
||||
background: -moz-linear-gradient(center bottom,#5f5f5f,#575757);
|
||||
}
|
||||
@ -345,7 +351,11 @@ div.thin > h3:first-child {
|
||||
margin: 0 0 15px 15px;
|
||||
}
|
||||
|
||||
textarea,input[type="text"],input[type="password"],.select {
|
||||
textarea,
|
||||
input[type="text"],
|
||||
input[type="search"],
|
||||
input[type="password"],
|
||||
.select {
|
||||
width: 195px;
|
||||
padding: 8px;
|
||||
background: #fff;
|
||||
@ -360,7 +370,10 @@ textarea,input[type="text"],input[type="password"],.select {
|
||||
-webkit-background-clip: padding-box;
|
||||
}
|
||||
|
||||
textarea:focus,input[type="text"]:focus,input[type="password"]:focus {
|
||||
textarea:focus,
|
||||
input[type="text"]:focus,
|
||||
input[type="search"]:focus,
|
||||
input[type="password"]:focus {
|
||||
-webkit-box-shadow: inset -1px 1px 3px rgba(0,0,0,0.15),0 0 5px rgba(0,140,180,0.5);
|
||||
-moz-box-shadow: inset -1px 1px 3px rgba(0,0,0,0.15),0 0 5px rgba(0,140,180,0.5);
|
||||
}
|
||||
@ -373,7 +386,9 @@ textarea {
|
||||
font-size: 10pt;
|
||||
}
|
||||
|
||||
.sidebar input[type="text"],.sidebar textarea {
|
||||
.sidebar input[type="text"],
|
||||
.sidebar input[type="search"],
|
||||
.sidebar textarea {
|
||||
width: 202px;
|
||||
}
|
||||
|
||||
@ -1056,7 +1071,9 @@ ul#artistcomplete {
|
||||
width: 55% !important;
|
||||
}
|
||||
|
||||
form[action="user.php"] table textarea,form[action="user.php"] table input[type="text"] {
|
||||
form[action="user.php"] table textarea,
|
||||
form[action="user.php"] table input[type="text"],
|
||||
form[action="user.php"] table input[type="search"] {
|
||||
-webkit-box-sizing: border-box;
|
||||
-moz-box-sizing: border-box;
|
||||
}
|
||||
@ -1157,11 +1174,13 @@ li.graph .center_poll {
|
||||
margin-top: -20px;
|
||||
}
|
||||
|
||||
#inbox #searchbox input[type="text"] {
|
||||
#inbox #searchbox input[type="text"],
|
||||
#inbox #searchbox input[type="search"] {
|
||||
margin-top: 10px;
|
||||
}
|
||||
|
||||
#manage_collage_table input[type="text"] {
|
||||
#manage_collage_table input[type="text"],
|
||||
#manage_collage_table input[type="search"] {
|
||||
width: 40px;
|
||||
}
|
||||
|
||||
|
@ -1125,3 +1125,7 @@ div.sidebar #event_div {
|
||||
#reportsv2 .manage_form img {
|
||||
max-width: 622px;
|
||||
}
|
||||
|
||||
input[type="search"] {
|
||||
font-size: 13px;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user