1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-08-13 20:24:08 +02:00

[ticket/14193]Fix posting buttons

PHPBB3-14193
This commit is contained in:
Michael Miday
2015-10-03 05:15:16 +02:00
parent 8451272d69
commit 6b7fa249f1
17 changed files with 104 additions and 76 deletions

View File

@@ -907,17 +907,17 @@ li.breadcrumbs span:first-child > a {
padding: 3px;
}
.rtl .search-box .button {
.rtl .button-search,
.button-search-end {
float: right;
}
.rtl .search-box a.button {
.button-search-end {
border-left-width: 1px;
border-right-width: 0;
border-radius: 4px 0 0 4px;
}
.rtl .search-header a.button {
.rtl .search-header .button-search-end {
border: 0;
}

View File

@@ -37,6 +37,37 @@
vertical-align: top;
}
/* Posting page styles
----------------------------------------*/
.button-search,
.button-search-end {
float: left;
border-radius: 0;
margin: 0;
padding: 2px 5px;
}
.button-search-end {
border-left-width: 0;
border-radius: 0 4px 4px 0;
}
.search-header .button-search,
.search-header .button-search-end {
border-top-width: 0;
border-bottom-width: 0;
padding: 3px 5px;
}
.search-header .button-search-end {
border-right-width: 0;
}
.button-icon-only {
padding-left: 3px;
padding-right: 3px;
}
/* Poster contact icons
----------------------------------------*/
.contact-icons.dropdown-contents {

View File

@@ -615,13 +615,22 @@ Colours and backgrounds for buttons.css
text-shadow: 1px 1px 0 #FFFFFF, -1px -1px 0 #FFFFFF, -1px -1px 0 rgba(188, 42, 77, 0.2);
}
.button i {
.button .icon,
.button-secondary {
color: #8f8f8f;
}
.button:focus i,
.button:hover i {
color: #1878cb;
.button-secondary:focus,
.button-secondary:hover,
.button:focus .icon,
.button:hover .icon {
color: #0A8ED0;
}
.button-search:hover,
.button-search-end:hover {
border-color: #C7C3BF;
}
.caret { border-color: #DADADA; }
@@ -683,9 +692,7 @@ Colours and backgrounds for buttons.css
.search-box .inputbox,
.search-box .inputbox:hover,
.search-box .inputbox:focus,
.search-box .button:focus,
.search-box .button:hover {
.search-box .inputbox:focus {
border-color: #C7C3BF;
}

View File

@@ -803,6 +803,10 @@ fieldset.fields1 dl.pmlist dd.recipients {
float: left;
}
.action-bar .button-search {
margin-right: 0;
}
/* Pagination
---------------------------------------- */
.pagination {

View File

@@ -142,6 +142,12 @@ dd textarea {
width: 95%;
}
/* Browser-specific tweaks */
button::-moz-focus-inner {
padding: 0;
border: 0
}
/* Quick-login on index page */
fieldset.quick-login {
margin-top: 5px;
@@ -378,22 +384,6 @@ input.button1:focus, input.button2:focus, input.button3:focus {
box-sizing: border-box;
}
.search-box .button {
float: left;
border-radius: 0;
margin: 0;
padding: 2px 5px;
}
.search-box a.button {
border-left-width: 0;
border-radius: 0 4px 4px 0;
}
.search-box .button span {
font-size: 0;
}
/* Search box (header)
--------------------------------------------- */
.search-header {
@@ -406,12 +396,6 @@ input.button1:focus, input.button2:focus, input.button3:focus {
.search-header .inputbox { border: 0; }
.search-header .button {
border-top-width: 0;
border-bottom-width: 0;
padding: 3px 5px;
}
.navbar .linklist > li.responsive-search { display: none; }
input.search {