mirror of
https://github.com/Radarr/Radarr.git
synced 2024-11-04 10:02:40 +01:00
Moved Grid altering CSS to its own file, used for Series/Details, missing, upcoming and histtory grids.
This commit is contained in:
parent
9714a96437
commit
fd205d3d57
40
NzbDrone.Web/Content/Grid.css
Normal file
40
NzbDrone.Web/Content/Grid.css
Normal file
@ -0,0 +1,40 @@
|
||||
.statusImage, .searchImage, .renameImage, .ignoreEpisode, .ignoreEpisodesMaster
|
||||
{
|
||||
width: 18px;
|
||||
height: 18px;
|
||||
padding: 1px;
|
||||
margin: 2px;
|
||||
border-width: 1px;
|
||||
border-style: dashed;
|
||||
border-color: lightgray;
|
||||
}
|
||||
|
||||
.searchImage:hover, .renameImage:hover, .ignoreEpisode:hover, .ignoreEpisodesMaster:hover
|
||||
{
|
||||
background-color: #065EFE;
|
||||
}
|
||||
|
||||
.t-grid td
|
||||
{
|
||||
line-height: 0.6em;
|
||||
}
|
||||
|
||||
.t-grid .t-header
|
||||
{
|
||||
line-height: 1.8em;
|
||||
}
|
||||
|
||||
.t-grid-header .t-header .t-link
|
||||
{
|
||||
padding: 0.3em 0.9em 1.0em 0.6em;
|
||||
}
|
||||
|
||||
.t-grid .t-detail-cell
|
||||
{
|
||||
line-height: 1.5em;
|
||||
}
|
||||
|
||||
.t-grid td
|
||||
{
|
||||
padding: 0em 0.6em;
|
||||
}
|
@ -329,6 +329,7 @@
|
||||
<Content Include="Content\2011.2.712\Windows7\slider-v.gif" />
|
||||
<Content Include="Content\2011.2.712\Windows7\sprite-vertical.png" />
|
||||
<Content Include="Content\2011.2.712\Windows7\sprite.png" />
|
||||
<Content Include="Content\Grid.css" />
|
||||
<Content Include="Content\Images\close.png" />
|
||||
<Content Include="Content\Images\Downloading.png" />
|
||||
<Content Include="Content\Images\error.png" />
|
||||
|
@ -10,23 +10,7 @@ History
|
||||
</ul>
|
||||
}
|
||||
|
||||
<style>
|
||||
.searchImage
|
||||
{
|
||||
width: 18px;
|
||||
height: 18px;
|
||||
padding: 1px;
|
||||
margin: 2px;
|
||||
@*border-width: 1px;
|
||||
border-style: dashed;
|
||||
border-color: lightgray;*@
|
||||
}
|
||||
|
||||
.searchImage:hover
|
||||
{
|
||||
background-color: #065EFE;
|
||||
}
|
||||
</style>
|
||||
<link href="../../Content/Grid.css" rel="stylesheet" type="text/css" />
|
||||
|
||||
@section MainContent{
|
||||
<div class="grid-container">
|
||||
|
@ -5,20 +5,7 @@
|
||||
Missing
|
||||
}
|
||||
|
||||
<style>
|
||||
.searchImage
|
||||
{
|
||||
width: 18px;
|
||||
height: 18px;
|
||||
padding: 1px;
|
||||
margin: 2px;
|
||||
}
|
||||
|
||||
.searchImage:hover
|
||||
{
|
||||
background-color: #065EFE;
|
||||
}
|
||||
</style>
|
||||
<link href="../../Content/Grid.css" rel="stylesheet" type="text/css" />
|
||||
|
||||
@section MainContent{
|
||||
@{Html.Telerik().Grid<MissingEpisodeModel>().Name("missing")
|
||||
|
@ -5,6 +5,7 @@
|
||||
}
|
||||
|
||||
<script src="../../Scripts/seriesDetails.js" type="text/javascript"></script>
|
||||
<link href="../../Content/Grid.css" rel="stylesheet" type="text/css" />
|
||||
|
||||
<style>
|
||||
.seasonToggleTopGroup
|
||||
@ -54,31 +55,6 @@
|
||||
background-color: #065EFE;
|
||||
}
|
||||
|
||||
.t-grid td
|
||||
{
|
||||
line-height: 0.6em;
|
||||
}
|
||||
|
||||
.t-grid .t-header
|
||||
{
|
||||
line-height: 1.8em;
|
||||
}
|
||||
|
||||
.t-grid-header .t-header .t-link
|
||||
{
|
||||
padding: 0.3em 0.9em 1.0em 0.6em;
|
||||
}
|
||||
|
||||
.t-grid .t-detail-cell
|
||||
{
|
||||
line-height: 1.5em;
|
||||
}
|
||||
|
||||
.t-grid td
|
||||
{
|
||||
padding: 0 0.6em;
|
||||
}
|
||||
|
||||
#banner-container
|
||||
{
|
||||
width: 758px;
|
||||
|
@ -4,48 +4,7 @@
|
||||
Upcoming
|
||||
}
|
||||
|
||||
<style>
|
||||
.statusImage, .searchImage, .renameImage, .ignoreEpisode, .ignoreEpisodesMaster
|
||||
{
|
||||
width: 18px;
|
||||
height: 18px;
|
||||
padding: 1px;
|
||||
margin: 2px;
|
||||
border-width: 1px;
|
||||
border-style: dashed;
|
||||
border-color: lightgray;
|
||||
}
|
||||
|
||||
.searchImage:hover, .renameImage:hover, .ignoreEpisode:hover, .ignoreEpisodesMaster:hover
|
||||
{
|
||||
background-color: #065EFE;
|
||||
}
|
||||
|
||||
.t-grid td
|
||||
{
|
||||
line-height: 0.6em;
|
||||
}
|
||||
|
||||
.t-grid .t-header
|
||||
{
|
||||
line-height: 1.8em;
|
||||
}
|
||||
|
||||
.t-grid-header .t-header .t-link
|
||||
{
|
||||
padding: 0.3em 0.9em 1.0em 0.6em;
|
||||
}
|
||||
|
||||
.t-grid .t-detail-cell
|
||||
{
|
||||
line-height: 1.5em;
|
||||
}
|
||||
|
||||
.t-grid td
|
||||
{
|
||||
padding: 0 0.6em;
|
||||
}
|
||||
</style>
|
||||
<link href="../../Content/Grid.css" rel="stylesheet" type="text/css" />
|
||||
|
||||
@section ActionMenu{
|
||||
<ul class="sub-menu">
|
||||
|
Loading…
Reference in New Issue
Block a user