forked from JeremyHeleine/Photo-Sphere-Viewer
-
-
Notifications
You must be signed in to change notification settings - Fork 693
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
- Loading branch information
Showing
11 changed files
with
198 additions
and
198 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,82 @@ | ||
// scss-lint:disable ColorVariable | ||
$psv-main-background: radial-gradient(#ffffff, #fdfdfd 16%, #fbfbfb 33%, #f8f8f8 49%, #efefef 66%, #dfdfdf 82%, #bfbfbf 100%) !default !default; | ||
|
||
$psv-loader-color: rgba(61, 61, 61, .7) !default !default; | ||
$psv-loader-width: 150px !default !default; | ||
$psv-loader-tickness: 10px !default !default; | ||
$psv-loader-font: 14px sans-serif !default !default; | ||
|
||
$psv-navbar-height: 40px !default !default; | ||
$psv-navbar-background: rgba(61, 61, 61, .5) !default !default; | ||
|
||
$psv-caption-font: sans-serif !default !default; | ||
$psv-caption-color: rgba(255, 255, 255, .7) !default; | ||
|
||
$psv-buttons-height: 20px !default; | ||
$psv-buttons-padding: 10px !default; | ||
$psv-buttons-background: transparent !default; | ||
$psv-buttons-active-background: rgba(255, 255, 255, .1) !default; | ||
$psv-buttons-color: rgba(255, 255, 255, .7) !default; | ||
$psv-buttons-disabled-opacity: .5 !default; | ||
|
||
$psv-zoom-range-width: 80px !default; | ||
$psv-zoom-range-tickness: 1px !default; | ||
$psv-zoom-disk-diameter: 7px !default; | ||
$psv-zoom-buttons-width: 16px !default; | ||
|
||
$psv-tooltip-background-color: rgba(61, 61, 61, .8) !default; | ||
|
||
// set tooltip.offset JS config to the same value | ||
$psv-tooltip-animate-offset: 5px !default; | ||
// set tooltip.delay JS config to the same value | ||
$psv-tooltip-animate-delay: .1s !default; | ||
$psv-tooltip-radius: 4px !default; | ||
$psv-tooltip-padding: .5em 1em !default; | ||
// set tooltip.arrow_size JS config to the same value | ||
$psv-tooltip-arrow-size: 7px !default; | ||
$psv-tooltip-max-width: 200px !default; | ||
|
||
$psv-tooltip-text-color: rgb(255, 255, 255) !default; | ||
$psv-tooltip-font: 14px sans-serif !default; | ||
$psv-tooltip-text-shadow: 0 1px #000000 !default; | ||
|
||
$psv-tooltip-shadow-color: rgba(90, 90, 90, .7) !default; | ||
// the shadow is always at the opposite side of the arrow | ||
$psv-tooltip-shadow-offset: 3px !default; | ||
|
||
$psv-panel-background: rgba(10, 10, 10, .7) !default; | ||
$psv-panel-text-color: rgb(220, 220, 220) !default; | ||
|
||
$psv-panel-width: 400px !default; | ||
$psv-panel-padding: 1em !default; | ||
|
||
// must be odd | ||
$psv-panel-resizer-width: 9px !default; | ||
$psv-panel-resizer-background: rgba(0, 0, 0, .9) !default; | ||
$psv-panel-resizer-grip-color: #ffffff !default; | ||
// must be odd | ||
$psv-panel-resizer-grip-height: 29px !default; | ||
$psv-panel-close-button-width: 24px !default; | ||
$psv-panel-close-button-background: $psv-panel-resizer-background !default; | ||
$psv-panel-close-button-color: #ffffff !default; | ||
|
||
$psv-panel-font: 16px sans-serif !default; | ||
|
||
$psv-markers-list-image-size: 20px !default; | ||
$psv-markers-list-padding: .5em 1em !default; | ||
$psv-markers-list-hover-translation: 10px !default; | ||
|
||
$psv-markers-list-odd-background: rgba(255, 255, 255, .1) !default; | ||
$psv-markers-list-even-background: transparent !default; | ||
|
||
$psv-markers-list-title-shadow: 2px 1px #000000 !default; | ||
$psv-markers-list-title-font: 24px sans-serif !default; | ||
|
||
$psv-canvas-zindex: 0 !default; | ||
$psv-hud-zindex: 10 !default; | ||
$psv-polygon-marker-zindex: 20 !default; | ||
$psv-marker-zindex: 30 !default; | ||
$psv-tooltip-zindex: 50 !default; | ||
$psv-panel-zindex: 90 !default; | ||
$psv-navbar-zindex: 90 !default; | ||
$psv-loader-zindex: 100 !default; |
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,5 +1,5 @@ | ||
.psv-navbar .autorotate-button { | ||
width: #{$buttons-height + $buttons-padding / 2}; | ||
height: #{$buttons-height + $buttons-padding / 2}; | ||
padding: #{$buttons-padding / 4 * 3}; | ||
width: #{$psv-buttons-height + $psv-buttons-padding / 2}; | ||
height: #{$psv-buttons-height + $psv-buttons-padding / 2}; | ||
padding: #{$psv-buttons-padding / 4 * 3}; | ||
} |
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
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
Oops, something went wrong.