-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
viewer: Searching for models by name
- Loading branch information
Showing
4 changed files
with
213 additions
and
128 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,52 @@ | ||
.list-group { | ||
margin-left: 0; | ||
margin-bottom: 1rem; | ||
border: 1px solid #e6e6e6; | ||
border-radius: 0; | ||
background: #fefefe; | ||
box-shadow: none; | ||
overflow: hidden; | ||
color: #0a0a0a; | ||
} | ||
|
||
.list-group> :last-child { | ||
margin-bottom: 0; | ||
} | ||
|
||
.list-group-item { | ||
padding: 1rem; | ||
border-bottom: 1px solid #e6e6e6; | ||
} | ||
|
||
.list-group-item> :last-child { | ||
margin-bottom: 0; | ||
border-bottom: none; | ||
} | ||
|
||
.list-group-item.active { | ||
color: #fefefe; | ||
background-color: #1779ba; | ||
border-color: 1px solid #1779ba; | ||
} | ||
|
||
.list-group-item:hover, | ||
.list-group-item:focus { | ||
cursor: pointer; | ||
background-color: #e6e6e6; | ||
} | ||
|
||
.list-group-item:hover.active, | ||
.list-group-item:focus.active { | ||
background-color: #1779ba; | ||
} | ||
|
||
.list-group-item.disabled, | ||
.list-group-item.disabled:hover, | ||
.list-group-item.disabled:focus, | ||
.list-group-item[disabled], | ||
.list-group-item[disabled]:hover, | ||
.list-group-item[disabled]:focus { | ||
color: #8a8a8a; | ||
cursor: not-allowed; | ||
background-color: #fefefe; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,85 @@ | ||
@import '_settings'; | ||
@import 'foundation'; | ||
|
||
@include foundation-everything; | ||
// Global styles | ||
@include foundation-global-styles; | ||
@include foundation-forms; | ||
@include foundation-typography; | ||
|
||
// Grids (choose one) | ||
@include foundation-xy-grid-classes; | ||
// @include foundation-grid; | ||
// @include foundation-flex-grid; | ||
|
||
// Generic components | ||
@include foundation-button; | ||
@include foundation-button-group; | ||
@include foundation-close-button; | ||
@include foundation-label; | ||
@include foundation-progress-bar; | ||
@include foundation-slider; | ||
@include foundation-switch; | ||
@include foundation-table; | ||
// Basic components | ||
@include foundation-badge; | ||
@include foundation-breadcrumbs; | ||
@include foundation-callout; | ||
@include foundation-card; | ||
@include foundation-dropdown; | ||
@include foundation-pagination; | ||
@include foundation-tooltip; | ||
|
||
// Containers | ||
@include foundation-accordion; | ||
@include foundation-media-object; | ||
@include foundation-orbit; | ||
@include foundation-responsive-embed; | ||
@include foundation-tabs; | ||
@include foundation-thumbnail; | ||
// Menu-based containers | ||
@include foundation-menu; | ||
@include foundation-menu-icon; | ||
@include foundation-accordion-menu; | ||
@include foundation-drilldown-menu; | ||
@include foundation-dropdown-menu; | ||
|
||
// Layout components | ||
@include foundation-off-canvas; | ||
@include foundation-reveal; | ||
@include foundation-sticky; | ||
@include foundation-title-bar; | ||
@include foundation-top-bar; | ||
|
||
// Helpers | ||
@include foundation-float-classes; | ||
// @include foundation-flex-classes; | ||
@include foundation-visibility-classes; | ||
// @include foundation-prototype-classes; | ||
|
||
// ---- | ||
|
||
@import '_list-group'; | ||
|
||
canvas { | ||
image-rendering: pixelated; | ||
touch-action: none; | ||
-webkit-touch-callout: none; | ||
-webkit-user-select: none; | ||
-khtml-user-select: none; | ||
-moz-user-select: none; | ||
-ms-user-select: none; | ||
user-select: none; | ||
outline: none; | ||
-webkit-tap-highlight-color: rgba(255, 255, 255, 0); | ||
z-index: -1; | ||
} | ||
|
||
#leftPanel { | ||
height: 334px; | ||
overflow: auto; | ||
} | ||
|
||
#rightPanel { | ||
height: 334px; | ||
overflow: auto; | ||
} |