aboutsummaryrefslogtreecommitdiff
path: root/src/web/static/css/one-page-app.css
diff options
context:
space:
mode:
Diffstat (limited to 'src/web/static/css/one-page-app.css')
-rw-r--r--src/web/static/css/one-page-app.css167
1 files changed, 167 insertions, 0 deletions
diff --git a/src/web/static/css/one-page-app.css b/src/web/static/css/one-page-app.css
new file mode 100644
index 00000000..ffad209e
--- /dev/null
+++ b/src/web/static/css/one-page-app.css
@@ -0,0 +1,167 @@
+#jarr-container {
+ padding-left: 0px;
+ padding-right: 0px;
+}
+#menu {
+ position: fixed;
+ top: 50px;
+ bottom: 0px;
+ left: 0px;
+ z-index: 1000;
+ display: block;
+ padding: 10px;
+ overflow-x: hidden;
+ overflow-y: auto;
+ background-color: #F5F5F5;
+ border-right: 1px solid #EEE;
+ color: #555;
+}
+#menu div.nav.btn-group {
+ margin-bottom: 10px;
+}
+#menu li {
+ padding: 2px;
+ cursor: pointer;
+ border-radius: 6px;
+}
+#menu li.nav-feed {
+ margin-left: 15px;
+ margin-bottom: 3px;
+ max-height: 22px;
+ overflow: hidden;
+}
+#menu li.nav-feed > span.badge {
+ top: 2px;
+ position: absolute;
+ right: 2px;
+}
+#menu li.nav-feed > span.title {
+ margin-left: 3px;
+}
+#menu li.bg-primary.bg-danger {
+ color: #fff;
+ background-color: orangered;
+}
+#menu li.bg-primary.bg-warning {
+ color: #fff;
+ background-color: gold;
+}
+#menu li:hover {
+ color: #000;
+ background-color: #e8e8e8;
+}
+#menu li.bg-primary:hover {
+ color: #fff;
+ background-color: #62a9e6;
+}
+#menu li.bg-warning:hover {
+ background-color: #f3f0da;
+}
+#menu li.bg-danger:hover {
+ background-color: #f6cab6;
+}
+#menu li > h4 {
+ padding-left: 5px;
+ margin: 2px;
+ display: inline;
+}
+#middle-panel {
+ padding-left: 20px;
+ padding-top: 10px;
+ padding-right: 20px;
+ position: fixed;
+ top: 50px;
+ bottom: 0px;
+ left: 0px;
+ z-index: 1000;
+ display: block;
+ overflow-x: hidden;
+ overflow-y: auto;
+ background-color: #F5F5F5;
+ border-right: 1px solid #EEE;
+}
+#middle-panel .btn-group,
+#menu .btn-group {
+ margin-right: 10px;
+ margin-bottom: 10px;
+}
+#middle-panel .btn-group:last-child,
+#menu .btn-group:last-child {
+ margin-right: 0px;
+ float: right;
+}
+#middle-panel .input-group {
+ margin-bottom: 10px;
+}
+#middle-panel div.list-group-item{
+ padding: 5px 8px;
+ cursor: pointer;
+}
+#middle-panel div.list-group-item:hover {
+ background-color: #f0f0f0;
+}
+#middle-panel div.list-group-item.active a {
+ color: #eee;
+}
+#middle-panel div.list-group-item.active:hover {
+ background-color: #4d94d1;
+ border-color: #4d94d1;
+}
+#middle-panel div.list-group-item:hover {
+ background-color: #f0f0f0;
+}
+#middle-panel div.list-group-item>h5 {
+ margin: 0px;
+}
+#middle-panel div.list-group-item>div:last-child{
+ width: 100%;
+ max-height: 22px;
+ overflow: hidden;
+}
+#middle-panel div.list-group-item>time {
+ position: absolute;
+ top: 2px;
+ right: 4px;
+}
+#right-panel {
+ top: 50px;
+}
+#rp-breadcrum{
+ margin-top: 10px;
+ max-height: 34px;
+ overflow: hidden;
+ padding-top: 2px;
+}
+#rp-breadcrum>li{
+ display: inline;
+ line-height: 30px;
+}
+#right-panel .panel-body img {
+ max-width: 100%;
+}
+#right-panel-heading * {
+ display: inline;
+}
+#right-panel-heading h4 img {
+ margin-right: 5px;
+}
+#right-panel-heading div.btn-group {
+ float: right;
+ margin-top: -5px;
+ margin-right: -8px;
+}
+.panel-body dd>input {
+ width: 100%;
+}
+.filter-row>select.form-control:first-child {
+ width: 10%;
+}
+.filter-row>select.form-control {
+ width: 15%;
+}
+.filter-row>select.form-control:last-child {
+ width: 25%;
+}
+.filter-row>input.form-control {
+ width: auto;
+}
bgstack15