Skip to content

Commit

Permalink
Updated css files
Browse files Browse the repository at this point in the history
  • Loading branch information
Wolfgang Kulhanek authored and Wolfgang Kulhanek committed Dec 7, 2023
1 parent 7f62a37 commit b47a3ad
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 2 deletions.
12 changes: 10 additions & 2 deletions charts/showroom-single-pod/files/split.css
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,13 @@
box-sizing: border-box;
height:100%;
}

body {
margin: 0;
height:100%;
/* font-size: 26px;*/
}

.content {
width: 100%;
height: 100%;
Expand All @@ -17,19 +19,23 @@ body {
border-top: 1px solid;
border-color: Gainsboro;
border-top-width: thin;
margin-top: 8px;
margin-top: 0px;
}

.split {
width:100%;
height:100%;
padding: 5px;
}

.left {
height: 100%
}

.right {
height: 95%;
height: 100%
}

.gutter {
/* cursor: e-resize; */
/* background: grey; */
Expand All @@ -38,6 +44,7 @@ body {
background-repeat: no-repeat;
background-position: 50%;
}

.gutter.gutter-horizontal {
background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAUAAAAeCAYAAADkftS9AAAAIklEQVQoU2M4c+bMfxAGAgYYmwGrIIiDjrELjpo5aiZeMwF+yNnOs5KSvgAAAABJRU5ErkJggg==');
cursor: col-resize;
Expand All @@ -46,3 +53,4 @@ body {
background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAB4AAAAFAQMAAABo7865AAAABlBMVEVHcEzMzMzyAv2sAAAAAXRSTlMAQObYZgAAABBJREFUeF5jOAMEEAIEEFwAn3kMwcB6I2AAAAAASUVORK5CYII=');
cursor: row-resize;
}

12 changes: 12 additions & 0 deletions charts/showroom-single-pod/files/tabs.css
Original file line number Diff line number Diff line change
@@ -1,11 +1,14 @@
/* Style the tab */

.tab {
overflow: hidden;
border: 1px solid #ccc;
background-color: #f1f1f1;
height: 50px;
}

/* Style the buttons that are used to open the tab content */

.tab button {
background-color: inherit;
float: left;
Expand All @@ -15,18 +18,27 @@
padding: 14px 16px;
transition: 0.3s;
}

/* Change background color of buttons on hover */

.tab button:hover {
background-color: #ddd;
}

/* Create an active/current tablink class */

.tab button.active {
background-color: #ccc;
}

/* Style the tab content */

.tabcontent {
display: none;
padding: 6px 12px;
border: 1px solid #ccc;
border-top: none;
/* 100% - height of the tab above */
height: calc(100% - 50px);
}

0 comments on commit b47a3ad

Please sign in to comment.