Skip to content

Commit

Permalink
Correct CSS for floating windows
Browse files Browse the repository at this point in the history
This uses the v-prefixed CSS class selectors for the floating window
components (v-card elements).
  • Loading branch information
chrismayer committed Aug 6, 2018
1 parent a7a0606 commit ddaf5d9
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 8 deletions.
2 changes: 1 addition & 1 deletion src/components/helpwin/HelpWin.vue
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@
z-index: 2;
}
.wgu-helpwin.card {
.wgu-helpwin {
position: absolute;
}
Expand Down
4 changes: 2 additions & 2 deletions src/components/infoclick/InfoClickWin.vue
Original file line number Diff line number Diff line change
Expand Up @@ -151,11 +151,11 @@ export default {
z-index: 2;
}
.wgu-infoclick-win.card {
.wgu-infoclick-win {
position: absolute;
}
.wgu-infoclick-win .card__title {
.wgu-infoclick-win .v-card__title {
display: inherit;
}
Expand Down
7 changes: 3 additions & 4 deletions src/components/layerlist/LayerList.vue
Original file line number Diff line number Diff line change
Expand Up @@ -140,20 +140,19 @@
background-color: white;
z-index: 2;
}
.wgu-layerlist.card {
.wgu-layerlist {
position: absolute;
}
.wgu-layerlist-item a.list__tile {
.wgu-layerlist-item a.v-list__tile {
padding-left: 0;
}
.wgu-layer-viz-cb {
width: 45px;
}
.wgu-layerlist.card .list__group__header {
border: 1px solid red;
.wgu-layerlist .v-list__group__header {
display: none;
}
Expand Down
2 changes: 1 addition & 1 deletion src/components/measuretool/MeasureWin.vue
Original file line number Diff line number Diff line change
Expand Up @@ -243,7 +243,7 @@
z-index: 2;
}
.wgu-measurewin.card {
.wgu-measurewin {
position: absolute;
}
Expand Down

0 comments on commit ddaf5d9

Please sign in to comment.