mirror of
https://github.com/jellyfin/jellyfin-web.git
synced 2024-11-17 10:58:20 -07:00
search box style
This commit is contained in:
parent
cba380b0e5
commit
fa6759085b
BIN
dashboard-ui/css/images/searchbutton.png
Normal file
BIN
dashboard-ui/css/images/searchbutton.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 922 B |
@ -28,10 +28,6 @@
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
.type-home {
|
||||
background: #494949 url(images/bgflip.png) repeat-x!important;
|
||||
}
|
||||
|
||||
.listHeader {
|
||||
margin-top: .5em;
|
||||
margin-bottom: 5px;
|
||||
@ -82,10 +78,6 @@
|
||||
}
|
||||
|
||||
@media all and (min-width: 1000px) {
|
||||
/*.libraryPage:not(.folderListPage) > .ui-content, .libraryPage:not(.folderListPage) > .ui-panel-content-wrap {
|
||||
margin-top: -35px!important;
|
||||
}*/
|
||||
|
||||
.detailPageContent {
|
||||
width: 90%;
|
||||
margin: 0 auto;
|
||||
@ -94,10 +86,6 @@
|
||||
|
||||
@media all and (min-width: 1200px) {
|
||||
|
||||
.libraryPage .ui-content {
|
||||
padding-top: 0;
|
||||
}
|
||||
|
||||
.ehsContent {
|
||||
max-width: 850px;
|
||||
}
|
||||
|
@ -130,10 +130,47 @@ pre, textarea.pre {
|
||||
margin-right: 2em;
|
||||
}
|
||||
|
||||
.headerSearch input {
|
||||
width: 200px;
|
||||
vertical-align: middle;
|
||||
}
|
||||
.txtSearch {
|
||||
width: 150px;
|
||||
vertical-align: middle;
|
||||
font: 16px arial,sans-serif;
|
||||
height: 23px;
|
||||
line-height: 23px;
|
||||
margin: 0 .15em 0 0;
|
||||
}
|
||||
|
||||
.btnSearch {
|
||||
vertical-align: middle;
|
||||
background-color: #4d90fe;
|
||||
background-image: -webkit-gradient(linear,left top,left bottom,from(#4d90fe),to(#4787ed));
|
||||
background-image: -webkit-linear-gradient(top,#4d90fe,#4787ed);
|
||||
background-image: -moz-linear-gradient(top,#4d90fe,#4787ed);
|
||||
background-image: -ms-linear-gradient(top,#4d90fe,#4787ed);
|
||||
background-image: -o-linear-gradient(top,#4d90fe,#4787ed);
|
||||
background-image: linear-gradient(top,#4d90fe,#4787ed);
|
||||
border: 1px solid #3079ed;
|
||||
color: #fff!important;
|
||||
margin: 0 0;
|
||||
-moz-border-radius: 2px;
|
||||
-webkit-border-radius: 2px;
|
||||
border-radius: 2px;
|
||||
font-weight: bold;
|
||||
height: 29px;
|
||||
line-height: 29px;
|
||||
min-width: 54px;
|
||||
padding: 0 8px;
|
||||
text-align: center;
|
||||
text-decoration: none !important;
|
||||
-moz-user-select: none;
|
||||
-webkit-user-select: none;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.btnSearch img {
|
||||
height: 29px;
|
||||
margin: 0 auto;
|
||||
border: 0;
|
||||
}
|
||||
|
||||
.header .imageLink {
|
||||
display: inline-block;
|
||||
@ -283,11 +320,6 @@ form, .readOnlyContent {
|
||||
height: 50px;
|
||||
}
|
||||
|
||||
.imgLogoText {
|
||||
height: 50px;
|
||||
display: inline;
|
||||
}
|
||||
|
||||
.imageLink.supporter {
|
||||
display: inline-block;
|
||||
}
|
||||
@ -334,6 +366,15 @@ form, .readOnlyContent {
|
||||
|
||||
@media all and (min-width: 750px) {
|
||||
|
||||
.txtSearch {
|
||||
width: 200px;
|
||||
}
|
||||
|
||||
.imgLogoText {
|
||||
height: 50px;
|
||||
display: inline;
|
||||
}
|
||||
|
||||
.content-secondary {
|
||||
width: 34%;
|
||||
}
|
||||
@ -343,6 +384,13 @@ form, .readOnlyContent {
|
||||
}
|
||||
}
|
||||
|
||||
@media all and (min-width: 850px) {
|
||||
.txtSearch {
|
||||
width: 250px;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
@media all and (min-width: 1200px) {
|
||||
|
||||
|
||||
|
@ -744,7 +744,11 @@ var Dashboard = {
|
||||
|
||||
var html = '<div class="headerSearch"><form id="searchForm" name="searchForm">';
|
||||
|
||||
html += '<input type="text" />';
|
||||
html += '<input class="txtSearch" type="text" />';
|
||||
|
||||
html += '<button class="btnSearch" type="submit">';
|
||||
html += '<img src="css/images/searchbutton.png" />';
|
||||
html += '</button>';
|
||||
|
||||
html += '</form></div>';
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user