Skip to content

Commit

Permalink
CI run 157 pushed to gh-pages
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions committed Mar 7, 2024
1 parent 938d6d3 commit f688701
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 28 deletions.
32 changes: 16 additions & 16 deletions demo/trunk/css/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ body {
color: #000;
}

#dwv {
.dwv {
height: 80%;
}

Expand Down Expand Up @@ -52,13 +52,13 @@ body {
}

/* toolbar */
#toolbar {
.toolbar {
font: 14px arial, sans-serif;
margin-bottom: 5px;
display: flex;
justify-content: center;
}
#toolbar button, select {
.toolbar button, select {
margin: 10px 3px;
padding: 10px 10px;
border-radius: 4px;
Expand All @@ -69,24 +69,24 @@ body {
background-color: #fff;
color: #757575;
}
#toolbar button:enabled:hover, select:enabled:hover {
.toolbar button:enabled:hover, select:enabled:hover {
background-color: #f5f5f5;
cursor: pointer;
}
#toolbar button:disabled, select:disabled {
.toolbar button:disabled, select:disabled {
color: #bdbdbd;
cursor: default;
}
#toolbar .active {
.toolbar .active {
background-color: #f0f1f9 !important;
}
#toolbar button:enabled path {
.toolbar button:enabled path {
fill: #757575;
}
#toolbar button.active:enabled path {
.toolbar button.active:enabled path {
fill: #4a5bb9;
}
#toolbar button:disabled path {
.toolbar button:disabled path {
fill: #bdbdbd;
}

Expand All @@ -98,27 +98,27 @@ body {
.legend a {
color: #ccc;
}
#toolbar button, select {
.toolbar button, select {
border: 1px solid #2f2f2f;
background-color: #fff;
}
#toolbar button, select {
.toolbar button, select {
color: #fff;
background-color: #333;
}
#toolbar button:enabled:hover, select:enabled:hover {
.toolbar button:enabled:hover, select:enabled:hover {
background-color: #555;
}
#toolbar button:disabled, select:disabled {
.toolbar button:disabled, select:disabled {
color: #aeaeae;
}
#toolbar .active {
.toolbar .active {
background-color: #404040 !important;
}
#toolbar button:enabled path {
.toolbar button:enabled path {
fill: #fff;
}
#toolbar button:disabled path {
.toolbar button:disabled path {
fill: #aeaeae;
}
}
24 changes: 12 additions & 12 deletions demo/trunk/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -49,21 +49,21 @@

<body>

<!-- Toolbar -->
<div id="toolbar"></div>

<!-- DWV -->
<div id="dwv">
<div id="dwv-simpl0" class="dwv">

<!-- Toolbar -->
<div id="toolbar-simpl0" class="toolbar"></div>

<!-- Layer Container -->
<div id="layerGroup0" class="layerGroup">
<div id="dropBox"></div>
</div>
<!-- Layer Container -->
<div id="layerGroup-simpl0" class="layerGroup">
<div id="dropBox"></div>
</div>

<div id="legend" class="legend"><p>Powered by <a
href="https://github.com/ivmartel/dwv"
title="dwv on github">dwv</a> <span id="dwvVersion"></span>.</p>
</div>
<div id="legend" class="legend"><p>Powered by <a
href="https://github.com/ivmartel/dwv"
title="dwv on github">dwv</a> <span id="dwvVersion"></span>.</p>
</div>

</div><!-- /dwv -->

Expand Down

0 comments on commit f688701

Please sign in to comment.