From 37f466705af01f1da8d2dd9ceac5f38dc0ee58e5 Mon Sep 17 00:00:00 2001 From: Charles Hacskaylo Date: Mon, 2 Nov 2015 18:22:13 -0800 Subject: [PATCH 01/88] [Frontend] IN-PROGRESS stubbing in files ported from /warp open #208 Moving files from /warp; stuff will NOT compile at this point; --- platform/features/timeline/style/bundle.json | 12 + platform/features/timeline/style/config.rb | 26 ++ .../timeline/style/sass/_activities.scss | 103 +++++ .../timeline/style/sass/_constants.scss | 56 +++ .../timeline/style/sass/_timelines.scss | 401 ++++++++++++++++++ .../style/sass/timeline-espresso.scss | 11 + .../features/timeline/style/timeline-sass.sh | 15 + 7 files changed, 624 insertions(+) create mode 100644 platform/features/timeline/style/bundle.json create mode 100755 platform/features/timeline/style/config.rb create mode 100644 platform/features/timeline/style/sass/_activities.scss create mode 100644 platform/features/timeline/style/sass/_constants.scss create mode 100644 platform/features/timeline/style/sass/_timelines.scss create mode 100644 platform/features/timeline/style/sass/timeline-espresso.scss create mode 100644 platform/features/timeline/style/timeline-sass.sh diff --git a/platform/features/timeline/style/bundle.json b/platform/features/timeline/style/bundle.json new file mode 100644 index 0000000000..d0fb8a9f95 --- /dev/null +++ b/platform/features/timeline/style/bundle.json @@ -0,0 +1,12 @@ +{ + "name": "Timeline Styling", + "description": "CSS for Timelines. Ported from /warp", + "extensions": { + "stylesheets": [ + { + "stylesheetUrl": "css/timeline.css", + "priority": "10" + } + ] + } +} diff --git a/platform/features/timeline/style/config.rb b/platform/features/timeline/style/config.rb new file mode 100755 index 0000000000..a5def82481 --- /dev/null +++ b/platform/features/timeline/style/config.rb @@ -0,0 +1,26 @@ +# Require any additional compass plugins here. +# require "compass-growl" + +# Set this to the root of your project when deployed: +http_path = "/" +css_dir = "css" +sass_dir = "sass" +images_dir = "images" +javascripts_dir = "js" + +# You can select your preferred output style here (can be overridden via the command line): +# :expanded, :compressed, :nested +output_style = :nested + +# To enable relative paths to assets via compass helper functions. Uncomment: +# relative_assets = true + +# To disable debugging comments that display the original location of your selectors. Uncomment: +# line_comments = false + + +# If you prefer the indented syntax, you might want to regenerate this +# project again passing --syntax sass, or you can uncomment this: +# preferred_syntax = :sass +# and then run: +# sass-convert -R --from scss --to sass vfn_platform/static/sass scss && rm -rf sass && mv scss sass diff --git a/platform/features/timeline/style/sass/_activities.scss b/platform/features/timeline/style/sass/_activities.scss new file mode 100644 index 0000000000..75f3a81072 --- /dev/null +++ b/platform/features/timeline/style/sass/_activities.scss @@ -0,0 +1,103 @@ +.l-timeline-gantt { + position: absolute; + top: $timelineSwimlaneGanttVM; bottom: $timelineSwimlaneGanttVM; + + .bar { + @include ellipsize(); + height: $activityBarH; + line-height: $activityBarH + 2; + padding: 0 $interiorMargin; + + span { + display: inline; + &.s-activity-type { + &.timeline { + &:before { + content:"S"; + } + } + &.activity { + &:before { + content:"A"; + } + } + } + &.s-title { + @include text-shadow(rgba(black, 0.1) 0 1px 2px); +// right: 5px; +// width: 50%; + } + &.duration { + left: auto; + opacity: 0.75; + right: 0; + text-align: right; + width: 60px; + } + &.handle { + //background: rgba(red, 0.2); + top: 0; + bottom: 0; + height: auto; + width: 15px; + &.left { + right: auto; + } + &.middle { + right: 15px; + left: 15px; + width: auto; + } + &.right { + right: 0; + left: auto; + } + } + } + } +} + +.s-timeline-gantt { + $br: $controlCr; + .bar { + color: $activityTypeFg; +// opacity: 0.9; +// @include background-image(linear-gradient(lighten($activityTypeBg, 10), $activityTypeBg)); + @include activityBg($activityTypeBg); + @include border-radius($br); + @include box-shadow(rgba(black, 0.4) 0 1px 3px); + &.expanded { + @include border-top-radius($br); + @include border-bottom-radius(0); + } + &.leaf { + @include border-top-radius(0); + @include border-bottom-radius($br); + } + .s-toggle { + color: $colorKey; + } + } +} + +.edit-mode .s-timeline-gantt { + .bar { + &:hover { + @include background-image(linear-gradient(lighten($activityTypeBg, 20), lighten($activityTypeBg, 10))); + } + } + + .handle { + cursor: col-resize; + &.start { +// @include test(red); + } + &.mid { +// @include test(green); + cursor: ew-resize; + } + &.end { +// @include test(blue); + } + } +} \ No newline at end of file diff --git a/platform/features/timeline/style/sass/_constants.scss b/platform/features/timeline/style/sass/_constants.scss new file mode 100644 index 0000000000..26bcd55eaf --- /dev/null +++ b/platform/features/timeline/style/sass/_constants.scss @@ -0,0 +1,56 @@ +$dirImgs: '../images/'; //Relative to warp.css +/*$interiorMargin: 5px; +$interiorMarginLg: $interiorMargin * 2; +$interiorMarginSm: 3px;*/ +$logoAspect: .17; + +// Timeline constants +$activityBarH: 17px; +$timelinePaneLeftW: 30%; +$timelinePaneBtmH: 30%; +$timelineResourceGraphYLabelsMargin: 70px; +$timelineTopPaneHeaderH: 30px; +$timelineHeaderColorBg: lighten($colorBodyBg, 5%); +$timelineColorAlt1: lighten($timelineHeaderColorBg, 10%); +$timelineSwimlaneGanttVM: 2px; // The vertical space above and below the gantt bars +$timelineSwimlaneH: $activityBarH + ($timelineSwimlaneGanttVM * 2); +$timelineTopPaneHeaderElemMargin: $interiorMargin; +$activityTypeFg: #fff; +$activityTypeBg: #5555aa; +$activityTypeTabularFgIcon: #8594ff; + + +// Swimlane colors +$colorDropTarg: rgba($activityTypeBg, 0.4); +$colorSwimlaneSelectedBg: #222; +$colorSwimlaneSelectedFg: #ccc; +$colorSwimlaneSelectedGanttBg: #ccc; +$colorSwimlaneSelectedGanttFg: #333; + +// Timeline Tabular constants +$timelineColIconW: 16px; +$timelineColResourcePlotW: $timelineColIconW; +$timelineColTitleW: 250px; +$timelineColDatetimeW: 110px; +$timelineColDurationW: 70px; +$timelineColActivityModesW: $timelineColTitleW; +$timelineColPadR: 50px; +$timelineTabularTitleW: $timelineColResourcePlotW + $timelineColTitleW; +$timelineTabularDataW: ($timelineColDatetimeW * 2) + $timelineColDurationW + $timelineColActivityModesW + $timelineColPadR; + + +// // Ported from legacy timelines SASS +$activitiesHolderM: 30px; +$scenarioTopPad: 25px; +$swimlaneVM: 2px; +$timelineVM: 10px; +$timelineBPad: $interiorMargin * 2; +$graphResourceSummaryH: 200px; +$graphResourceSummaryLegendH: 20px; +$scenarioTimelineSummaryH: 20px; +$scenarioTimelineSummaryHExpanded: $graphResourceSummaryH + 30px; +$scenarioPanZoomSliderH: 16px; +$scenarioTicksH: 7px; +$scenarioTickLabelsH: 10px; + + diff --git a/platform/features/timeline/style/sass/_timelines.scss b/platform/features/timeline/style/sass/_timelines.scss new file mode 100644 index 0000000000..bdb8211a3e --- /dev/null +++ b/platform/features/timeline/style/sass/_timelines.scss @@ -0,0 +1,401 @@ +//*************************************************************** LAYOUT +.l-timeline-holder { +// @include test(); + @include absPosDefault(); + + .l-timeline-pane { + @include absPosDefault(); + + .l-width-control { + position: relative; + } + + .l-swimlanes-holder { + @include absPosDefault(); + top: $timelineTopPaneHeaderH + 1; + } + + // Overall layout + &.t-pane-h { + &.s-timeline-tabular .t-pane-v { + // Vertical panes within tabular area + @include absPosDefault(); + &.l-tabular-l { + // Tree area with item title + right: auto; // Set this to auto and uncomment width below when additional tabular columns are added + width: $timelineTabularTitleW; + } + &.l-tabular-r { + // Start, end, duration, activity modes columns + @include scrollH(); + left: $timelineTabularTitleW; + .l-width { + @include absPosDefault(0, visible); + min-width: $timelineTabularDataW; + width: 100%; + } + } + } + &.l-timeline-gantt { +// @include testObj(); + + .l-swimlanes-holder { + @include scrollV(scroll); + } + + } + &.l-timeline-resource-legend { + @include box-sizing(border-box); + padding: $interiorMargin 0; + white-space: nowrap; + .l-title { + } + + .l-legend-items { + @include absPosDefault(); + @include scrollV(); + top: 25px; + color: lighten($timelineColorAlt1, 10%); +// margin-top: $interiorMargin; + } + .legend-item { + // Inherits from /platform/commonUI/general/res/sass/plots/_plots-main.scss +// border-bottom: 1px solid $colorInteriorBorder; + display: block; + margin-bottom: $interiorMarginSm; + overflow: hidden; + text-overflow: ellipsis; + white-space: nowrap; + .color-swatch { + vertical-align: baseline; + } + .title-label { + vertical-align: baseline; + } + } + } + + &.l-timeline-resource-graph { + $m: $interiorMargin; + + .l-graphs-holder { +// @include test(blue); + @include absPosDefault(); + bottom: $scrollbarTrackSize; + + .l-graphs { + @include absPosDefault(); + @include scrollV(scroll); + } + + .l-graph-labels-holder { +// @include test(red); + @include absPosDefault(); + overflow: hidden; + right: auto; + width: 400px; + } + } + + .l-scroll-control { + @include absPosDefault(); + overflow-x: scroll; + overflow-y: hidden; + top: auto; right: $scrollbarTrackSize; + height: $scrollbarTrackSize; + .l-width-control { + height: 10px; // Need to add height to force scrollbar to appear + } + } + + .l-graph, + .l-graph-labels { + height: 80px; //was 120px + margin-bottom: $interiorMarginSm; + position: relative; + } + + .l-title { + @include ellipsize(); + color: rgba(#fff, 0.4); + top: $m; left: $m; + position: absolute; + } + + .l-graph { + background: rgba(black, 0.3); + width: 100%; + .l-graph-area { + canvas { + width: 100%; + height: 100%; + } + } + } + + .l-graph-labels { + z-index: 10; + } + + .l-graph-area { + @include absPosDefault(); + top: 20px; bottom: 5px; + .l-labels-holder { + @include absPosDefault(); + left: $m; + .tick-label.tick-label-y { + text-align: left; + } + } + } + } + } + + &.l-pane-l { +// @include test(red); + right: auto; + min-width: 50px; + max-width: 90%; + width: $timelinePaneLeftW; + } + + &.l-pane-r { +// @include test(blue); + left: 0; + &:hover { + .l-hover-btns-holder { + @include trans-prop-nice-fade(100ms); + opacity: 1; + } + } + } + + &.l-pane-top { +// @include test(green); + bottom: $timelinePaneBtmH; + } + &.l-pane-btm { +// @include test(orange); + top: auto; + min-height: 20px; + max-height: 80%; + height: $timelinePaneBtmH; + } + } + + .l-swimlane { + height: $timelineSwimlaneH; + position: relative; + } + + // Header + .s-timeline-tabular .l-header, + .s-timeline-gantt .l-header { +// @include test(white,0.05); + @include absPosDefault(0, visible); + bottom: auto; height: $timelineTopPaneHeaderH; + + .l-header-elem { + @include absPosDefault($timelineTopPaneHeaderElemMargin, visible); +// bottom: auto; height: 15px; + display: block; + &.l-labels { + .l-label { + position: absolute; + width: 140px; + margin-left: -70px; + text-align: center; + } + } + } + } + + .l-hover-btns-holder { + @include absPosDefault(); + @include box-sizing(border-box); + @include trans-prop-nice-fade(500ms); + opacity: 0; + height: $timelineTopPaneHeaderH; + width: 100px; left: auto; + padding: $interiorMargin; + text-align: right; + z-index: 10; + } + + // Tabular Columns + .l-cols { +// @include test(#66ff66, 0.1); + @include absPosDefault(0, visible); + text-wrap: none; + white-space: nowrap; + .l-col { + @include box-sizing(border-box); + @include ellipsize(); +// @include test(red, 0.05); + display: inline-block; + height: 100%; + padding: 0 $interiorMargin; + position: relative; + text-wrap: none; + white-space: nowrap; + + &.l-col-icon { + width: $timelineColIconW; + text-align: center; + padding: 0; + .ui-symbol { + color: $colorKey; + } + } + + &.l-plot-resource { + border-left: none !important; + cursor: pointer; + padding-left: 0; +// .ui-symbol { +// color: $colorFormValid; +// } + } + + &.l-title { + width: $timelineColTitleW; + } + + &.l-start, + &.l-end, + &.l-duration { + width: $timelineColDatetimeW; + } + + //&.l-duration { + // width: $timelineColDurationW; + //} + + &.l-activity-modes { + display: none; // Temp, until modes can be displayed + width: $timelineColActivityModesW; + } + + } + } + + .s-timeline-tabular { + .l-header .l-cols { + top: $timelineTopPaneHeaderElemMargin; bottom: $timelineTopPaneHeaderElemMargin; + .l-col { + border-left: 1px solid rgba(#fff, 0.1); +// height: 100%; + } + } + + .l-pane-l { + // Left pane of the tabular area + .l-cols { + left: $timelineTopPaneHeaderElemMargin; + .s-label .ui-symbol.icon { + //color: $colorKeyFg; + color: $activityTypeTabularFgIcon; + } + } + } + + .l-pane-r { + // Right pane of the tabular area +// @include test(red, 0.05); + } + } + + .splitter { + // Top of splitter within Timelines should be 0 + top: 0; + } + + // Ticks + .l-ticks, + .l-subticks { + @include absPosDefault(); + top: auto; bottom: $interiorMarginSm; + } + + .l-ticks { + height: 10px + } + + .l-subticks { + height: 5px + } +} + +//*************************************************************** STYLING +.s-timeline { + font-size: 0.75rem; + .s-header { + background-color: $timelineHeaderColorBg; + } + .s-swimlane { + // @include transition-property(background-color); + // @include transition-duration(0.2s); + // @include transition-timing-function(ease-out); + // border-top: 1px solid rgba(black, 0.2); + border-bottom: 1px solid rgba(white, 0.1); + line-height: $activityBarH + 2 + 1; + /* &:hover { + background: rgba(white, 0.1); + }*/ + &.exceeded { + @include bgDiagonalStripes(#fff, 0.05, $timelineSwimlaneH + 1); + } + + &.selected { + $bg: $colorSwimlaneSelectedBg; + background-color: $bg; + color: #fff; +// @include background-image(linear-gradient(darken($bg, 5), $bg)); + + .s-timeline-gantt .bar { + @include activityBg($colorSwimlaneSelectedGanttBg, 10); + color: $colorSwimlaneSelectedGanttFg; +// background-color: red; +// background-image: none; + } + } + + &.drop-into { + background-color: rgba($colorDropTarg, 0.7); + .s-timeline-gantt { + opacity: 0.7; + } + } + &.drop-after { + background-color: rgba(#000, 0.2); + border-bottom-color: rgba($colorDropTarg, 1.0); + } + } + + .s-ticks { + @include bgTicks($timelineColorAlt1); + } + .s-hover-btns-holder { + $bg: $timelineHeaderColorBg; + $bga: 1; + $l: 5%; + @include background-image(linear-gradient(-90deg, rgba($bg, $bga), rgba($bg, $bga) 70%, rgba($bg, 0) 100%)); + .s-btn { + @include containerSubtle(lighten($colorBodyBg, $l), lighten($colorBodyFg, $l), true); + } + } +} + +.edit-mode .s-swimlane { + cursor: pointer; + .s-label { + @include border-radius($controlCr); + padding: 2px 5px; + &:hover { + background: rgba(#fff, 0.1); + color: #fff; + } + } +} + + diff --git a/platform/features/timeline/style/sass/timeline-espresso.scss b/platform/features/timeline/style/sass/timeline-espresso.scss new file mode 100644 index 0000000000..3cad04322e --- /dev/null +++ b/platform/features/timeline/style/sass/timeline-espresso.scss @@ -0,0 +1,11 @@ +@import "compass"; +@import "compass/css3"; +@import "compass/utilities"; + +@import "../../../../platform/commonUI/general/res/sass/constants"; +@import "../../../../platform/commonUI/general/res/sass/mixins"; +@import "mixins"; +@import "constants"; +@import "about"; +@import "activities"; +@import "timelines"; \ No newline at end of file diff --git a/platform/features/timeline/style/timeline-sass.sh b/platform/features/timeline/style/timeline-sass.sh new file mode 100644 index 0000000000..073c193342 --- /dev/null +++ b/platform/features/timeline/style/timeline-sass.sh @@ -0,0 +1,15 @@ +# echo "* Compiling all sass in wtd-dev" + +# echo "Compiling general" +# cd ~/dev/wtd-dev/platform/commonUI/general/res/ +# compass compile --force + +echo "*** Compiling themes/espresso" +cd ~/dev/wtd-dev/platform/commonUI/themes/espresso/res/ +compass compile --force + +echo "** Compiling themes/snow" +cd ~/dev/wtd-dev/platform/commonUI/themes/snow/res/ +compass compile --force + +echo "**** All wtd-dev sass compiled" \ No newline at end of file From eabde6b2d0f018a7e6098a356ad79715f551ce63 Mon Sep 17 00:00:00 2001 From: Charles Hacskaylo Date: Tue, 3 Nov 2015 14:58:58 -0800 Subject: [PATCH 02/88] [Frontend] Integrate Timeline into open; themes open #208 Copied SASS styles from /warp and created new platform/features/timeline/themes/espresso; Styling looks complete, but Timeline itself has functional issues; TO-DO: remove styles from /warp/.../sass/ as needed; --- bundles.json | 4 +- .../style/sass/timeline-espresso.scss | 11 - .../features/timeline/style/timeline-sass.sh | 15 - .../timeline/themes/compile-themes-sass.sh | 7 + .../{style => themes/espresso}/bundle.json | 2 +- .../timeline/themes/espresso/res/config.rb | 26 + .../themes/espresso/res/css/timeline.css | 652 ++++++++++++++++++ .../themes/espresso/res/sass/_activities.scss | 103 +++ .../espresso/res}/sass/_constants.scss | 8 +- .../themes/espresso/res/sass/_timelines.scss | 401 +++++++++++ .../themes/espresso/res/sass/timeline.scss | 11 + 11 files changed, 1207 insertions(+), 33 deletions(-) delete mode 100644 platform/features/timeline/style/sass/timeline-espresso.scss delete mode 100644 platform/features/timeline/style/timeline-sass.sh create mode 100644 platform/features/timeline/themes/compile-themes-sass.sh rename platform/features/timeline/{style => themes/espresso}/bundle.json (86%) create mode 100755 platform/features/timeline/themes/espresso/res/config.rb create mode 100644 platform/features/timeline/themes/espresso/res/css/timeline.css create mode 100644 platform/features/timeline/themes/espresso/res/sass/_activities.scss rename platform/features/timeline/{style => themes/espresso/res}/sass/_constants.scss (91%) create mode 100644 platform/features/timeline/themes/espresso/res/sass/_timelines.scss create mode 100644 platform/features/timeline/themes/espresso/res/sass/timeline.scss diff --git a/bundles.json b/bundles.json index 2b5c5f862d..f87cc8e1d4 100644 --- a/bundles.json +++ b/bundles.json @@ -14,12 +14,14 @@ "platform/execution", "platform/telemetry", "platform/features/clock", + "platform/features/events", "platform/features/imagery", "platform/features/layout", "platform/features/pages", "platform/features/plot", "platform/features/scrolling", - "platform/features/events", + "platform/features/timeline", + "platform/features/timeline/themes/espresso", "platform/forms", "platform/identity", "platform/persistence/local", diff --git a/platform/features/timeline/style/sass/timeline-espresso.scss b/platform/features/timeline/style/sass/timeline-espresso.scss deleted file mode 100644 index 3cad04322e..0000000000 --- a/platform/features/timeline/style/sass/timeline-espresso.scss +++ /dev/null @@ -1,11 +0,0 @@ -@import "compass"; -@import "compass/css3"; -@import "compass/utilities"; - -@import "../../../../platform/commonUI/general/res/sass/constants"; -@import "../../../../platform/commonUI/general/res/sass/mixins"; -@import "mixins"; -@import "constants"; -@import "about"; -@import "activities"; -@import "timelines"; \ No newline at end of file diff --git a/platform/features/timeline/style/timeline-sass.sh b/platform/features/timeline/style/timeline-sass.sh deleted file mode 100644 index 073c193342..0000000000 --- a/platform/features/timeline/style/timeline-sass.sh +++ /dev/null @@ -1,15 +0,0 @@ -# echo "* Compiling all sass in wtd-dev" - -# echo "Compiling general" -# cd ~/dev/wtd-dev/platform/commonUI/general/res/ -# compass compile --force - -echo "*** Compiling themes/espresso" -cd ~/dev/wtd-dev/platform/commonUI/themes/espresso/res/ -compass compile --force - -echo "** Compiling themes/snow" -cd ~/dev/wtd-dev/platform/commonUI/themes/snow/res/ -compass compile --force - -echo "**** All wtd-dev sass compiled" \ No newline at end of file diff --git a/platform/features/timeline/themes/compile-themes-sass.sh b/platform/features/timeline/themes/compile-themes-sass.sh new file mode 100644 index 0000000000..6e0e18e677 --- /dev/null +++ b/platform/features/timeline/themes/compile-themes-sass.sh @@ -0,0 +1,7 @@ +echo "*** Compiling timeline-espresso" +cd espresso/res +compass compile --force + +# echo "*** Compiling timeline-snow" +# cd espresso/snow +# compass compile --force \ No newline at end of file diff --git a/platform/features/timeline/style/bundle.json b/platform/features/timeline/themes/espresso/bundle.json similarity index 86% rename from platform/features/timeline/style/bundle.json rename to platform/features/timeline/themes/espresso/bundle.json index d0fb8a9f95..eef844096c 100644 --- a/platform/features/timeline/style/bundle.json +++ b/platform/features/timeline/themes/espresso/bundle.json @@ -5,7 +5,7 @@ "stylesheets": [ { "stylesheetUrl": "css/timeline.css", - "priority": "10" + "priority": "mandatory" } ] } diff --git a/platform/features/timeline/themes/espresso/res/config.rb b/platform/features/timeline/themes/espresso/res/config.rb new file mode 100755 index 0000000000..58843cd76e --- /dev/null +++ b/platform/features/timeline/themes/espresso/res/config.rb @@ -0,0 +1,26 @@ +# Require any additional compass plugins here. +# require "compass-growl" + +# Set this to the root of your project when deployed: +http_path = "/" +css_dir = "css" +sass_dir = "sass" +images_dir = "images" +javascripts_dir = "js" + +# You can select your preferred output style here (can be overridden via the command line): +# :expanded, :compressed, :nested +output_style = :nested + +# To enable relative paths to assets via compass helper functions. Uncomment: +relative_assets = true + +# To disable debugging comments that display the original location of your selectors. Uncomment: +# line_comments = false + + +# If you prefer the indented syntax, you might want to regenerate this +# project again passing --syntax sass, or you can uncomment this: +# preferred_syntax = :sass +# and then run: +# sass-convert -R --from scss --to sass vfn_platform/static/sass scss && rm -rf sass && mv scss sass diff --git a/platform/features/timeline/themes/espresso/res/css/timeline.css b/platform/features/timeline/themes/espresso/res/css/timeline.css new file mode 100644 index 0000000000..8bd6537f8f --- /dev/null +++ b/platform/features/timeline/themes/espresso/res/css/timeline.css @@ -0,0 +1,652 @@ +/***************************************************************************** + * Open MCT Web, Copyright (c) 2014-2015, United States Government + * as represented by the Administrator of the National Aeronautics and Space + * Administration. All rights reserved. + * + * Open MCT Web is licensed under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * http://www.apache.org/licenses/LICENSE-2.0. + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * License for the specific language governing permissions and limitations + * under the License. + * + * Open MCT Web includes source code licensed under additional open source + * licenses. See the Open Source Licenses file (LICENSES.md) included with + * this source code distribution or the Licensing information page available + * at runtime from the About dialog for additional information. + *****************************************************************************/ +/************************** FEATURES */ +/************************** VERY INFLUENTIAL GLOBAL DIMENSIONS */ +/************************** RATIOS */ +/************************** LAYOUT */ +/************************** CONTROLS */ +/************************** PATHS */ +/************************** TIMINGS */ +/***************************************************************************** + * Open MCT Web, Copyright (c) 2014-2015, United States Government + * as represented by the Administrator of the National Aeronautics and Space + * Administration. All rights reserved. + * + * Open MCT Web is licensed under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * http://www.apache.org/licenses/LICENSE-2.0. + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * License for the specific language governing permissions and limitations + * under the License. + * + * Open MCT Web includes source code licensed under additional open source + * licenses. See the Open Source Licenses file (LICENSES.md) included with + * this source code distribution or the Licensing information page available + * at runtime from the About dialog for additional information. + *****************************************************************************/ +/*********************************************** CONTROLS, FORM ELEMENTS */ +/* line 1, ../sass/_activities.scss */ +.l-timeline-gantt { + position: absolute; + top: 2px; + bottom: 2px; } + /* line 5, ../sass/_activities.scss */ + .l-timeline-gantt .bar { + overflow: hidden; + text-overflow: ellipsis; + white-space: nowrap; + height: 17px; + line-height: 19px; + padding: 0 5px; } + /* line 11, ../sass/_activities.scss */ + .l-timeline-gantt .bar span { + display: inline; } + /* line 15, ../sass/_activities.scss */ + .l-timeline-gantt .bar span.s-activity-type.timeline:before { + content: "S"; } + /* line 20, ../sass/_activities.scss */ + .l-timeline-gantt .bar span.s-activity-type.activity:before { + content: "A"; } + /* line 25, ../sass/_activities.scss */ + .l-timeline-gantt .bar span.s-title { + text-shadow: rgba(0, 0, 0, 0.1) 0 1px 2px; } + /* line 30, ../sass/_activities.scss */ + .l-timeline-gantt .bar span.duration { + left: auto; + opacity: 0.75; + right: 0; + text-align: right; + width: 60px; } + /* line 37, ../sass/_activities.scss */ + .l-timeline-gantt .bar span.handle { + top: 0; + bottom: 0; + height: auto; + width: 15px; } + /* line 43, ../sass/_activities.scss */ + .l-timeline-gantt .bar span.handle.left { + right: auto; } + /* line 46, ../sass/_activities.scss */ + .l-timeline-gantt .bar span.handle.middle { + right: 15px; + left: 15px; + width: auto; } + /* line 51, ../sass/_activities.scss */ + .l-timeline-gantt .bar span.handle.right { + right: 0; + left: auto; } + +/* line 62, ../sass/_activities.scss */ +.s-timeline-gantt .bar { + color: #fff; + background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuNSIgeTE9IjAuMCIgeDI9IjAuNSIgeTI9IjEuMCI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzc3NzdiYiIvPjxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iIzU1NTVhYSIvPjwvbGluZWFyR3JhZGllbnQ+PC9kZWZzPjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9InVybCgjZ3JhZCkiIC8+PC9zdmc+IA=='); + background-size: 100%; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #7777bb), color-stop(100%, #5555aa)); + background-image: -moz-linear-gradient(#7777bb, #5555aa); + background-image: -webkit-linear-gradient(#7777bb, #5555aa); + background-image: linear-gradient(#7777bb, #5555aa); + -moz-border-radius: 3px; + -webkit-border-radius: 3px; + border-radius: 3px; + -moz-box-shadow: rgba(0, 0, 0, 0.4) 0 1px 3px; + -webkit-box-shadow: rgba(0, 0, 0, 0.4) 0 1px 3px; + box-shadow: rgba(0, 0, 0, 0.4) 0 1px 3px; } + /* line 69, ../sass/_activities.scss */ + .s-timeline-gantt .bar.expanded { + -moz-border-radius-topleft: 3px; + -webkit-border-top-left-radius: 3px; + border-top-left-radius: 3px; + -moz-border-radius-topright: 3px; + -webkit-border-top-right-radius: 3px; + border-top-right-radius: 3px; + -moz-border-radius-bottomleft: 0; + -webkit-border-bottom-left-radius: 0; + border-bottom-left-radius: 0; + -moz-border-radius-bottomright: 0; + -webkit-border-bottom-right-radius: 0; + border-bottom-right-radius: 0; } + /* line 73, ../sass/_activities.scss */ + .s-timeline-gantt .bar.leaf { + -moz-border-radius-topleft: 0; + -webkit-border-top-left-radius: 0; + border-top-left-radius: 0; + -moz-border-radius-topright: 0; + -webkit-border-top-right-radius: 0; + border-top-right-radius: 0; + -moz-border-radius-bottomleft: 3px; + -webkit-border-bottom-left-radius: 3px; + border-bottom-left-radius: 3px; + -moz-border-radius-bottomright: 3px; + -webkit-border-bottom-right-radius: 3px; + border-bottom-right-radius: 3px; } + /* line 77, ../sass/_activities.scss */ + .s-timeline-gantt .bar .s-toggle { + color: #0099cc; } + +/* line 85, ../sass/_activities.scss */ +.edit-mode .s-timeline-gantt .bar:hover { + background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuNSIgeTE9IjAuMCIgeDI9IjAuNSIgeTI9IjEuMCI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzk5OTljYyIvPjxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iIzc3NzdiYiIvPjwvbGluZWFyR3JhZGllbnQ+PC9kZWZzPjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9InVybCgjZ3JhZCkiIC8+PC9zdmc+IA=='); + background-size: 100%; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #9999cc), color-stop(100%, #7777bb)); + background-image: -moz-linear-gradient(#9999cc, #7777bb); + background-image: -webkit-linear-gradient(#9999cc, #7777bb); + background-image: linear-gradient(#9999cc, #7777bb); } +/* line 90, ../sass/_activities.scss */ +.edit-mode .s-timeline-gantt .handle { + cursor: col-resize; } + /* line 95, ../sass/_activities.scss */ + .edit-mode .s-timeline-gantt .handle.mid { + cursor: ew-resize; } + +/* line 2, ../sass/_timelines.scss */ +.l-timeline-holder { + overflow: hidden; + position: absolute; + top: 0px; + right: 0px; + bottom: 0px; + left: 0px; + width: auto; + height: auto; } + /* line 6, ../sass/_timelines.scss */ + .l-timeline-holder .l-timeline-pane { + overflow: hidden; + position: absolute; + top: 0px; + right: 0px; + bottom: 0px; + left: 0px; + width: auto; + height: auto; } + /* line 9, ../sass/_timelines.scss */ + .l-timeline-holder .l-timeline-pane .l-width-control { + position: relative; } + /* line 13, ../sass/_timelines.scss */ + .l-timeline-holder .l-timeline-pane .l-swimlanes-holder { + overflow: hidden; + position: absolute; + top: 0px; + right: 0px; + bottom: 0px; + left: 0px; + width: auto; + height: auto; + top: 31px; } + /* line 20, ../sass/_timelines.scss */ + .l-timeline-holder .l-timeline-pane.t-pane-h.s-timeline-tabular .t-pane-v { + overflow: hidden; + position: absolute; + top: 0px; + right: 0px; + bottom: 0px; + left: 0px; + width: auto; + height: auto; } + /* line 23, ../sass/_timelines.scss */ + .l-timeline-holder .l-timeline-pane.t-pane-h.s-timeline-tabular .t-pane-v.l-tabular-l { + right: auto; + width: 266px; } + /* line 28, ../sass/_timelines.scss */ + .l-timeline-holder .l-timeline-pane.t-pane-h.s-timeline-tabular .t-pane-v.l-tabular-r { + overflow-x: auto; + overflow-y: hidden; + left: 266px; } + /* line 32, ../sass/_timelines.scss */ + .l-timeline-holder .l-timeline-pane.t-pane-h.s-timeline-tabular .t-pane-v.l-tabular-r .l-width { + overflow: visible; + position: absolute; + top: 0; + right: 0; + bottom: 0; + left: 0; + width: auto; + height: auto; + min-width: 590px; + width: 100%; } + /* line 42, ../sass/_timelines.scss */ + .l-timeline-holder .l-timeline-pane.t-pane-h.l-timeline-gantt .l-swimlanes-holder { + overflow-x: hidden; + overflow-y: scroll; } + /* line 47, ../sass/_timelines.scss */ + .l-timeline-holder .l-timeline-pane.t-pane-h.l-timeline-resource-legend { + -moz-box-sizing: border-box; + -webkit-box-sizing: border-box; + box-sizing: border-box; + padding: 5px 0; + white-space: nowrap; } + /* line 54, ../sass/_timelines.scss */ + .l-timeline-holder .l-timeline-pane.t-pane-h.l-timeline-resource-legend .l-legend-items { + overflow: hidden; + position: absolute; + top: 0px; + right: 0px; + bottom: 0px; + left: 0px; + width: auto; + height: auto; + overflow-x: hidden; + overflow-y: auto; + top: 25px; + color: #737373; } + /* line 61, ../sass/_timelines.scss */ + .l-timeline-holder .l-timeline-pane.t-pane-h.l-timeline-resource-legend .legend-item { + display: block; + margin-bottom: 3px; + overflow: hidden; + text-overflow: ellipsis; + white-space: nowrap; } + /* line 69, ../sass/_timelines.scss */ + .l-timeline-holder .l-timeline-pane.t-pane-h.l-timeline-resource-legend .legend-item .color-swatch { + vertical-align: baseline; } + /* line 72, ../sass/_timelines.scss */ + .l-timeline-holder .l-timeline-pane.t-pane-h.l-timeline-resource-legend .legend-item .title-label { + vertical-align: baseline; } + /* line 81, ../sass/_timelines.scss */ + .l-timeline-holder .l-timeline-pane.t-pane-h.l-timeline-resource-graph .l-graphs-holder { + overflow: hidden; + position: absolute; + top: 0px; + right: 0px; + bottom: 0px; + left: 0px; + width: auto; + height: auto; + bottom: 10px; } + /* line 86, ../sass/_timelines.scss */ + .l-timeline-holder .l-timeline-pane.t-pane-h.l-timeline-resource-graph .l-graphs-holder .l-graphs { + overflow: hidden; + position: absolute; + top: 0px; + right: 0px; + bottom: 0px; + left: 0px; + width: auto; + height: auto; + overflow-x: hidden; + overflow-y: scroll; } + /* line 91, ../sass/_timelines.scss */ + .l-timeline-holder .l-timeline-pane.t-pane-h.l-timeline-resource-graph .l-graphs-holder .l-graph-labels-holder { + overflow: hidden; + position: absolute; + top: 0px; + right: 0px; + bottom: 0px; + left: 0px; + width: auto; + height: auto; + overflow: hidden; + right: auto; + width: 400px; } + /* line 100, ../sass/_timelines.scss */ + .l-timeline-holder .l-timeline-pane.t-pane-h.l-timeline-resource-graph .l-scroll-control { + overflow: hidden; + position: absolute; + top: 0px; + right: 0px; + bottom: 0px; + left: 0px; + width: auto; + height: auto; + overflow-x: scroll; + overflow-y: hidden; + top: auto; + right: 10px; + height: 10px; } + /* line 106, ../sass/_timelines.scss */ + .l-timeline-holder .l-timeline-pane.t-pane-h.l-timeline-resource-graph .l-scroll-control .l-width-control { + height: 10px; } + /* line 111, ../sass/_timelines.scss */ + .l-timeline-holder .l-timeline-pane.t-pane-h.l-timeline-resource-graph .l-graph, + .l-timeline-holder .l-timeline-pane.t-pane-h.l-timeline-resource-graph .l-graph-labels { + height: 80px; + margin-bottom: 3px; + position: relative; } + /* line 118, ../sass/_timelines.scss */ + .l-timeline-holder .l-timeline-pane.t-pane-h.l-timeline-resource-graph .l-title { + overflow: hidden; + text-overflow: ellipsis; + white-space: nowrap; + color: rgba(255, 255, 255, 0.4); + top: 5px; + left: 5px; + position: absolute; } + /* line 125, ../sass/_timelines.scss */ + .l-timeline-holder .l-timeline-pane.t-pane-h.l-timeline-resource-graph .l-graph { + background: rgba(0, 0, 0, 0.3); + width: 100%; } + /* line 129, ../sass/_timelines.scss */ + .l-timeline-holder .l-timeline-pane.t-pane-h.l-timeline-resource-graph .l-graph .l-graph-area canvas { + width: 100%; + height: 100%; } + /* line 136, ../sass/_timelines.scss */ + .l-timeline-holder .l-timeline-pane.t-pane-h.l-timeline-resource-graph .l-graph-labels { + z-index: 10; } + /* line 140, ../sass/_timelines.scss */ + .l-timeline-holder .l-timeline-pane.t-pane-h.l-timeline-resource-graph .l-graph-area { + overflow: hidden; + position: absolute; + top: 0px; + right: 0px; + bottom: 0px; + left: 0px; + width: auto; + height: auto; + top: 20px; + bottom: 5px; } + /* line 143, ../sass/_timelines.scss */ + .l-timeline-holder .l-timeline-pane.t-pane-h.l-timeline-resource-graph .l-graph-area .l-labels-holder { + overflow: hidden; + position: absolute; + top: 0px; + right: 0px; + bottom: 0px; + left: 0px; + width: auto; + height: auto; + left: 5px; } + /* line 146, ../sass/_timelines.scss */ + .l-timeline-holder .l-timeline-pane.t-pane-h.l-timeline-resource-graph .l-graph-area .l-labels-holder .tick-label.tick-label-y { + text-align: left; } + /* line 154, ../sass/_timelines.scss */ + .l-timeline-holder .l-timeline-pane.l-pane-l { + right: auto; + min-width: 50px; + max-width: 90%; + width: 30%; } + /* line 162, ../sass/_timelines.scss */ + .l-timeline-holder .l-timeline-pane.l-pane-r { + left: 0; } + /* line 166, ../sass/_timelines.scss */ + .l-timeline-holder .l-timeline-pane.l-pane-r:hover .l-hover-btns-holder { + -moz-transition-property: visibility, opacity, background-color, border-color; + -o-transition-property: visibility, opacity, background-color, border-color; + -webkit-transition-property: visibility, opacity, background-color, border-color; + transition-property: visibility, opacity, background-color, border-color; + -moz-transition-duration: 100ms; + -o-transition-duration: 100ms; + -webkit-transition-duration: 100ms; + transition-duration: 100ms; + -moz-transition-timing-function: ease-in-out; + -o-transition-timing-function: ease-in-out; + -webkit-transition-timing-function: ease-in-out; + transition-timing-function: ease-in-out; + opacity: 1; } + /* line 173, ../sass/_timelines.scss */ + .l-timeline-holder .l-timeline-pane.l-pane-top { + bottom: 30%; } + /* line 177, ../sass/_timelines.scss */ + .l-timeline-holder .l-timeline-pane.l-pane-btm { + top: auto; + min-height: 20px; + max-height: 80%; + height: 30%; } + /* line 186, ../sass/_timelines.scss */ + .l-timeline-holder .l-swimlane { + height: 21px; + position: relative; } + /* line 192, ../sass/_timelines.scss */ + .l-timeline-holder .s-timeline-tabular .l-header, + .l-timeline-holder .s-timeline-gantt .l-header { + overflow: visible; + position: absolute; + top: 0; + right: 0; + bottom: 0; + left: 0; + width: auto; + height: auto; + bottom: auto; + height: 30px; } + /* line 198, ../sass/_timelines.scss */ + .l-timeline-holder .s-timeline-tabular .l-header .l-header-elem, + .l-timeline-holder .s-timeline-gantt .l-header .l-header-elem { + overflow: visible; + position: absolute; + top: 5px; + right: 5px; + bottom: 5px; + left: 5px; + width: auto; + height: auto; + display: block; } + /* line 203, ../sass/_timelines.scss */ + .l-timeline-holder .s-timeline-tabular .l-header .l-header-elem.l-labels .l-label, + .l-timeline-holder .s-timeline-gantt .l-header .l-header-elem.l-labels .l-label { + position: absolute; + width: 140px; + margin-left: -70px; + text-align: center; } + /* line 213, ../sass/_timelines.scss */ + .l-timeline-holder .l-hover-btns-holder { + overflow: hidden; + position: absolute; + top: 0px; + right: 0px; + bottom: 0px; + left: 0px; + width: auto; + height: auto; + -moz-box-sizing: border-box; + -webkit-box-sizing: border-box; + box-sizing: border-box; + -moz-transition-property: visibility, opacity, background-color, border-color; + -o-transition-property: visibility, opacity, background-color, border-color; + -webkit-transition-property: visibility, opacity, background-color, border-color; + transition-property: visibility, opacity, background-color, border-color; + -moz-transition-duration: 500ms; + -o-transition-duration: 500ms; + -webkit-transition-duration: 500ms; + transition-duration: 500ms; + -moz-transition-timing-function: ease-in-out; + -o-transition-timing-function: ease-in-out; + -webkit-transition-timing-function: ease-in-out; + transition-timing-function: ease-in-out; + opacity: 0; + height: 30px; + width: 100px; + left: auto; + padding: 5px; + text-align: right; + z-index: 10; } + /* line 226, ../sass/_timelines.scss */ + .l-timeline-holder .l-cols { + overflow: visible; + position: absolute; + top: 0; + right: 0; + bottom: 0; + left: 0; + width: auto; + height: auto; + text-wrap: none; + white-space: nowrap; } + /* line 231, ../sass/_timelines.scss */ + .l-timeline-holder .l-cols .l-col { + -moz-box-sizing: border-box; + -webkit-box-sizing: border-box; + box-sizing: border-box; + overflow: hidden; + text-overflow: ellipsis; + white-space: nowrap; + display: inline-block; + height: 100%; + padding: 0 5px; + position: relative; + text-wrap: none; + white-space: nowrap; } + /* line 242, ../sass/_timelines.scss */ + .l-timeline-holder .l-cols .l-col.l-col-icon { + width: 16px; + text-align: center; + padding: 0; } + /* line 246, ../sass/_timelines.scss */ + .l-timeline-holder .l-cols .l-col.l-col-icon .ui-symbol { + color: #0099cc; } + /* line 251, ../sass/_timelines.scss */ + .l-timeline-holder .l-cols .l-col.l-plot-resource { + border-left: none !important; + cursor: pointer; + padding-left: 0; } + /* line 260, ../sass/_timelines.scss */ + .l-timeline-holder .l-cols .l-col.l-title { + width: 250px; } + /* line 264, ../sass/_timelines.scss */ + .l-timeline-holder .l-cols .l-col.l-start, .l-timeline-holder .l-cols .l-col.l-end, .l-timeline-holder .l-cols .l-col.l-duration { + width: 110px; } + /* line 274, ../sass/_timelines.scss */ + .l-timeline-holder .l-cols .l-col.l-activity-modes { + display: none; + width: 250px; } + /* line 283, ../sass/_timelines.scss */ + .l-timeline-holder .s-timeline-tabular .l-header .l-cols { + top: 5px; + bottom: 5px; } + /* line 285, ../sass/_timelines.scss */ + .l-timeline-holder .s-timeline-tabular .l-header .l-cols .l-col { + border-left: 1px solid rgba(255, 255, 255, 0.1); } + /* line 293, ../sass/_timelines.scss */ + .l-timeline-holder .s-timeline-tabular .l-pane-l .l-cols { + left: 5px; } + /* line 295, ../sass/_timelines.scss */ + .l-timeline-holder .s-timeline-tabular .l-pane-l .l-cols .s-label .ui-symbol.icon { + color: #8594ff; } + /* line 308, ../sass/_timelines.scss */ + .l-timeline-holder .splitter { + top: 0; } + /* line 314, ../sass/_timelines.scss */ + .l-timeline-holder .l-ticks, + .l-timeline-holder .l-subticks { + overflow: hidden; + position: absolute; + top: 0px; + right: 0px; + bottom: 0px; + left: 0px; + width: auto; + height: auto; + top: auto; + bottom: 3px; } + /* line 320, ../sass/_timelines.scss */ + .l-timeline-holder .l-ticks { + height: 10px; } + /* line 324, ../sass/_timelines.scss */ + .l-timeline-holder .l-subticks { + height: 5px; } + +/* line 330, ../sass/_timelines.scss */ +.s-timeline { + font-size: 0.75rem; } + /* line 332, ../sass/_timelines.scss */ + .s-timeline .s-header { + background-color: #404040; } + /* line 335, ../sass/_timelines.scss */ + .s-timeline .s-swimlane { + border-bottom: 1px solid rgba(255, 255, 255, 0.1); + line-height: 20px; + /* &:hover { + background: rgba(white, 0.1); + }*/ } + /* line 345, ../sass/_timelines.scss */ + .s-timeline .s-swimlane.exceeded { + background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjEuMCIgeTE9IjEuMCIgeDI9IjAuMCIgeTI9IjAuMCI+PHN0b3Agb2Zmc2V0PSIyNSUiIHN0b3AtY29sb3I9IiNmZmZmZmYiIHN0b3Atb3BhY2l0eT0iMC4wNSIvPjxzdG9wIG9mZnNldD0iMjUlIiBzdG9wLWNvbG9yPSIjMDAwMDAwIiBzdG9wLW9wYWNpdHk9IjAuMCIvPjxzdG9wIG9mZnNldD0iNTAlIiBzdG9wLWNvbG9yPSIjMDAwMDAwIiBzdG9wLW9wYWNpdHk9IjAuMCIvPjxzdG9wIG9mZnNldD0iNTAlIiBzdG9wLWNvbG9yPSIjZmZmZmZmIiBzdG9wLW9wYWNpdHk9IjAuMDUiLz48c3RvcCBvZmZzZXQ9Ijc1JSIgc3RvcC1jb2xvcj0iI2ZmZmZmZiIgc3RvcC1vcGFjaXR5PSIwLjA1Ii8+PHN0b3Agb2Zmc2V0PSI3NSUiIHN0b3AtY29sb3I9IiMwMDAwMDAiIHN0b3Atb3BhY2l0eT0iMC4wIi8+PHN0b3Agb2Zmc2V0PSIxMDAlIiBzdG9wLWNvbG9yPSIjMDAwMDAwIiBzdG9wLW9wYWNpdHk9IjAuMCIvPjwvbGluZWFyR3JhZGllbnQ+PC9kZWZzPjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9InVybCgjZ3JhZCkiIC8+PC9zdmc+IA=='); + background-size: 100%; + background-image: -moz-linear-gradient(135deg, rgba(255, 255, 255, 0.05) 25%, rgba(0, 0, 0, 0) 25%, rgba(0, 0, 0, 0) 50%, rgba(255, 255, 255, 0.05) 50%, rgba(255, 255, 255, 0.05) 75%, rgba(0, 0, 0, 0) 75%, rgba(0, 0, 0, 0) 100%); + background-image: -webkit-linear-gradient(135deg, rgba(255, 255, 255, 0.05) 25%, rgba(0, 0, 0, 0) 25%, rgba(0, 0, 0, 0) 50%, rgba(255, 255, 255, 0.05) 50%, rgba(255, 255, 255, 0.05) 75%, rgba(0, 0, 0, 0) 75%, rgba(0, 0, 0, 0) 100%); + background-image: linear-gradient(-45deg, rgba(255, 255, 255, 0.05) 25%, rgba(0, 0, 0, 0) 25%, rgba(0, 0, 0, 0) 50%, rgba(255, 255, 255, 0.05) 50%, rgba(255, 255, 255, 0.05) 75%, rgba(0, 0, 0, 0) 75%, rgba(0, 0, 0, 0) 100%); + background-repeat: repeat; + background-size: 22px 22px; } + /* line 349, ../sass/_timelines.scss */ + .s-timeline .s-swimlane.selected { + background-color: #222; + color: #fff; } + /* line 355, ../sass/_timelines.scss */ + .s-timeline .s-swimlane.selected .s-timeline-gantt .bar { + background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuNSIgeTE9IjAuMCIgeDI9IjAuNSIgeTI9IjEuMCI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2U2ZTZlNiIvPjxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iI2NjY2NjYyIvPjwvbGluZWFyR3JhZGllbnQ+PC9kZWZzPjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9InVybCgjZ3JhZCkiIC8+PC9zdmc+IA=='); + background-size: 100%; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #e6e6e6), color-stop(100%, #cccccc)); + background-image: -moz-linear-gradient(#e6e6e6, #cccccc); + background-image: -webkit-linear-gradient(#e6e6e6, #cccccc); + background-image: linear-gradient(#e6e6e6, #cccccc); + color: #333; } + /* line 363, ../sass/_timelines.scss */ + .s-timeline .s-swimlane.drop-into { + background-color: rgba(85, 85, 170, 0.7); } + /* line 365, ../sass/_timelines.scss */ + .s-timeline .s-swimlane.drop-into .s-timeline-gantt { + opacity: 0.7; } + /* line 369, ../sass/_timelines.scss */ + .s-timeline .s-swimlane.drop-after { + background-color: rgba(0, 0, 0, 0.2); + border-bottom-color: #5555aa; } + /* line 375, ../sass/_timelines.scss */ + .s-timeline .s-ticks { + background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuMCIgeTE9IjAuNSIgeDI9IjEuMCIgeTI9IjAuNSI+PHN0b3Agb2Zmc2V0PSIxcHgiIHN0b3AtY29sb3I9IiM1OTU5NTkiLz48c3RvcCBvZmZzZXQ9IjFweCIgc3RvcC1jb2xvcj0iIzAwMDAwMCIgc3RvcC1vcGFjaXR5PSIwLjAiLz48c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiMwMDAwMDAiIHN0b3Atb3BhY2l0eT0iMC4wIi8+PC9saW5lYXJHcmFkaWVudD48L2RlZnM+PHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0idXJsKCNncmFkKSIgLz48L3N2Zz4g'); + background-size: 100%; + background-image: -moz-linear-gradient(0deg, #595959 1px, rgba(0, 0, 0, 0) 1px, rgba(0, 0, 0, 0) 100%); + background-image: -webkit-linear-gradient(0deg, #595959 1px, rgba(0, 0, 0, 0) 1px, rgba(0, 0, 0, 0) 100%); + background-image: linear-gradient(90deg, #595959 1px, rgba(0, 0, 0, 0) 1px, rgba(0, 0, 0, 0) 100%); + background-repeat: repeat-x; } + /* line 378, ../sass/_timelines.scss */ + .s-timeline .s-hover-btns-holder { + background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjEuMCIgeTE9IjAuNSIgeDI9IjAuMCIgeTI9IjAuNSI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzQwNDA0MCIvPjxzdG9wIG9mZnNldD0iNzAlIiBzdG9wLWNvbG9yPSIjNDA0MDQwIi8+PHN0b3Agb2Zmc2V0PSIxMDAlIiBzdG9wLWNvbG9yPSIjNDA0MDQwIiBzdG9wLW9wYWNpdHk9IjAuMCIvPjwvbGluZWFyR3JhZGllbnQ+PC9kZWZzPjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9InVybCgjZ3JhZCkiIC8+PC9zdmc+IA=='); + background-size: 100%; + background-image: -moz-linear-gradient(180deg, #404040, #404040 70%, rgba(64, 64, 64, 0) 100%); + background-image: -webkit-linear-gradient(180deg, #404040, #404040 70%, rgba(64, 64, 64, 0) 100%); + background-image: linear-gradient(-90deg, #404040, #404040 70%, rgba(64, 64, 64, 0) 100%); } + /* line 383, ../sass/_timelines.scss */ + .s-timeline .s-hover-btns-holder .s-btn { + background-color: #404040; + -moz-border-radius: 3px; + -webkit-border-radius: 3px; + border-radius: 3px; + -moz-box-sizing: border-box; + -webkit-box-sizing: border-box; + box-sizing: border-box; + color: #a6a6a6; + display: inline-block; + background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuNSIgeTE9IjAuMCIgeDI9IjAuNSIgeTI9IjEuMCI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzRkNGQ0ZCIvPjxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iIzQwNDA0MCIvPjwvbGluZWFyR3JhZGllbnQ+PC9kZWZzPjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9InVybCgjZ3JhZCkiIC8+PC9zdmc+IA=='); + background-size: 100%; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #4d4d4d), color-stop(100%, #404040)); + background-image: -moz-linear-gradient(#4d4d4d, #404040); + background-image: -webkit-linear-gradient(#4d4d4d, #404040); + background-image: linear-gradient(#4d4d4d, #404040); + -moz-box-shadow: rgba(0, 0, 0, 0.2) 0 1px 2px; + -webkit-box-shadow: rgba(0, 0, 0, 0.2) 0 1px 2px; + box-shadow: rgba(0, 0, 0, 0.2) 0 1px 2px; } + +/* line 389, ../sass/_timelines.scss */ +.edit-mode .s-swimlane { + cursor: pointer; } + /* line 391, ../sass/_timelines.scss */ + .edit-mode .s-swimlane .s-label { + -moz-border-radius: 3px; + -webkit-border-radius: 3px; + border-radius: 3px; + padding: 2px 5px; } + /* line 394, ../sass/_timelines.scss */ + .edit-mode .s-swimlane .s-label:hover { + background: rgba(255, 255, 255, 0.1); + color: #fff; } diff --git a/platform/features/timeline/themes/espresso/res/sass/_activities.scss b/platform/features/timeline/themes/espresso/res/sass/_activities.scss new file mode 100644 index 0000000000..75f3a81072 --- /dev/null +++ b/platform/features/timeline/themes/espresso/res/sass/_activities.scss @@ -0,0 +1,103 @@ +.l-timeline-gantt { + position: absolute; + top: $timelineSwimlaneGanttVM; bottom: $timelineSwimlaneGanttVM; + + .bar { + @include ellipsize(); + height: $activityBarH; + line-height: $activityBarH + 2; + padding: 0 $interiorMargin; + + span { + display: inline; + &.s-activity-type { + &.timeline { + &:before { + content:"S"; + } + } + &.activity { + &:before { + content:"A"; + } + } + } + &.s-title { + @include text-shadow(rgba(black, 0.1) 0 1px 2px); +// right: 5px; +// width: 50%; + } + &.duration { + left: auto; + opacity: 0.75; + right: 0; + text-align: right; + width: 60px; + } + &.handle { + //background: rgba(red, 0.2); + top: 0; + bottom: 0; + height: auto; + width: 15px; + &.left { + right: auto; + } + &.middle { + right: 15px; + left: 15px; + width: auto; + } + &.right { + right: 0; + left: auto; + } + } + } + } +} + +.s-timeline-gantt { + $br: $controlCr; + .bar { + color: $activityTypeFg; +// opacity: 0.9; +// @include background-image(linear-gradient(lighten($activityTypeBg, 10), $activityTypeBg)); + @include activityBg($activityTypeBg); + @include border-radius($br); + @include box-shadow(rgba(black, 0.4) 0 1px 3px); + &.expanded { + @include border-top-radius($br); + @include border-bottom-radius(0); + } + &.leaf { + @include border-top-radius(0); + @include border-bottom-radius($br); + } + .s-toggle { + color: $colorKey; + } + } +} + +.edit-mode .s-timeline-gantt { + .bar { + &:hover { + @include background-image(linear-gradient(lighten($activityTypeBg, 20), lighten($activityTypeBg, 10))); + } + } + + .handle { + cursor: col-resize; + &.start { +// @include test(red); + } + &.mid { +// @include test(green); + cursor: ew-resize; + } + &.end { +// @include test(blue); + } + } +} \ No newline at end of file diff --git a/platform/features/timeline/style/sass/_constants.scss b/platform/features/timeline/themes/espresso/res/sass/_constants.scss similarity index 91% rename from platform/features/timeline/style/sass/_constants.scss rename to platform/features/timeline/themes/espresso/res/sass/_constants.scss index 26bcd55eaf..ca7a47f7a3 100644 --- a/platform/features/timeline/style/sass/_constants.scss +++ b/platform/features/timeline/themes/espresso/res/sass/_constants.scss @@ -1,8 +1,6 @@ -$dirImgs: '../images/'; //Relative to warp.css -/*$interiorMargin: 5px; -$interiorMarginLg: $interiorMargin * 2; -$interiorMarginSm: 3px;*/ -$logoAspect: .17; +@mixin activityBg($bg, $gamma: 10) { + @include background-image(linear-gradient(lighten($bg, $gamma), $bg)); +} // Timeline constants $activityBarH: 17px; diff --git a/platform/features/timeline/themes/espresso/res/sass/_timelines.scss b/platform/features/timeline/themes/espresso/res/sass/_timelines.scss new file mode 100644 index 0000000000..bdb8211a3e --- /dev/null +++ b/platform/features/timeline/themes/espresso/res/sass/_timelines.scss @@ -0,0 +1,401 @@ +//*************************************************************** LAYOUT +.l-timeline-holder { +// @include test(); + @include absPosDefault(); + + .l-timeline-pane { + @include absPosDefault(); + + .l-width-control { + position: relative; + } + + .l-swimlanes-holder { + @include absPosDefault(); + top: $timelineTopPaneHeaderH + 1; + } + + // Overall layout + &.t-pane-h { + &.s-timeline-tabular .t-pane-v { + // Vertical panes within tabular area + @include absPosDefault(); + &.l-tabular-l { + // Tree area with item title + right: auto; // Set this to auto and uncomment width below when additional tabular columns are added + width: $timelineTabularTitleW; + } + &.l-tabular-r { + // Start, end, duration, activity modes columns + @include scrollH(); + left: $timelineTabularTitleW; + .l-width { + @include absPosDefault(0, visible); + min-width: $timelineTabularDataW; + width: 100%; + } + } + } + &.l-timeline-gantt { +// @include testObj(); + + .l-swimlanes-holder { + @include scrollV(scroll); + } + + } + &.l-timeline-resource-legend { + @include box-sizing(border-box); + padding: $interiorMargin 0; + white-space: nowrap; + .l-title { + } + + .l-legend-items { + @include absPosDefault(); + @include scrollV(); + top: 25px; + color: lighten($timelineColorAlt1, 10%); +// margin-top: $interiorMargin; + } + .legend-item { + // Inherits from /platform/commonUI/general/res/sass/plots/_plots-main.scss +// border-bottom: 1px solid $colorInteriorBorder; + display: block; + margin-bottom: $interiorMarginSm; + overflow: hidden; + text-overflow: ellipsis; + white-space: nowrap; + .color-swatch { + vertical-align: baseline; + } + .title-label { + vertical-align: baseline; + } + } + } + + &.l-timeline-resource-graph { + $m: $interiorMargin; + + .l-graphs-holder { +// @include test(blue); + @include absPosDefault(); + bottom: $scrollbarTrackSize; + + .l-graphs { + @include absPosDefault(); + @include scrollV(scroll); + } + + .l-graph-labels-holder { +// @include test(red); + @include absPosDefault(); + overflow: hidden; + right: auto; + width: 400px; + } + } + + .l-scroll-control { + @include absPosDefault(); + overflow-x: scroll; + overflow-y: hidden; + top: auto; right: $scrollbarTrackSize; + height: $scrollbarTrackSize; + .l-width-control { + height: 10px; // Need to add height to force scrollbar to appear + } + } + + .l-graph, + .l-graph-labels { + height: 80px; //was 120px + margin-bottom: $interiorMarginSm; + position: relative; + } + + .l-title { + @include ellipsize(); + color: rgba(#fff, 0.4); + top: $m; left: $m; + position: absolute; + } + + .l-graph { + background: rgba(black, 0.3); + width: 100%; + .l-graph-area { + canvas { + width: 100%; + height: 100%; + } + } + } + + .l-graph-labels { + z-index: 10; + } + + .l-graph-area { + @include absPosDefault(); + top: 20px; bottom: 5px; + .l-labels-holder { + @include absPosDefault(); + left: $m; + .tick-label.tick-label-y { + text-align: left; + } + } + } + } + } + + &.l-pane-l { +// @include test(red); + right: auto; + min-width: 50px; + max-width: 90%; + width: $timelinePaneLeftW; + } + + &.l-pane-r { +// @include test(blue); + left: 0; + &:hover { + .l-hover-btns-holder { + @include trans-prop-nice-fade(100ms); + opacity: 1; + } + } + } + + &.l-pane-top { +// @include test(green); + bottom: $timelinePaneBtmH; + } + &.l-pane-btm { +// @include test(orange); + top: auto; + min-height: 20px; + max-height: 80%; + height: $timelinePaneBtmH; + } + } + + .l-swimlane { + height: $timelineSwimlaneH; + position: relative; + } + + // Header + .s-timeline-tabular .l-header, + .s-timeline-gantt .l-header { +// @include test(white,0.05); + @include absPosDefault(0, visible); + bottom: auto; height: $timelineTopPaneHeaderH; + + .l-header-elem { + @include absPosDefault($timelineTopPaneHeaderElemMargin, visible); +// bottom: auto; height: 15px; + display: block; + &.l-labels { + .l-label { + position: absolute; + width: 140px; + margin-left: -70px; + text-align: center; + } + } + } + } + + .l-hover-btns-holder { + @include absPosDefault(); + @include box-sizing(border-box); + @include trans-prop-nice-fade(500ms); + opacity: 0; + height: $timelineTopPaneHeaderH; + width: 100px; left: auto; + padding: $interiorMargin; + text-align: right; + z-index: 10; + } + + // Tabular Columns + .l-cols { +// @include test(#66ff66, 0.1); + @include absPosDefault(0, visible); + text-wrap: none; + white-space: nowrap; + .l-col { + @include box-sizing(border-box); + @include ellipsize(); +// @include test(red, 0.05); + display: inline-block; + height: 100%; + padding: 0 $interiorMargin; + position: relative; + text-wrap: none; + white-space: nowrap; + + &.l-col-icon { + width: $timelineColIconW; + text-align: center; + padding: 0; + .ui-symbol { + color: $colorKey; + } + } + + &.l-plot-resource { + border-left: none !important; + cursor: pointer; + padding-left: 0; +// .ui-symbol { +// color: $colorFormValid; +// } + } + + &.l-title { + width: $timelineColTitleW; + } + + &.l-start, + &.l-end, + &.l-duration { + width: $timelineColDatetimeW; + } + + //&.l-duration { + // width: $timelineColDurationW; + //} + + &.l-activity-modes { + display: none; // Temp, until modes can be displayed + width: $timelineColActivityModesW; + } + + } + } + + .s-timeline-tabular { + .l-header .l-cols { + top: $timelineTopPaneHeaderElemMargin; bottom: $timelineTopPaneHeaderElemMargin; + .l-col { + border-left: 1px solid rgba(#fff, 0.1); +// height: 100%; + } + } + + .l-pane-l { + // Left pane of the tabular area + .l-cols { + left: $timelineTopPaneHeaderElemMargin; + .s-label .ui-symbol.icon { + //color: $colorKeyFg; + color: $activityTypeTabularFgIcon; + } + } + } + + .l-pane-r { + // Right pane of the tabular area +// @include test(red, 0.05); + } + } + + .splitter { + // Top of splitter within Timelines should be 0 + top: 0; + } + + // Ticks + .l-ticks, + .l-subticks { + @include absPosDefault(); + top: auto; bottom: $interiorMarginSm; + } + + .l-ticks { + height: 10px + } + + .l-subticks { + height: 5px + } +} + +//*************************************************************** STYLING +.s-timeline { + font-size: 0.75rem; + .s-header { + background-color: $timelineHeaderColorBg; + } + .s-swimlane { + // @include transition-property(background-color); + // @include transition-duration(0.2s); + // @include transition-timing-function(ease-out); + // border-top: 1px solid rgba(black, 0.2); + border-bottom: 1px solid rgba(white, 0.1); + line-height: $activityBarH + 2 + 1; + /* &:hover { + background: rgba(white, 0.1); + }*/ + &.exceeded { + @include bgDiagonalStripes(#fff, 0.05, $timelineSwimlaneH + 1); + } + + &.selected { + $bg: $colorSwimlaneSelectedBg; + background-color: $bg; + color: #fff; +// @include background-image(linear-gradient(darken($bg, 5), $bg)); + + .s-timeline-gantt .bar { + @include activityBg($colorSwimlaneSelectedGanttBg, 10); + color: $colorSwimlaneSelectedGanttFg; +// background-color: red; +// background-image: none; + } + } + + &.drop-into { + background-color: rgba($colorDropTarg, 0.7); + .s-timeline-gantt { + opacity: 0.7; + } + } + &.drop-after { + background-color: rgba(#000, 0.2); + border-bottom-color: rgba($colorDropTarg, 1.0); + } + } + + .s-ticks { + @include bgTicks($timelineColorAlt1); + } + .s-hover-btns-holder { + $bg: $timelineHeaderColorBg; + $bga: 1; + $l: 5%; + @include background-image(linear-gradient(-90deg, rgba($bg, $bga), rgba($bg, $bga) 70%, rgba($bg, 0) 100%)); + .s-btn { + @include containerSubtle(lighten($colorBodyBg, $l), lighten($colorBodyFg, $l), true); + } + } +} + +.edit-mode .s-swimlane { + cursor: pointer; + .s-label { + @include border-radius($controlCr); + padding: 2px 5px; + &:hover { + background: rgba(#fff, 0.1); + color: #fff; + } + } +} + + diff --git a/platform/features/timeline/themes/espresso/res/sass/timeline.scss b/platform/features/timeline/themes/espresso/res/sass/timeline.scss new file mode 100644 index 0000000000..fe25a008ec --- /dev/null +++ b/platform/features/timeline/themes/espresso/res/sass/timeline.scss @@ -0,0 +1,11 @@ +@import "compass"; +@import "compass/css3"; +@import "compass/utilities"; + +@import "../../../../../../commonUI/general/res/sass/constants"; +@import "../../../../../../commonUI/general/res/sass/mixins"; +@import "../../../../../../commonUI/themes/espresso/res/sass/constants"; +@import "../../../../../../commonUI/themes/espresso/res/sass/mixins"; +@import "constants"; +@import "activities"; +@import "timelines"; \ No newline at end of file From 7cd255670e4cb2c2fd2776aba96989c94034a269 Mon Sep 17 00:00:00 2001 From: Charles Hacskaylo Date: Tue, 3 Nov 2015 14:59:41 -0800 Subject: [PATCH 03/88] [Frontend] Committing removed files open #208 --- platform/features/timeline/style/config.rb | 26 -- .../timeline/style/sass/_activities.scss | 103 ----- .../timeline/style/sass/_timelines.scss | 401 ------------------ 3 files changed, 530 deletions(-) delete mode 100755 platform/features/timeline/style/config.rb delete mode 100644 platform/features/timeline/style/sass/_activities.scss delete mode 100644 platform/features/timeline/style/sass/_timelines.scss diff --git a/platform/features/timeline/style/config.rb b/platform/features/timeline/style/config.rb deleted file mode 100755 index a5def82481..0000000000 --- a/platform/features/timeline/style/config.rb +++ /dev/null @@ -1,26 +0,0 @@ -# Require any additional compass plugins here. -# require "compass-growl" - -# Set this to the root of your project when deployed: -http_path = "/" -css_dir = "css" -sass_dir = "sass" -images_dir = "images" -javascripts_dir = "js" - -# You can select your preferred output style here (can be overridden via the command line): -# :expanded, :compressed, :nested -output_style = :nested - -# To enable relative paths to assets via compass helper functions. Uncomment: -# relative_assets = true - -# To disable debugging comments that display the original location of your selectors. Uncomment: -# line_comments = false - - -# If you prefer the indented syntax, you might want to regenerate this -# project again passing --syntax sass, or you can uncomment this: -# preferred_syntax = :sass -# and then run: -# sass-convert -R --from scss --to sass vfn_platform/static/sass scss && rm -rf sass && mv scss sass diff --git a/platform/features/timeline/style/sass/_activities.scss b/platform/features/timeline/style/sass/_activities.scss deleted file mode 100644 index 75f3a81072..0000000000 --- a/platform/features/timeline/style/sass/_activities.scss +++ /dev/null @@ -1,103 +0,0 @@ -.l-timeline-gantt { - position: absolute; - top: $timelineSwimlaneGanttVM; bottom: $timelineSwimlaneGanttVM; - - .bar { - @include ellipsize(); - height: $activityBarH; - line-height: $activityBarH + 2; - padding: 0 $interiorMargin; - - span { - display: inline; - &.s-activity-type { - &.timeline { - &:before { - content:"S"; - } - } - &.activity { - &:before { - content:"A"; - } - } - } - &.s-title { - @include text-shadow(rgba(black, 0.1) 0 1px 2px); -// right: 5px; -// width: 50%; - } - &.duration { - left: auto; - opacity: 0.75; - right: 0; - text-align: right; - width: 60px; - } - &.handle { - //background: rgba(red, 0.2); - top: 0; - bottom: 0; - height: auto; - width: 15px; - &.left { - right: auto; - } - &.middle { - right: 15px; - left: 15px; - width: auto; - } - &.right { - right: 0; - left: auto; - } - } - } - } -} - -.s-timeline-gantt { - $br: $controlCr; - .bar { - color: $activityTypeFg; -// opacity: 0.9; -// @include background-image(linear-gradient(lighten($activityTypeBg, 10), $activityTypeBg)); - @include activityBg($activityTypeBg); - @include border-radius($br); - @include box-shadow(rgba(black, 0.4) 0 1px 3px); - &.expanded { - @include border-top-radius($br); - @include border-bottom-radius(0); - } - &.leaf { - @include border-top-radius(0); - @include border-bottom-radius($br); - } - .s-toggle { - color: $colorKey; - } - } -} - -.edit-mode .s-timeline-gantt { - .bar { - &:hover { - @include background-image(linear-gradient(lighten($activityTypeBg, 20), lighten($activityTypeBg, 10))); - } - } - - .handle { - cursor: col-resize; - &.start { -// @include test(red); - } - &.mid { -// @include test(green); - cursor: ew-resize; - } - &.end { -// @include test(blue); - } - } -} \ No newline at end of file diff --git a/platform/features/timeline/style/sass/_timelines.scss b/platform/features/timeline/style/sass/_timelines.scss deleted file mode 100644 index bdb8211a3e..0000000000 --- a/platform/features/timeline/style/sass/_timelines.scss +++ /dev/null @@ -1,401 +0,0 @@ -//*************************************************************** LAYOUT -.l-timeline-holder { -// @include test(); - @include absPosDefault(); - - .l-timeline-pane { - @include absPosDefault(); - - .l-width-control { - position: relative; - } - - .l-swimlanes-holder { - @include absPosDefault(); - top: $timelineTopPaneHeaderH + 1; - } - - // Overall layout - &.t-pane-h { - &.s-timeline-tabular .t-pane-v { - // Vertical panes within tabular area - @include absPosDefault(); - &.l-tabular-l { - // Tree area with item title - right: auto; // Set this to auto and uncomment width below when additional tabular columns are added - width: $timelineTabularTitleW; - } - &.l-tabular-r { - // Start, end, duration, activity modes columns - @include scrollH(); - left: $timelineTabularTitleW; - .l-width { - @include absPosDefault(0, visible); - min-width: $timelineTabularDataW; - width: 100%; - } - } - } - &.l-timeline-gantt { -// @include testObj(); - - .l-swimlanes-holder { - @include scrollV(scroll); - } - - } - &.l-timeline-resource-legend { - @include box-sizing(border-box); - padding: $interiorMargin 0; - white-space: nowrap; - .l-title { - } - - .l-legend-items { - @include absPosDefault(); - @include scrollV(); - top: 25px; - color: lighten($timelineColorAlt1, 10%); -// margin-top: $interiorMargin; - } - .legend-item { - // Inherits from /platform/commonUI/general/res/sass/plots/_plots-main.scss -// border-bottom: 1px solid $colorInteriorBorder; - display: block; - margin-bottom: $interiorMarginSm; - overflow: hidden; - text-overflow: ellipsis; - white-space: nowrap; - .color-swatch { - vertical-align: baseline; - } - .title-label { - vertical-align: baseline; - } - } - } - - &.l-timeline-resource-graph { - $m: $interiorMargin; - - .l-graphs-holder { -// @include test(blue); - @include absPosDefault(); - bottom: $scrollbarTrackSize; - - .l-graphs { - @include absPosDefault(); - @include scrollV(scroll); - } - - .l-graph-labels-holder { -// @include test(red); - @include absPosDefault(); - overflow: hidden; - right: auto; - width: 400px; - } - } - - .l-scroll-control { - @include absPosDefault(); - overflow-x: scroll; - overflow-y: hidden; - top: auto; right: $scrollbarTrackSize; - height: $scrollbarTrackSize; - .l-width-control { - height: 10px; // Need to add height to force scrollbar to appear - } - } - - .l-graph, - .l-graph-labels { - height: 80px; //was 120px - margin-bottom: $interiorMarginSm; - position: relative; - } - - .l-title { - @include ellipsize(); - color: rgba(#fff, 0.4); - top: $m; left: $m; - position: absolute; - } - - .l-graph { - background: rgba(black, 0.3); - width: 100%; - .l-graph-area { - canvas { - width: 100%; - height: 100%; - } - } - } - - .l-graph-labels { - z-index: 10; - } - - .l-graph-area { - @include absPosDefault(); - top: 20px; bottom: 5px; - .l-labels-holder { - @include absPosDefault(); - left: $m; - .tick-label.tick-label-y { - text-align: left; - } - } - } - } - } - - &.l-pane-l { -// @include test(red); - right: auto; - min-width: 50px; - max-width: 90%; - width: $timelinePaneLeftW; - } - - &.l-pane-r { -// @include test(blue); - left: 0; - &:hover { - .l-hover-btns-holder { - @include trans-prop-nice-fade(100ms); - opacity: 1; - } - } - } - - &.l-pane-top { -// @include test(green); - bottom: $timelinePaneBtmH; - } - &.l-pane-btm { -// @include test(orange); - top: auto; - min-height: 20px; - max-height: 80%; - height: $timelinePaneBtmH; - } - } - - .l-swimlane { - height: $timelineSwimlaneH; - position: relative; - } - - // Header - .s-timeline-tabular .l-header, - .s-timeline-gantt .l-header { -// @include test(white,0.05); - @include absPosDefault(0, visible); - bottom: auto; height: $timelineTopPaneHeaderH; - - .l-header-elem { - @include absPosDefault($timelineTopPaneHeaderElemMargin, visible); -// bottom: auto; height: 15px; - display: block; - &.l-labels { - .l-label { - position: absolute; - width: 140px; - margin-left: -70px; - text-align: center; - } - } - } - } - - .l-hover-btns-holder { - @include absPosDefault(); - @include box-sizing(border-box); - @include trans-prop-nice-fade(500ms); - opacity: 0; - height: $timelineTopPaneHeaderH; - width: 100px; left: auto; - padding: $interiorMargin; - text-align: right; - z-index: 10; - } - - // Tabular Columns - .l-cols { -// @include test(#66ff66, 0.1); - @include absPosDefault(0, visible); - text-wrap: none; - white-space: nowrap; - .l-col { - @include box-sizing(border-box); - @include ellipsize(); -// @include test(red, 0.05); - display: inline-block; - height: 100%; - padding: 0 $interiorMargin; - position: relative; - text-wrap: none; - white-space: nowrap; - - &.l-col-icon { - width: $timelineColIconW; - text-align: center; - padding: 0; - .ui-symbol { - color: $colorKey; - } - } - - &.l-plot-resource { - border-left: none !important; - cursor: pointer; - padding-left: 0; -// .ui-symbol { -// color: $colorFormValid; -// } - } - - &.l-title { - width: $timelineColTitleW; - } - - &.l-start, - &.l-end, - &.l-duration { - width: $timelineColDatetimeW; - } - - //&.l-duration { - // width: $timelineColDurationW; - //} - - &.l-activity-modes { - display: none; // Temp, until modes can be displayed - width: $timelineColActivityModesW; - } - - } - } - - .s-timeline-tabular { - .l-header .l-cols { - top: $timelineTopPaneHeaderElemMargin; bottom: $timelineTopPaneHeaderElemMargin; - .l-col { - border-left: 1px solid rgba(#fff, 0.1); -// height: 100%; - } - } - - .l-pane-l { - // Left pane of the tabular area - .l-cols { - left: $timelineTopPaneHeaderElemMargin; - .s-label .ui-symbol.icon { - //color: $colorKeyFg; - color: $activityTypeTabularFgIcon; - } - } - } - - .l-pane-r { - // Right pane of the tabular area -// @include test(red, 0.05); - } - } - - .splitter { - // Top of splitter within Timelines should be 0 - top: 0; - } - - // Ticks - .l-ticks, - .l-subticks { - @include absPosDefault(); - top: auto; bottom: $interiorMarginSm; - } - - .l-ticks { - height: 10px - } - - .l-subticks { - height: 5px - } -} - -//*************************************************************** STYLING -.s-timeline { - font-size: 0.75rem; - .s-header { - background-color: $timelineHeaderColorBg; - } - .s-swimlane { - // @include transition-property(background-color); - // @include transition-duration(0.2s); - // @include transition-timing-function(ease-out); - // border-top: 1px solid rgba(black, 0.2); - border-bottom: 1px solid rgba(white, 0.1); - line-height: $activityBarH + 2 + 1; - /* &:hover { - background: rgba(white, 0.1); - }*/ - &.exceeded { - @include bgDiagonalStripes(#fff, 0.05, $timelineSwimlaneH + 1); - } - - &.selected { - $bg: $colorSwimlaneSelectedBg; - background-color: $bg; - color: #fff; -// @include background-image(linear-gradient(darken($bg, 5), $bg)); - - .s-timeline-gantt .bar { - @include activityBg($colorSwimlaneSelectedGanttBg, 10); - color: $colorSwimlaneSelectedGanttFg; -// background-color: red; -// background-image: none; - } - } - - &.drop-into { - background-color: rgba($colorDropTarg, 0.7); - .s-timeline-gantt { - opacity: 0.7; - } - } - &.drop-after { - background-color: rgba(#000, 0.2); - border-bottom-color: rgba($colorDropTarg, 1.0); - } - } - - .s-ticks { - @include bgTicks($timelineColorAlt1); - } - .s-hover-btns-holder { - $bg: $timelineHeaderColorBg; - $bga: 1; - $l: 5%; - @include background-image(linear-gradient(-90deg, rgba($bg, $bga), rgba($bg, $bga) 70%, rgba($bg, 0) 100%)); - .s-btn { - @include containerSubtle(lighten($colorBodyBg, $l), lighten($colorBodyFg, $l), true); - } - } -} - -.edit-mode .s-swimlane { - cursor: pointer; - .s-label { - @include border-radius($controlCr); - padding: 2px 5px; - &:hover { - background: rgba(#fff, 0.1); - color: #fff; - } - } -} - - From de59f191b88ad88e4cc8b79183043cd6c619c267 Mon Sep 17 00:00:00 2001 From: Charles Hacskaylo Date: Fri, 20 Nov 2015 09:14:07 -0800 Subject: [PATCH 04/88] [Frontend] Relocating files open #208 Moving initial files into new positions, based on Victor's work in #242; --- bundles.json | 1 - platform/features/timeline/bundle.json | 5 +++++ .../timeline/{themes => res}/compile-themes-sass.sh | 0 .../timeline/{themes/espresso => }/res/config.rb | 0 .../{themes/espresso => }/res/css/timeline.css | 0 .../{themes/espresso => }/res/sass/_activities.scss | 0 .../{themes/espresso => }/res/sass/_constants.scss | 0 .../{themes/espresso => }/res/sass/_timelines.scss | 0 .../{themes/espresso => }/res/sass/timeline.scss | 0 .../features/timeline/themes/espresso/bundle.json | 12 ------------ 10 files changed, 5 insertions(+), 13 deletions(-) rename platform/features/timeline/{themes => res}/compile-themes-sass.sh (100%) rename platform/features/timeline/{themes/espresso => }/res/config.rb (100%) rename platform/features/timeline/{themes/espresso => }/res/css/timeline.css (100%) rename platform/features/timeline/{themes/espresso => }/res/sass/_activities.scss (100%) rename platform/features/timeline/{themes/espresso => }/res/sass/_constants.scss (100%) rename platform/features/timeline/{themes/espresso => }/res/sass/_timelines.scss (100%) rename platform/features/timeline/{themes/espresso => }/res/sass/timeline.scss (100%) delete mode 100644 platform/features/timeline/themes/espresso/bundle.json diff --git a/bundles.json b/bundles.json index 6a5864ae57..3f7c7c16f8 100644 --- a/bundles.json +++ b/bundles.json @@ -23,7 +23,6 @@ "platform/features/plot", "platform/features/scrolling", "platform/features/timeline", - "platform/features/timeline/themes/espresso", "platform/forms", "platform/identity", "platform/persistence/local", diff --git a/platform/features/timeline/bundle.json b/platform/features/timeline/bundle.json index 4bd6c9dd7c..e44c0ca21e 100644 --- a/platform/features/timeline/bundle.json +++ b/platform/features/timeline/bundle.json @@ -217,6 +217,11 @@ } } ], + "stylesheets": [ + { + "stylesheetUrl": "css/timeline.css" + } + ], "representations": [ { "key": "gantt", diff --git a/platform/features/timeline/themes/compile-themes-sass.sh b/platform/features/timeline/res/compile-themes-sass.sh similarity index 100% rename from platform/features/timeline/themes/compile-themes-sass.sh rename to platform/features/timeline/res/compile-themes-sass.sh diff --git a/platform/features/timeline/themes/espresso/res/config.rb b/platform/features/timeline/res/config.rb similarity index 100% rename from platform/features/timeline/themes/espresso/res/config.rb rename to platform/features/timeline/res/config.rb diff --git a/platform/features/timeline/themes/espresso/res/css/timeline.css b/platform/features/timeline/res/css/timeline.css similarity index 100% rename from platform/features/timeline/themes/espresso/res/css/timeline.css rename to platform/features/timeline/res/css/timeline.css diff --git a/platform/features/timeline/themes/espresso/res/sass/_activities.scss b/platform/features/timeline/res/sass/_activities.scss similarity index 100% rename from platform/features/timeline/themes/espresso/res/sass/_activities.scss rename to platform/features/timeline/res/sass/_activities.scss diff --git a/platform/features/timeline/themes/espresso/res/sass/_constants.scss b/platform/features/timeline/res/sass/_constants.scss similarity index 100% rename from platform/features/timeline/themes/espresso/res/sass/_constants.scss rename to platform/features/timeline/res/sass/_constants.scss diff --git a/platform/features/timeline/themes/espresso/res/sass/_timelines.scss b/platform/features/timeline/res/sass/_timelines.scss similarity index 100% rename from platform/features/timeline/themes/espresso/res/sass/_timelines.scss rename to platform/features/timeline/res/sass/_timelines.scss diff --git a/platform/features/timeline/themes/espresso/res/sass/timeline.scss b/platform/features/timeline/res/sass/timeline.scss similarity index 100% rename from platform/features/timeline/themes/espresso/res/sass/timeline.scss rename to platform/features/timeline/res/sass/timeline.scss diff --git a/platform/features/timeline/themes/espresso/bundle.json b/platform/features/timeline/themes/espresso/bundle.json deleted file mode 100644 index eef844096c..0000000000 --- a/platform/features/timeline/themes/espresso/bundle.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "name": "Timeline Styling", - "description": "CSS for Timelines. Ported from /warp", - "extensions": { - "stylesheets": [ - { - "stylesheetUrl": "css/timeline.css", - "priority": "mandatory" - } - ] - } -} From fc53dbd8a4cbbaa76a457564287760d2c17e8669 Mon Sep 17 00:00:00 2001 From: Charles Hacskaylo Date: Fri, 20 Nov 2015 15:23:08 -0800 Subject: [PATCH 05/88] [Frontend] Themes added to Timelines open #208 Espresso and Snow now supported; bulk of work done except for minor cleanups, like zoom buttons; Dragging not working currently in Timelines; --- .../themes/snow/res/sass/_mixins.scss | 2 +- platform/features/timeline/bundle.json | 8 + .../timeline/res/compile-themes-sass.sh | 7 - .../timeline/res/css/timeline-espresso.css | 299 +++++++++++++++ .../timeline/res/css/timeline-snow.css | 290 ++++++++++++++ .../features/timeline/res/css/timeline.css | 355 +++++++----------- .../features/timeline/res/sass-compile.sh | 4 + .../timeline/res/sass/_activities.scss | 29 -- .../res/sass/_constants-espresso.scss | 42 +++ .../timeline/res/sass/_constants-snow.scss | 42 +++ .../timeline/res/sass/_constants.scss | 35 +- .../timeline/res/sass/_timeline-thematic.scss | 149 ++++++++ .../timeline/res/sass/_timelines.scss | 119 ++---- .../timeline/res/sass/timeline-espresso.scss | 33 ++ .../timeline/res/sass/timeline-snow.scss | 32 ++ .../features/timeline/res/sass/timeline.scss | 29 +- 16 files changed, 1104 insertions(+), 371 deletions(-) delete mode 100644 platform/features/timeline/res/compile-themes-sass.sh create mode 100644 platform/features/timeline/res/css/timeline-espresso.css create mode 100644 platform/features/timeline/res/css/timeline-snow.css create mode 100644 platform/features/timeline/res/sass-compile.sh create mode 100644 platform/features/timeline/res/sass/_constants-espresso.scss create mode 100644 platform/features/timeline/res/sass/_constants-snow.scss create mode 100644 platform/features/timeline/res/sass/_timeline-thematic.scss create mode 100644 platform/features/timeline/res/sass/timeline-espresso.scss create mode 100644 platform/features/timeline/res/sass/timeline-snow.scss diff --git a/platform/commonUI/themes/snow/res/sass/_mixins.scss b/platform/commonUI/themes/snow/res/sass/_mixins.scss index e8ab65d5f1..05a5c4fb64 100644 --- a/platform/commonUI/themes/snow/res/sass/_mixins.scss +++ b/platform/commonUI/themes/snow/res/sass/_mixins.scss @@ -1,4 +1,4 @@ -@mixin containerSubtle($bg: $colorBodyBg, $fg: $colorBodyFg) { +@mixin containerSubtle($bg: $colorBodyBg, $fg: $colorBodyFg, $hover: false) { @include containerBase($bg, $fg); @include boxShdw($shdwBtns); } diff --git a/platform/features/timeline/bundle.json b/platform/features/timeline/bundle.json index e44c0ca21e..e532abc971 100644 --- a/platform/features/timeline/bundle.json +++ b/platform/features/timeline/bundle.json @@ -220,6 +220,14 @@ "stylesheets": [ { "stylesheetUrl": "css/timeline.css" + }, + { + "stylesheetUrl": "css/timeline-espresso.css", + "theme": "espresso" + }, + { + "stylesheetUrl": "css/timeline-snow.css", + "theme": "snow" } ], "representations": [ diff --git a/platform/features/timeline/res/compile-themes-sass.sh b/platform/features/timeline/res/compile-themes-sass.sh deleted file mode 100644 index 6e0e18e677..0000000000 --- a/platform/features/timeline/res/compile-themes-sass.sh +++ /dev/null @@ -1,7 +0,0 @@ -echo "*** Compiling timeline-espresso" -cd espresso/res -compass compile --force - -# echo "*** Compiling timeline-snow" -# cd espresso/snow -# compass compile --force \ No newline at end of file diff --git a/platform/features/timeline/res/css/timeline-espresso.css b/platform/features/timeline/res/css/timeline-espresso.css new file mode 100644 index 0000000000..895fdb8294 --- /dev/null +++ b/platform/features/timeline/res/css/timeline-espresso.css @@ -0,0 +1,299 @@ +/***************************************************************************** + * Open MCT Web, Copyright (c) 2014-2015, United States Government + * as represented by the Administrator of the National Aeronautics and Space + * Administration. All rights reserved. + * + * Open MCT Web is licensed under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * http://www.apache.org/licenses/LICENSE-2.0. + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * License for the specific language governing permissions and limitations + * under the License. + * + * Open MCT Web includes source code licensed under additional open source + * licenses. See the Open Source Licenses file (LICENSES.md) included with + * this source code distribution or the Licensing information page available + * at runtime from the About dialog for additional information. + *****************************************************************************/ +/***************************************************************************** + * Open MCT Web, Copyright (c) 2014-2015, United States Government + * as represented by the Administrator of the National Aeronautics and Space + * Administration. All rights reserved. + * + * Open MCT Web is licensed under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * http://www.apache.org/licenses/LICENSE-2.0. + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * License for the specific language governing permissions and limitations + * under the License. + * + * Open MCT Web includes source code licensed under additional open source + * licenses. See the Open Source Licenses file (LICENSES.md) included with + * this source code distribution or the Licensing information page available + * at runtime from the About dialog for additional information. + *****************************************************************************/ +/************************** FEATURES */ +/************************** VERY INFLUENTIAL GLOBAL DIMENSIONS */ +/************************** RATIOS */ +/************************** LAYOUT */ +/************************** CONTROLS */ +/************************** PATHS */ +/************************** TIMINGS */ +/************************** LIMITS */ +/***************************************************************************** + * Open MCT Web, Copyright (c) 2014-2015, United States Government + * as represented by the Administrator of the National Aeronautics and Space + * Administration. All rights reserved. + * + * Open MCT Web is licensed under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * http://www.apache.org/licenses/LICENSE-2.0. + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * License for the specific language governing permissions and limitations + * under the License. + * + * Open MCT Web includes source code licensed under additional open source + * licenses. See the Open Source Licenses file (LICENSES.md) included with + * this source code distribution or the Licensing information page available + * at runtime from the About dialog for additional information. + *****************************************************************************/ +/*********************************************** CONTROLS, FORM ELEMENTS */ +/***************************************************************************** + * Open MCT Web, Copyright (c) 2014-2015, United States Government + * as represented by the Administrator of the National Aeronautics and Space + * Administration. All rights reserved. + * + * Open MCT Web is licensed under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * http://www.apache.org/licenses/LICENSE-2.0. + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * License for the specific language governing permissions and limitations + * under the License. + * + * Open MCT Web includes source code licensed under additional open source + * licenses. See the Open Source Licenses file (LICENSES.md) included with + * this source code distribution or the Licensing information page available + * at runtime from the About dialog for additional information. + *****************************************************************************/ +/***************************************************************************** + * Open MCT Web, Copyright (c) 2014-2015, United States Government + * as represented by the Administrator of the National Aeronautics and Space + * Administration. All rights reserved. + * + * Open MCT Web is licensed under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * http://www.apache.org/licenses/LICENSE-2.0. + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * License for the specific language governing permissions and limitations + * under the License. + * + * Open MCT Web includes source code licensed under additional open source + * licenses. See the Open Source Licenses file (LICENSES.md) included with + * this source code distribution or the Licensing information page available + * at runtime from the About dialog for additional information. + *****************************************************************************/ +/***************************************************************************** + * Open MCT Web, Copyright (c) 2014-2015, United States Government + * as represented by the Administrator of the National Aeronautics and Space + * Administration. All rights reserved. + * + * Open MCT Web is licensed under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * http://www.apache.org/licenses/LICENSE-2.0. + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * License for the specific language governing permissions and limitations + * under the License. + * + * Open MCT Web includes source code licensed under additional open source + * licenses. See the Open Source Licenses file (LICENSES.md) included with + * this source code distribution or the Licensing information page available + * at runtime from the About dialog for additional information. + *****************************************************************************/ +/* line 26, ../sass/_timeline-thematic.scss */ +.l-timeline-holder .l-timeline-pane.t-pane-h.l-timeline-resource-legend .l-legend-items { + color: #999; } + +/* line 36, ../sass/_timeline-thematic.scss */ +.s-timeline-gantt .bar { + color: #fff; + background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuNSIgeTE9IjAuMCIgeDI9IjAuNSIgeTI9IjEuMCI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzc3NzdiYiIvPjxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iIzU1NTVhYSIvPjwvbGluZWFyR3JhZGllbnQ+PC9kZWZzPjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9InVybCgjZ3JhZCkiIC8+PC9zdmc+IA=='); + background-size: 100%; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #7777bb), color-stop(100%, #5555aa)); + background-image: -moz-linear-gradient(#7777bb, #5555aa); + background-image: -webkit-linear-gradient(#7777bb, #5555aa); + background-image: linear-gradient(#7777bb, #5555aa); + -moz-border-radius: 3px; + -webkit-border-radius: 3px; + border-radius: 3px; + -moz-box-shadow: rgba(0, 0, 0, 0.4) 0 1px 3px; + -webkit-box-shadow: rgba(0, 0, 0, 0.4) 0 1px 3px; + box-shadow: rgba(0, 0, 0, 0.4) 0 1px 3px; } + /* line 41, ../sass/_timeline-thematic.scss */ + .s-timeline-gantt .bar.expanded { + -moz-border-radius-topleft: 3px; + -webkit-border-top-left-radius: 3px; + border-top-left-radius: 3px; + -moz-border-radius-topright: 3px; + -webkit-border-top-right-radius: 3px; + border-top-right-radius: 3px; + -moz-border-radius-bottomleft: 0; + -webkit-border-bottom-left-radius: 0; + border-bottom-left-radius: 0; + -moz-border-radius-bottomright: 0; + -webkit-border-bottom-right-radius: 0; + border-bottom-right-radius: 0; } + /* line 45, ../sass/_timeline-thematic.scss */ + .s-timeline-gantt .bar.leaf { + -moz-border-radius-topleft: 0; + -webkit-border-top-left-radius: 0; + border-top-left-radius: 0; + -moz-border-radius-topright: 0; + -webkit-border-top-right-radius: 0; + border-top-right-radius: 0; + -moz-border-radius-bottomleft: 3px; + -webkit-border-bottom-left-radius: 3px; + border-bottom-left-radius: 3px; + -moz-border-radius-bottomright: 3px; + -webkit-border-bottom-right-radius: 3px; + border-bottom-right-radius: 3px; } + /* line 49, ../sass/_timeline-thematic.scss */ + .s-timeline-gantt .bar .s-toggle { + color: #0099cc; } + +/* line 57, ../sass/_timeline-thematic.scss */ +.s-timeline-tabular .l-header .l-cols .l-col { + border-left: 1px solid #666666; } +/* line 65, ../sass/_timeline-thematic.scss */ +.s-timeline-tabular .l-pane-l .l-cols .s-label .ui-symbol.icon { + color: #8594ff; } + +/* line 74, ../sass/_timeline-thematic.scss */ +.edit-mode .s-timeline-gantt .bar:hover { + background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuNSIgeTE9IjAuMCIgeDI9IjAuNSIgeTI9IjEuMCI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzk5OTljYyIvPjxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iIzc3NzdiYiIvPjwvbGluZWFyR3JhZGllbnQ+PC9kZWZzPjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9InVybCgjZ3JhZCkiIC8+PC9zdmc+IA=='); + background-size: 100%; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #9999cc), color-stop(100%, #7777bb)); + background-image: -moz-linear-gradient(#9999cc, #7777bb); + background-image: -webkit-linear-gradient(#9999cc, #7777bb); + background-image: linear-gradient(#9999cc, #7777bb); } + +/* line 81, ../sass/_timeline-thematic.scss */ +.s-timeline { + font-size: 0.75rem; } + /* line 83, ../sass/_timeline-thematic.scss */ + .s-timeline .s-header { + background-color: #404040; } + /* line 86, ../sass/_timeline-thematic.scss */ + .s-timeline .s-swimlane { + border-bottom: 1px solid #4d4d4d; + line-height: 20px; } + /* line 89, ../sass/_timeline-thematic.scss */ + .s-timeline .s-swimlane.exceeded { + background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjEuMCIgeTE9IjEuMCIgeDI9IjAuMCIgeTI9IjAuMCI+PHN0b3Agb2Zmc2V0PSIyNSUiIHN0b3AtY29sb3I9IiNmZmZmZmYiIHN0b3Atb3BhY2l0eT0iMC4wNSIvPjxzdG9wIG9mZnNldD0iMjUlIiBzdG9wLWNvbG9yPSIjMDAwMDAwIiBzdG9wLW9wYWNpdHk9IjAuMCIvPjxzdG9wIG9mZnNldD0iNTAlIiBzdG9wLWNvbG9yPSIjMDAwMDAwIiBzdG9wLW9wYWNpdHk9IjAuMCIvPjxzdG9wIG9mZnNldD0iNTAlIiBzdG9wLWNvbG9yPSIjZmZmZmZmIiBzdG9wLW9wYWNpdHk9IjAuMDUiLz48c3RvcCBvZmZzZXQ9Ijc1JSIgc3RvcC1jb2xvcj0iI2ZmZmZmZiIgc3RvcC1vcGFjaXR5PSIwLjA1Ii8+PHN0b3Agb2Zmc2V0PSI3NSUiIHN0b3AtY29sb3I9IiMwMDAwMDAiIHN0b3Atb3BhY2l0eT0iMC4wIi8+PHN0b3Agb2Zmc2V0PSIxMDAlIiBzdG9wLWNvbG9yPSIjMDAwMDAwIiBzdG9wLW9wYWNpdHk9IjAuMCIvPjwvbGluZWFyR3JhZGllbnQ+PC9kZWZzPjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9InVybCgjZ3JhZCkiIC8+PC9zdmc+IA=='); + background-size: 100%; + background-image: -moz-linear-gradient(135deg, rgba(255, 255, 255, 0.05) 25%, rgba(0, 0, 0, 0) 25%, rgba(0, 0, 0, 0) 50%, rgba(255, 255, 255, 0.05) 50%, rgba(255, 255, 255, 0.05) 75%, rgba(0, 0, 0, 0) 75%, rgba(0, 0, 0, 0) 100%); + background-image: -webkit-linear-gradient(135deg, rgba(255, 255, 255, 0.05) 25%, rgba(0, 0, 0, 0) 25%, rgba(0, 0, 0, 0) 50%, rgba(255, 255, 255, 0.05) 50%, rgba(255, 255, 255, 0.05) 75%, rgba(0, 0, 0, 0) 75%, rgba(0, 0, 0, 0) 100%); + background-image: linear-gradient(-45deg, rgba(255, 255, 255, 0.05) 25%, rgba(0, 0, 0, 0) 25%, rgba(0, 0, 0, 0) 50%, rgba(255, 255, 255, 0.05) 50%, rgba(255, 255, 255, 0.05) 75%, rgba(0, 0, 0, 0) 75%, rgba(0, 0, 0, 0) 100%); + background-repeat: repeat; + background-size: 22px 22px; } + /* line 93, ../sass/_timeline-thematic.scss */ + .s-timeline .s-swimlane.selected { + background-color: #222; + color: #ccc; } + /* line 97, ../sass/_timeline-thematic.scss */ + .s-timeline .s-swimlane.selected .s-timeline-gantt .bar { + background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuNSIgeTE9IjAuMCIgeDI9IjAuNSIgeTI9IjEuMCI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2U2ZTZlNiIvPjxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iI2NjY2NjYyIvPjwvbGluZWFyR3JhZGllbnQ+PC9kZWZzPjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9InVybCgjZ3JhZCkiIC8+PC9zdmc+IA=='); + background-size: 100%; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #e6e6e6), color-stop(100%, #cccccc)); + background-image: -moz-linear-gradient(#e6e6e6, #cccccc); + background-image: -webkit-linear-gradient(#e6e6e6, #cccccc); + background-image: linear-gradient(#e6e6e6, #cccccc); + color: #333; } + /* line 103, ../sass/_timeline-thematic.scss */ + .s-timeline .s-swimlane.drop-into { + background-color: rgba(85, 85, 170, 0.7); } + /* line 105, ../sass/_timeline-thematic.scss */ + .s-timeline .s-swimlane.drop-into .s-timeline-gantt { + opacity: 0.7; } + /* line 109, ../sass/_timeline-thematic.scss */ + .s-timeline .s-swimlane.drop-after { + background-color: rgba(0, 0, 0, 0.2); + border-bottom-color: #5555aa; } + /* line 115, ../sass/_timeline-thematic.scss */ + .s-timeline .s-ticks { + background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuMCIgeTE9IjAuNSIgeDI9IjEuMCIgeTI9IjAuNSI+PHN0b3Agb2Zmc2V0PSIxcHgiIHN0b3AtY29sb3I9IiM1OTU5NTkiLz48c3RvcCBvZmZzZXQ9IjFweCIgc3RvcC1jb2xvcj0iIzAwMDAwMCIgc3RvcC1vcGFjaXR5PSIwLjAiLz48c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiMwMDAwMDAiIHN0b3Atb3BhY2l0eT0iMC4wIi8+PC9saW5lYXJHcmFkaWVudD48L2RlZnM+PHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0idXJsKCNncmFkKSIgLz48L3N2Zz4g'); + background-size: 100%; + background-image: -moz-linear-gradient(0deg, #595959 1px, rgba(0, 0, 0, 0) 1px, rgba(0, 0, 0, 0) 100%); + background-image: -webkit-linear-gradient(0deg, #595959 1px, rgba(0, 0, 0, 0) 1px, rgba(0, 0, 0, 0) 100%); + background-image: linear-gradient(90deg, #595959 1px, rgba(0, 0, 0, 0) 1px, rgba(0, 0, 0, 0) 100%); + background-repeat: repeat-x; } + /* line 118, ../sass/_timeline-thematic.scss */ + .s-timeline .s-hover-btns-holder { + background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjEuMCIgeTE9IjAuNSIgeDI9IjAuMCIgeTI9IjAuNSI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzQwNDA0MCIvPjxzdG9wIG9mZnNldD0iNzAlIiBzdG9wLWNvbG9yPSIjNDA0MDQwIi8+PHN0b3Agb2Zmc2V0PSIxMDAlIiBzdG9wLWNvbG9yPSIjNDA0MDQwIiBzdG9wLW9wYWNpdHk9IjAuMCIvPjwvbGluZWFyR3JhZGllbnQ+PC9kZWZzPjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9InVybCgjZ3JhZCkiIC8+PC9zdmc+IA=='); + background-size: 100%; + background-image: -moz-linear-gradient(180deg, #404040, #404040 70%, rgba(64, 64, 64, 0) 100%); + background-image: -webkit-linear-gradient(180deg, #404040, #404040 70%, rgba(64, 64, 64, 0) 100%); + background-image: linear-gradient(-90deg, #404040, #404040 70%, rgba(64, 64, 64, 0) 100%); } + /* line 123, ../sass/_timeline-thematic.scss */ + .s-timeline .s-hover-btns-holder .s-btn { + background-color: #404040; + -moz-border-radius: 3px; + -webkit-border-radius: 3px; + border-radius: 3px; + -moz-box-sizing: border-box; + -webkit-box-sizing: border-box; + box-sizing: border-box; + color: #a6a6a6; + display: inline-block; + background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuNSIgeTE9IjAuMCIgeDI9IjAuNSIgeTI9IjEuMCI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzRkNGQ0ZCIvPjxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iIzQwNDA0MCIvPjwvbGluZWFyR3JhZGllbnQ+PC9kZWZzPjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9InVybCgjZ3JhZCkiIC8+PC9zdmc+IA=='); + background-size: 100%; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #4d4d4d), color-stop(100%, #404040)); + background-image: -moz-linear-gradient(#4d4d4d, #404040); + background-image: -webkit-linear-gradient(#4d4d4d, #404040); + background-image: linear-gradient(#4d4d4d, #404040); + -moz-box-shadow: rgba(0, 0, 0, 0.2) 0 1px 2px; + -webkit-box-shadow: rgba(0, 0, 0, 0.2) 0 1px 2px; + box-shadow: rgba(0, 0, 0, 0.2) 0 1px 2px; } + /* line 129, ../sass/_timeline-thematic.scss */ + .s-timeline .l-timeline-resource-graph .l-graph { + background: rgba(0, 0, 0, 0.2); } + /* line 132, ../sass/_timeline-thematic.scss */ + .s-timeline .l-timeline-resource-graph .l-title { + color: #999; } + +/* line 138, ../sass/_timeline-thematic.scss */ +.edit-mode .s-swimlane { + cursor: pointer; } + /* line 140, ../sass/_timeline-thematic.scss */ + .edit-mode .s-swimlane .s-label { + -moz-border-radius: 3px; + -webkit-border-radius: 3px; + border-radius: 3px; + padding: 2px 5px; } + /* line 143, ../sass/_timeline-thematic.scss */ + .edit-mode .s-swimlane .s-label:hover { + background: rgba(255, 255, 255, 0.1); + color: #fff; } diff --git a/platform/features/timeline/res/css/timeline-snow.css b/platform/features/timeline/res/css/timeline-snow.css new file mode 100644 index 0000000000..6d5190ae8f --- /dev/null +++ b/platform/features/timeline/res/css/timeline-snow.css @@ -0,0 +1,290 @@ +/***************************************************************************** + * Open MCT Web, Copyright (c) 2014-2015, United States Government + * as represented by the Administrator of the National Aeronautics and Space + * Administration. All rights reserved. + * + * Open MCT Web is licensed under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * http://www.apache.org/licenses/LICENSE-2.0. + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * License for the specific language governing permissions and limitations + * under the License. + * + * Open MCT Web includes source code licensed under additional open source + * licenses. See the Open Source Licenses file (LICENSES.md) included with + * this source code distribution or the Licensing information page available + * at runtime from the About dialog for additional information. + *****************************************************************************/ +/***************************************************************************** + * Open MCT Web, Copyright (c) 2014-2015, United States Government + * as represented by the Administrator of the National Aeronautics and Space + * Administration. All rights reserved. + * + * Open MCT Web is licensed under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * http://www.apache.org/licenses/LICENSE-2.0. + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * License for the specific language governing permissions and limitations + * under the License. + * + * Open MCT Web includes source code licensed under additional open source + * licenses. See the Open Source Licenses file (LICENSES.md) included with + * this source code distribution or the Licensing information page available + * at runtime from the About dialog for additional information. + *****************************************************************************/ +/************************** FEATURES */ +/************************** VERY INFLUENTIAL GLOBAL DIMENSIONS */ +/************************** RATIOS */ +/************************** LAYOUT */ +/************************** CONTROLS */ +/************************** PATHS */ +/************************** TIMINGS */ +/************************** LIMITS */ +/***************************************************************************** + * Open MCT Web, Copyright (c) 2014-2015, United States Government + * as represented by the Administrator of the National Aeronautics and Space + * Administration. All rights reserved. + * + * Open MCT Web is licensed under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * http://www.apache.org/licenses/LICENSE-2.0. + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * License for the specific language governing permissions and limitations + * under the License. + * + * Open MCT Web includes source code licensed under additional open source + * licenses. See the Open Source Licenses file (LICENSES.md) included with + * this source code distribution or the Licensing information page available + * at runtime from the About dialog for additional information. + *****************************************************************************/ +/*********************************************** CONTROLS, FORM ELEMENTS */ +/***************************************************************************** + * Open MCT Web, Copyright (c) 2014-2015, United States Government + * as represented by the Administrator of the National Aeronautics and Space + * Administration. All rights reserved. + * + * Open MCT Web is licensed under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * http://www.apache.org/licenses/LICENSE-2.0. + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * License for the specific language governing permissions and limitations + * under the License. + * + * Open MCT Web includes source code licensed under additional open source + * licenses. See the Open Source Licenses file (LICENSES.md) included with + * this source code distribution or the Licensing information page available + * at runtime from the About dialog for additional information. + *****************************************************************************/ +/***************************************************************************** + * Open MCT Web, Copyright (c) 2014-2015, United States Government + * as represented by the Administrator of the National Aeronautics and Space + * Administration. All rights reserved. + * + * Open MCT Web is licensed under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * http://www.apache.org/licenses/LICENSE-2.0. + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * License for the specific language governing permissions and limitations + * under the License. + * + * Open MCT Web includes source code licensed under additional open source + * licenses. See the Open Source Licenses file (LICENSES.md) included with + * this source code distribution or the Licensing information page available + * at runtime from the About dialog for additional information. + *****************************************************************************/ +/***************************************************************************** + * Open MCT Web, Copyright (c) 2014-2015, United States Government + * as represented by the Administrator of the National Aeronautics and Space + * Administration. All rights reserved. + * + * Open MCT Web is licensed under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * http://www.apache.org/licenses/LICENSE-2.0. + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * License for the specific language governing permissions and limitations + * under the License. + * + * Open MCT Web includes source code licensed under additional open source + * licenses. See the Open Source Licenses file (LICENSES.md) included with + * this source code distribution or the Licensing information page available + * at runtime from the About dialog for additional information. + *****************************************************************************/ +/* line 26, ../sass/_timeline-thematic.scss */ +.l-timeline-holder .l-timeline-pane.t-pane-h.l-timeline-resource-legend .l-legend-items { + color: #666; } + +/* line 36, ../sass/_timeline-thematic.scss */ +.s-timeline-gantt .bar { + color: #fff; + background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuNSIgeTE9IjAuMCIgeDI9IjAuNSIgeTI9IjEuMCI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzc3NzdiYiIvPjxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iIzU1NTVhYSIvPjwvbGluZWFyR3JhZGllbnQ+PC9kZWZzPjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9InVybCgjZ3JhZCkiIC8+PC9zdmc+IA=='); + background-size: 100%; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #7777bb), color-stop(100%, #5555aa)); + background-image: -moz-linear-gradient(#7777bb, #5555aa); + background-image: -webkit-linear-gradient(#7777bb, #5555aa); + background-image: linear-gradient(#7777bb, #5555aa); + -moz-border-radius: 4px; + -webkit-border-radius: 4px; + border-radius: 4px; + -moz-box-shadow: rgba(0, 0, 0, 0.1) 0 1px 3px; + -webkit-box-shadow: rgba(0, 0, 0, 0.1) 0 1px 3px; + box-shadow: rgba(0, 0, 0, 0.1) 0 1px 3px; } + /* line 41, ../sass/_timeline-thematic.scss */ + .s-timeline-gantt .bar.expanded { + -moz-border-radius-topleft: 4px; + -webkit-border-top-left-radius: 4px; + border-top-left-radius: 4px; + -moz-border-radius-topright: 4px; + -webkit-border-top-right-radius: 4px; + border-top-right-radius: 4px; + -moz-border-radius-bottomleft: 0; + -webkit-border-bottom-left-radius: 0; + border-bottom-left-radius: 0; + -moz-border-radius-bottomright: 0; + -webkit-border-bottom-right-radius: 0; + border-bottom-right-radius: 0; } + /* line 45, ../sass/_timeline-thematic.scss */ + .s-timeline-gantt .bar.leaf { + -moz-border-radius-topleft: 0; + -webkit-border-top-left-radius: 0; + border-top-left-radius: 0; + -moz-border-radius-topright: 0; + -webkit-border-top-right-radius: 0; + border-top-right-radius: 0; + -moz-border-radius-bottomleft: 4px; + -webkit-border-bottom-left-radius: 4px; + border-bottom-left-radius: 4px; + -moz-border-radius-bottomright: 4px; + -webkit-border-bottom-right-radius: 4px; + border-bottom-right-radius: 4px; } + /* line 49, ../sass/_timeline-thematic.scss */ + .s-timeline-gantt .bar .s-toggle { + color: #0099cc; } + +/* line 57, ../sass/_timeline-thematic.scss */ +.s-timeline-tabular .l-header .l-cols .l-col { + border-left: 1px solid #c9c9c9; } +/* line 65, ../sass/_timeline-thematic.scss */ +.s-timeline-tabular .l-pane-l .l-cols .s-label .ui-symbol.icon { + color: #8594ff; } + +/* line 74, ../sass/_timeline-thematic.scss */ +.edit-mode .s-timeline-gantt .bar:hover { + background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuNSIgeTE9IjAuMCIgeDI9IjAuNSIgeTI9IjEuMCI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzk5OTljYyIvPjxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iIzc3NzdiYiIvPjwvbGluZWFyR3JhZGllbnQ+PC9kZWZzPjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9InVybCgjZ3JhZCkiIC8+PC9zdmc+IA=='); + background-size: 100%; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #9999cc), color-stop(100%, #7777bb)); + background-image: -moz-linear-gradient(#9999cc, #7777bb); + background-image: -webkit-linear-gradient(#9999cc, #7777bb); + background-image: linear-gradient(#9999cc, #7777bb); } + +/* line 81, ../sass/_timeline-thematic.scss */ +.s-timeline { + font-size: 0.75rem; } + /* line 83, ../sass/_timeline-thematic.scss */ + .s-timeline .s-header { + background-color: #efefef; } + /* line 86, ../sass/_timeline-thematic.scss */ + .s-timeline .s-swimlane { + border-bottom: 1px solid #e3e3e3; + line-height: 20px; } + /* line 89, ../sass/_timeline-thematic.scss */ + .s-timeline .s-swimlane.exceeded { + background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjEuMCIgeTE9IjEuMCIgeDI9IjAuMCIgeTI9IjAuMCI+PHN0b3Agb2Zmc2V0PSIyNSUiIHN0b3AtY29sb3I9IiNmZmZmZmYiIHN0b3Atb3BhY2l0eT0iMC4wNSIvPjxzdG9wIG9mZnNldD0iMjUlIiBzdG9wLWNvbG9yPSIjMDAwMDAwIiBzdG9wLW9wYWNpdHk9IjAuMCIvPjxzdG9wIG9mZnNldD0iNTAlIiBzdG9wLWNvbG9yPSIjMDAwMDAwIiBzdG9wLW9wYWNpdHk9IjAuMCIvPjxzdG9wIG9mZnNldD0iNTAlIiBzdG9wLWNvbG9yPSIjZmZmZmZmIiBzdG9wLW9wYWNpdHk9IjAuMDUiLz48c3RvcCBvZmZzZXQ9Ijc1JSIgc3RvcC1jb2xvcj0iI2ZmZmZmZiIgc3RvcC1vcGFjaXR5PSIwLjA1Ii8+PHN0b3Agb2Zmc2V0PSI3NSUiIHN0b3AtY29sb3I9IiMwMDAwMDAiIHN0b3Atb3BhY2l0eT0iMC4wIi8+PHN0b3Agb2Zmc2V0PSIxMDAlIiBzdG9wLWNvbG9yPSIjMDAwMDAwIiBzdG9wLW9wYWNpdHk9IjAuMCIvPjwvbGluZWFyR3JhZGllbnQ+PC9kZWZzPjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9InVybCgjZ3JhZCkiIC8+PC9zdmc+IA=='); + background-size: 100%; + background-image: -moz-linear-gradient(135deg, rgba(255, 255, 255, 0.05) 25%, rgba(0, 0, 0, 0) 25%, rgba(0, 0, 0, 0) 50%, rgba(255, 255, 255, 0.05) 50%, rgba(255, 255, 255, 0.05) 75%, rgba(0, 0, 0, 0) 75%, rgba(0, 0, 0, 0) 100%); + background-image: -webkit-linear-gradient(135deg, rgba(255, 255, 255, 0.05) 25%, rgba(0, 0, 0, 0) 25%, rgba(0, 0, 0, 0) 50%, rgba(255, 255, 255, 0.05) 50%, rgba(255, 255, 255, 0.05) 75%, rgba(0, 0, 0, 0) 75%, rgba(0, 0, 0, 0) 100%); + background-image: linear-gradient(-45deg, rgba(255, 255, 255, 0.05) 25%, rgba(0, 0, 0, 0) 25%, rgba(0, 0, 0, 0) 50%, rgba(255, 255, 255, 0.05) 50%, rgba(255, 255, 255, 0.05) 75%, rgba(0, 0, 0, 0) 75%, rgba(0, 0, 0, 0) 100%); + background-repeat: repeat; + background-size: 22px 22px; } + /* line 93, ../sass/_timeline-thematic.scss */ + .s-timeline .s-swimlane.selected { + background-color: rgba(85, 85, 170, 0.25); + color: #4d4d4d; } + /* line 97, ../sass/_timeline-thematic.scss */ + .s-timeline .s-swimlane.selected .s-timeline-gantt .bar { + background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuNSIgeTE9IjAuMCIgeDI9IjAuNSIgeTI9IjEuMCI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzc3NzdiYiIvPjxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iIzU1NTVhYSIvPjwvbGluZWFyR3JhZGllbnQ+PC9kZWZzPjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9InVybCgjZ3JhZCkiIC8+PC9zdmc+IA=='); + background-size: 100%; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #7777bb), color-stop(100%, #5555aa)); + background-image: -moz-linear-gradient(#7777bb, #5555aa); + background-image: -webkit-linear-gradient(#7777bb, #5555aa); + background-image: linear-gradient(#7777bb, #5555aa); + color: #fff; } + /* line 103, ../sass/_timeline-thematic.scss */ + .s-timeline .s-swimlane.drop-into { + background-color: rgba(85, 85, 170, 0.7); } + /* line 105, ../sass/_timeline-thematic.scss */ + .s-timeline .s-swimlane.drop-into .s-timeline-gantt { + opacity: 0.7; } + /* line 109, ../sass/_timeline-thematic.scss */ + .s-timeline .s-swimlane.drop-after { + background-color: rgba(0, 0, 0, 0.2); + border-bottom-color: #5555aa; } + /* line 115, ../sass/_timeline-thematic.scss */ + .s-timeline .s-ticks { + background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuMCIgeTE9IjAuNSIgeDI9IjEuMCIgeTI9IjAuNSI+PHN0b3Agb2Zmc2V0PSIxcHgiIHN0b3AtY29sb3I9IiNkNmQ2ZDYiLz48c3RvcCBvZmZzZXQ9IjFweCIgc3RvcC1jb2xvcj0iIzAwMDAwMCIgc3RvcC1vcGFjaXR5PSIwLjAiLz48c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiMwMDAwMDAiIHN0b3Atb3BhY2l0eT0iMC4wIi8+PC9saW5lYXJHcmFkaWVudD48L2RlZnM+PHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0idXJsKCNncmFkKSIgLz48L3N2Zz4g'); + background-size: 100%; + background-image: -moz-linear-gradient(0deg, #d6d6d6 1px, rgba(0, 0, 0, 0) 1px, rgba(0, 0, 0, 0) 100%); + background-image: -webkit-linear-gradient(0deg, #d6d6d6 1px, rgba(0, 0, 0, 0) 1px, rgba(0, 0, 0, 0) 100%); + background-image: linear-gradient(90deg, #d6d6d6 1px, rgba(0, 0, 0, 0) 1px, rgba(0, 0, 0, 0) 100%); + background-repeat: repeat-x; } + /* line 118, ../sass/_timeline-thematic.scss */ + .s-timeline .s-hover-btns-holder { + background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjEuMCIgeTE9IjAuNSIgeDI9IjAuMCIgeTI9IjAuNSI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2VmZWZlZiIvPjxzdG9wIG9mZnNldD0iNzAlIiBzdG9wLWNvbG9yPSIjZWZlZmVmIi8+PHN0b3Agb2Zmc2V0PSIxMDAlIiBzdG9wLWNvbG9yPSIjZWZlZmVmIiBzdG9wLW9wYWNpdHk9IjAuMCIvPjwvbGluZWFyR3JhZGllbnQ+PC9kZWZzPjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9InVybCgjZ3JhZCkiIC8+PC9zdmc+IA=='); + background-size: 100%; + background-image: -moz-linear-gradient(180deg, #efefef, #efefef 70%, rgba(239, 239, 239, 0) 100%); + background-image: -webkit-linear-gradient(180deg, #efefef, #efefef 70%, rgba(239, 239, 239, 0) 100%); + background-image: linear-gradient(-90deg, #efefef, #efefef 70%, rgba(239, 239, 239, 0) 100%); } + /* line 123, ../sass/_timeline-thematic.scss */ + .s-timeline .s-hover-btns-holder .s-btn { + background-color: white; + -moz-border-radius: 4px; + -webkit-border-radius: 4px; + border-radius: 4px; + -moz-box-sizing: border-box; + -webkit-box-sizing: border-box; + box-sizing: border-box; + color: #737373; + display: inline-block; } + /* line 129, ../sass/_timeline-thematic.scss */ + .s-timeline .l-timeline-resource-graph .l-graph { + background: rgba(0, 0, 0, 0.1); } + /* line 132, ../sass/_timeline-thematic.scss */ + .s-timeline .l-timeline-resource-graph .l-title { + color: #666; } + +/* line 138, ../sass/_timeline-thematic.scss */ +.edit-mode .s-swimlane { + cursor: pointer; } + /* line 140, ../sass/_timeline-thematic.scss */ + .edit-mode .s-swimlane .s-label { + -moz-border-radius: 4px; + -webkit-border-radius: 4px; + border-radius: 4px; + padding: 2px 5px; } + /* line 143, ../sass/_timeline-thematic.scss */ + .edit-mode .s-swimlane .s-label:hover { + background: rgba(255, 255, 255, 0.1); + color: #fff; } diff --git a/platform/features/timeline/res/css/timeline.css b/platform/features/timeline/res/css/timeline.css index 8bd6537f8f..f7fe2d0f57 100644 --- a/platform/features/timeline/res/css/timeline.css +++ b/platform/features/timeline/res/css/timeline.css @@ -1,3 +1,24 @@ +/***************************************************************************** + * Open MCT Web, Copyright (c) 2014-2015, United States Government + * as represented by the Administrator of the National Aeronautics and Space + * Administration. All rights reserved. + * + * Open MCT Web is licensed under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * http://www.apache.org/licenses/LICENSE-2.0. + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * License for the specific language governing permissions and limitations + * under the License. + * + * Open MCT Web includes source code licensed under additional open source + * licenses. See the Open Source Licenses file (LICENSES.md) included with + * this source code distribution or the Licensing information page available + * at runtime from the About dialog for additional information. + *****************************************************************************/ /***************************************************************************** * Open MCT Web, Copyright (c) 2014-2015, United States Government * as represented by the Administrator of the National Aeronautics and Space @@ -26,6 +47,7 @@ /************************** CONTROLS */ /************************** PATHS */ /************************** TIMINGS */ +/************************** LIMITS */ /***************************************************************************** * Open MCT Web, Copyright (c) 2014-2015, United States Government * as represented by the Administrator of the National Aeronautics and Space @@ -48,6 +70,27 @@ * at runtime from the About dialog for additional information. *****************************************************************************/ /*********************************************** CONTROLS, FORM ELEMENTS */ +/***************************************************************************** + * Open MCT Web, Copyright (c) 2014-2015, United States Government + * as represented by the Administrator of the National Aeronautics and Space + * Administration. All rights reserved. + * + * Open MCT Web is licensed under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * http://www.apache.org/licenses/LICENSE-2.0. + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * License for the specific language governing permissions and limitations + * under the License. + * + * Open MCT Web includes source code licensed under additional open source + * licenses. See the Open Source Licenses file (LICENSES.md) included with + * this source code distribution or the Licensing information page available + * at runtime from the About dialog for additional information. + *****************************************************************************/ /* line 1, ../sass/_activities.scss */ .l-timeline-gantt { position: absolute; @@ -99,69 +142,35 @@ right: 0; left: auto; } -/* line 62, ../sass/_activities.scss */ -.s-timeline-gantt .bar { - color: #fff; - background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuNSIgeTE9IjAuMCIgeDI9IjAuNSIgeTI9IjEuMCI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzc3NzdiYiIvPjxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iIzU1NTVhYSIvPjwvbGluZWFyR3JhZGllbnQ+PC9kZWZzPjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9InVybCgjZ3JhZCkiIC8+PC9zdmc+IA=='); - background-size: 100%; - background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #7777bb), color-stop(100%, #5555aa)); - background-image: -moz-linear-gradient(#7777bb, #5555aa); - background-image: -webkit-linear-gradient(#7777bb, #5555aa); - background-image: linear-gradient(#7777bb, #5555aa); - -moz-border-radius: 3px; - -webkit-border-radius: 3px; - border-radius: 3px; - -moz-box-shadow: rgba(0, 0, 0, 0.4) 0 1px 3px; - -webkit-box-shadow: rgba(0, 0, 0, 0.4) 0 1px 3px; - box-shadow: rgba(0, 0, 0, 0.4) 0 1px 3px; } - /* line 69, ../sass/_activities.scss */ - .s-timeline-gantt .bar.expanded { - -moz-border-radius-topleft: 3px; - -webkit-border-top-left-radius: 3px; - border-top-left-radius: 3px; - -moz-border-radius-topright: 3px; - -webkit-border-top-right-radius: 3px; - border-top-right-radius: 3px; - -moz-border-radius-bottomleft: 0; - -webkit-border-bottom-left-radius: 0; - border-bottom-left-radius: 0; - -moz-border-radius-bottomright: 0; - -webkit-border-bottom-right-radius: 0; - border-bottom-right-radius: 0; } - /* line 73, ../sass/_activities.scss */ - .s-timeline-gantt .bar.leaf { - -moz-border-radius-topleft: 0; - -webkit-border-top-left-radius: 0; - border-top-left-radius: 0; - -moz-border-radius-topright: 0; - -webkit-border-top-right-radius: 0; - border-top-right-radius: 0; - -moz-border-radius-bottomleft: 3px; - -webkit-border-bottom-left-radius: 3px; - border-bottom-left-radius: 3px; - -moz-border-radius-bottomright: 3px; - -webkit-border-bottom-right-radius: 3px; - border-bottom-right-radius: 3px; } - /* line 77, ../sass/_activities.scss */ - .s-timeline-gantt .bar .s-toggle { - color: #0099cc; } - -/* line 85, ../sass/_activities.scss */ -.edit-mode .s-timeline-gantt .bar:hover { - background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuNSIgeTE9IjAuMCIgeDI9IjAuNSIgeTI9IjEuMCI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzk5OTljYyIvPjxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iIzc3NzdiYiIvPjwvbGluZWFyR3JhZGllbnQ+PC9kZWZzPjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9InVybCgjZ3JhZCkiIC8+PC9zdmc+IA=='); - background-size: 100%; - background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #9999cc), color-stop(100%, #7777bb)); - background-image: -moz-linear-gradient(#9999cc, #7777bb); - background-image: -webkit-linear-gradient(#9999cc, #7777bb); - background-image: linear-gradient(#9999cc, #7777bb); } -/* line 90, ../sass/_activities.scss */ +/* line 61, ../sass/_activities.scss */ .edit-mode .s-timeline-gantt .handle { cursor: col-resize; } - /* line 95, ../sass/_activities.scss */ + /* line 66, ../sass/_activities.scss */ .edit-mode .s-timeline-gantt .handle.mid { cursor: ew-resize; } -/* line 2, ../sass/_timelines.scss */ +/***************************************************************************** + * Open MCT Web, Copyright (c) 2014-2015, United States Government + * as represented by the Administrator of the National Aeronautics and Space + * Administration. All rights reserved. + * + * Open MCT Web is licensed under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * http://www.apache.org/licenses/LICENSE-2.0. + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * License for the specific language governing permissions and limitations + * under the License. + * + * Open MCT Web includes source code licensed under additional open source + * licenses. See the Open Source Licenses file (LICENSES.md) included with + * this source code distribution or the Licensing information page available + * at runtime from the About dialog for additional information. + *****************************************************************************/ +/* line 23, ../sass/_timelines.scss */ .l-timeline-holder { overflow: hidden; position: absolute; @@ -171,7 +180,7 @@ left: 0px; width: auto; height: auto; } - /* line 6, ../sass/_timelines.scss */ + /* line 27, ../sass/_timelines.scss */ .l-timeline-holder .l-timeline-pane { overflow: hidden; position: absolute; @@ -181,10 +190,10 @@ left: 0px; width: auto; height: auto; } - /* line 9, ../sass/_timelines.scss */ + /* line 30, ../sass/_timelines.scss */ .l-timeline-holder .l-timeline-pane .l-width-control { position: relative; } - /* line 13, ../sass/_timelines.scss */ + /* line 34, ../sass/_timelines.scss */ .l-timeline-holder .l-timeline-pane .l-swimlanes-holder { overflow: hidden; position: absolute; @@ -195,7 +204,7 @@ width: auto; height: auto; top: 31px; } - /* line 20, ../sass/_timelines.scss */ + /* line 41, ../sass/_timelines.scss */ .l-timeline-holder .l-timeline-pane.t-pane-h.s-timeline-tabular .t-pane-v { overflow: hidden; position: absolute; @@ -205,16 +214,16 @@ left: 0px; width: auto; height: auto; } - /* line 23, ../sass/_timelines.scss */ + /* line 44, ../sass/_timelines.scss */ .l-timeline-holder .l-timeline-pane.t-pane-h.s-timeline-tabular .t-pane-v.l-tabular-l { right: auto; width: 266px; } - /* line 28, ../sass/_timelines.scss */ + /* line 49, ../sass/_timelines.scss */ .l-timeline-holder .l-timeline-pane.t-pane-h.s-timeline-tabular .t-pane-v.l-tabular-r { overflow-x: auto; overflow-y: hidden; left: 266px; } - /* line 32, ../sass/_timelines.scss */ + /* line 53, ../sass/_timelines.scss */ .l-timeline-holder .l-timeline-pane.t-pane-h.s-timeline-tabular .t-pane-v.l-tabular-r .l-width { overflow: visible; position: absolute; @@ -226,18 +235,18 @@ height: auto; min-width: 590px; width: 100%; } - /* line 42, ../sass/_timelines.scss */ + /* line 61, ../sass/_timelines.scss */ .l-timeline-holder .l-timeline-pane.t-pane-h.l-timeline-gantt .l-swimlanes-holder { overflow-x: hidden; overflow-y: scroll; } - /* line 47, ../sass/_timelines.scss */ + /* line 65, ../sass/_timelines.scss */ .l-timeline-holder .l-timeline-pane.t-pane-h.l-timeline-resource-legend { -moz-box-sizing: border-box; -webkit-box-sizing: border-box; box-sizing: border-box; padding: 5px 0; white-space: nowrap; } - /* line 54, ../sass/_timelines.scss */ + /* line 70, ../sass/_timelines.scss */ .l-timeline-holder .l-timeline-pane.t-pane-h.l-timeline-resource-legend .l-legend-items { overflow: hidden; position: absolute; @@ -249,22 +258,21 @@ height: auto; overflow-x: hidden; overflow-y: auto; - top: 25px; - color: #737373; } - /* line 61, ../sass/_timelines.scss */ + top: 25px; } + /* line 76, ../sass/_timelines.scss */ .l-timeline-holder .l-timeline-pane.t-pane-h.l-timeline-resource-legend .legend-item { display: block; margin-bottom: 3px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; } - /* line 69, ../sass/_timelines.scss */ + /* line 84, ../sass/_timelines.scss */ .l-timeline-holder .l-timeline-pane.t-pane-h.l-timeline-resource-legend .legend-item .color-swatch { vertical-align: baseline; } - /* line 72, ../sass/_timelines.scss */ + /* line 87, ../sass/_timelines.scss */ .l-timeline-holder .l-timeline-pane.t-pane-h.l-timeline-resource-legend .legend-item .title-label { vertical-align: baseline; } - /* line 81, ../sass/_timelines.scss */ + /* line 96, ../sass/_timelines.scss */ .l-timeline-holder .l-timeline-pane.t-pane-h.l-timeline-resource-graph .l-graphs-holder { overflow: hidden; position: absolute; @@ -275,7 +283,7 @@ width: auto; height: auto; bottom: 10px; } - /* line 86, ../sass/_timelines.scss */ + /* line 101, ../sass/_timelines.scss */ .l-timeline-holder .l-timeline-pane.t-pane-h.l-timeline-resource-graph .l-graphs-holder .l-graphs { overflow: hidden; position: absolute; @@ -287,7 +295,7 @@ height: auto; overflow-x: hidden; overflow-y: scroll; } - /* line 91, ../sass/_timelines.scss */ + /* line 106, ../sass/_timelines.scss */ .l-timeline-holder .l-timeline-pane.t-pane-h.l-timeline-resource-graph .l-graphs-holder .l-graph-labels-holder { overflow: hidden; position: absolute; @@ -300,7 +308,7 @@ overflow: hidden; right: auto; width: 400px; } - /* line 100, ../sass/_timelines.scss */ + /* line 115, ../sass/_timelines.scss */ .l-timeline-holder .l-timeline-pane.t-pane-h.l-timeline-resource-graph .l-scroll-control { overflow: hidden; position: absolute; @@ -315,36 +323,34 @@ top: auto; right: 10px; height: 10px; } - /* line 106, ../sass/_timelines.scss */ + /* line 121, ../sass/_timelines.scss */ .l-timeline-holder .l-timeline-pane.t-pane-h.l-timeline-resource-graph .l-scroll-control .l-width-control { height: 10px; } - /* line 111, ../sass/_timelines.scss */ + /* line 126, ../sass/_timelines.scss */ .l-timeline-holder .l-timeline-pane.t-pane-h.l-timeline-resource-graph .l-graph, .l-timeline-holder .l-timeline-pane.t-pane-h.l-timeline-resource-graph .l-graph-labels { height: 80px; margin-bottom: 3px; position: relative; } - /* line 118, ../sass/_timelines.scss */ + /* line 133, ../sass/_timelines.scss */ .l-timeline-holder .l-timeline-pane.t-pane-h.l-timeline-resource-graph .l-title { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; - color: rgba(255, 255, 255, 0.4); top: 5px; left: 5px; position: absolute; } - /* line 125, ../sass/_timelines.scss */ + /* line 139, ../sass/_timelines.scss */ .l-timeline-holder .l-timeline-pane.t-pane-h.l-timeline-resource-graph .l-graph { - background: rgba(0, 0, 0, 0.3); width: 100%; } - /* line 129, ../sass/_timelines.scss */ + /* line 143, ../sass/_timelines.scss */ .l-timeline-holder .l-timeline-pane.t-pane-h.l-timeline-resource-graph .l-graph .l-graph-area canvas { width: 100%; height: 100%; } - /* line 136, ../sass/_timelines.scss */ + /* line 150, ../sass/_timelines.scss */ .l-timeline-holder .l-timeline-pane.t-pane-h.l-timeline-resource-graph .l-graph-labels { z-index: 10; } - /* line 140, ../sass/_timelines.scss */ + /* line 154, ../sass/_timelines.scss */ .l-timeline-holder .l-timeline-pane.t-pane-h.l-timeline-resource-graph .l-graph-area { overflow: hidden; position: absolute; @@ -356,7 +362,7 @@ height: auto; top: 20px; bottom: 5px; } - /* line 143, ../sass/_timelines.scss */ + /* line 157, ../sass/_timelines.scss */ .l-timeline-holder .l-timeline-pane.t-pane-h.l-timeline-resource-graph .l-graph-area .l-labels-holder { overflow: hidden; position: absolute; @@ -367,24 +373,24 @@ width: auto; height: auto; left: 5px; } - /* line 146, ../sass/_timelines.scss */ + /* line 160, ../sass/_timelines.scss */ .l-timeline-holder .l-timeline-pane.t-pane-h.l-timeline-resource-graph .l-graph-area .l-labels-holder .tick-label.tick-label-y { text-align: left; } - /* line 154, ../sass/_timelines.scss */ + /* line 168, ../sass/_timelines.scss */ .l-timeline-holder .l-timeline-pane.l-pane-l { right: auto; min-width: 50px; max-width: 90%; width: 30%; } - /* line 162, ../sass/_timelines.scss */ + /* line 176, ../sass/_timelines.scss */ .l-timeline-holder .l-timeline-pane.l-pane-r { left: 0; } - /* line 166, ../sass/_timelines.scss */ + /* line 180, ../sass/_timelines.scss */ .l-timeline-holder .l-timeline-pane.l-pane-r:hover .l-hover-btns-holder { - -moz-transition-property: visibility, opacity, background-color, border-color; - -o-transition-property: visibility, opacity, background-color, border-color; - -webkit-transition-property: visibility, opacity, background-color, border-color; - transition-property: visibility, opacity, background-color, border-color; + -moz-transition-property: opacity, background-color, border-color, color; + -o-transition-property: opacity, background-color, border-color, color; + -webkit-transition-property: opacity, background-color, border-color, color; + transition-property: opacity, background-color, border-color, color; -moz-transition-duration: 100ms; -o-transition-duration: 100ms; -webkit-transition-duration: 100ms; @@ -393,21 +399,25 @@ -o-transition-timing-function: ease-in-out; -webkit-transition-timing-function: ease-in-out; transition-timing-function: ease-in-out; + -moz-transition-delay: 0; + -o-transition-delay: 0; + -webkit-transition-delay: 0; + transition-delay: 0; opacity: 1; } - /* line 173, ../sass/_timelines.scss */ + /* line 187, ../sass/_timelines.scss */ .l-timeline-holder .l-timeline-pane.l-pane-top { bottom: 30%; } - /* line 177, ../sass/_timelines.scss */ + /* line 191, ../sass/_timelines.scss */ .l-timeline-holder .l-timeline-pane.l-pane-btm { top: auto; min-height: 20px; max-height: 80%; height: 30%; } - /* line 186, ../sass/_timelines.scss */ + /* line 200, ../sass/_timelines.scss */ .l-timeline-holder .l-swimlane { height: 21px; position: relative; } - /* line 192, ../sass/_timelines.scss */ + /* line 206, ../sass/_timelines.scss */ .l-timeline-holder .s-timeline-tabular .l-header, .l-timeline-holder .s-timeline-gantt .l-header { overflow: visible; @@ -420,7 +430,7 @@ height: auto; bottom: auto; height: 30px; } - /* line 198, ../sass/_timelines.scss */ + /* line 212, ../sass/_timelines.scss */ .l-timeline-holder .s-timeline-tabular .l-header .l-header-elem, .l-timeline-holder .s-timeline-gantt .l-header .l-header-elem { overflow: visible; @@ -432,14 +442,14 @@ width: auto; height: auto; display: block; } - /* line 203, ../sass/_timelines.scss */ + /* line 217, ../sass/_timelines.scss */ .l-timeline-holder .s-timeline-tabular .l-header .l-header-elem.l-labels .l-label, .l-timeline-holder .s-timeline-gantt .l-header .l-header-elem.l-labels .l-label { position: absolute; width: 140px; margin-left: -70px; text-align: center; } - /* line 213, ../sass/_timelines.scss */ + /* line 227, ../sass/_timelines.scss */ .l-timeline-holder .l-hover-btns-holder { overflow: hidden; position: absolute; @@ -452,10 +462,10 @@ -moz-box-sizing: border-box; -webkit-box-sizing: border-box; box-sizing: border-box; - -moz-transition-property: visibility, opacity, background-color, border-color; - -o-transition-property: visibility, opacity, background-color, border-color; - -webkit-transition-property: visibility, opacity, background-color, border-color; - transition-property: visibility, opacity, background-color, border-color; + -moz-transition-property: opacity, background-color, border-color, color; + -o-transition-property: opacity, background-color, border-color, color; + -webkit-transition-property: opacity, background-color, border-color, color; + transition-property: opacity, background-color, border-color, color; -moz-transition-duration: 500ms; -o-transition-duration: 500ms; -webkit-transition-duration: 500ms; @@ -464,6 +474,10 @@ -o-transition-timing-function: ease-in-out; -webkit-transition-timing-function: ease-in-out; transition-timing-function: ease-in-out; + -moz-transition-delay: 0; + -o-transition-delay: 0; + -webkit-transition-delay: 0; + transition-delay: 0; opacity: 0; height: 30px; width: 100px; @@ -471,7 +485,7 @@ padding: 5px; text-align: right; z-index: 10; } - /* line 226, ../sass/_timelines.scss */ + /* line 240, ../sass/_timelines.scss */ .l-timeline-holder .l-cols { overflow: visible; position: absolute; @@ -483,7 +497,7 @@ height: auto; text-wrap: none; white-space: nowrap; } - /* line 231, ../sass/_timelines.scss */ + /* line 245, ../sass/_timelines.scss */ .l-timeline-holder .l-cols .l-col { -moz-box-sizing: border-box; -webkit-box-sizing: border-box; @@ -497,46 +511,40 @@ position: relative; text-wrap: none; white-space: nowrap; } - /* line 242, ../sass/_timelines.scss */ + /* line 256, ../sass/_timelines.scss */ .l-timeline-holder .l-cols .l-col.l-col-icon { width: 16px; text-align: center; padding: 0; } - /* line 246, ../sass/_timelines.scss */ + /* line 260, ../sass/_timelines.scss */ .l-timeline-holder .l-cols .l-col.l-col-icon .ui-symbol { color: #0099cc; } - /* line 251, ../sass/_timelines.scss */ + /* line 265, ../sass/_timelines.scss */ .l-timeline-holder .l-cols .l-col.l-plot-resource { border-left: none !important; cursor: pointer; padding-left: 0; } - /* line 260, ../sass/_timelines.scss */ + /* line 274, ../sass/_timelines.scss */ .l-timeline-holder .l-cols .l-col.l-title { width: 250px; } - /* line 264, ../sass/_timelines.scss */ + /* line 278, ../sass/_timelines.scss */ .l-timeline-holder .l-cols .l-col.l-start, .l-timeline-holder .l-cols .l-col.l-end, .l-timeline-holder .l-cols .l-col.l-duration { width: 110px; } - /* line 274, ../sass/_timelines.scss */ + /* line 288, ../sass/_timelines.scss */ .l-timeline-holder .l-cols .l-col.l-activity-modes { display: none; width: 250px; } - /* line 283, ../sass/_timelines.scss */ + /* line 297, ../sass/_timelines.scss */ .l-timeline-holder .s-timeline-tabular .l-header .l-cols { top: 5px; bottom: 5px; } - /* line 285, ../sass/_timelines.scss */ - .l-timeline-holder .s-timeline-tabular .l-header .l-cols .l-col { - border-left: 1px solid rgba(255, 255, 255, 0.1); } - /* line 293, ../sass/_timelines.scss */ + /* line 303, ../sass/_timelines.scss */ .l-timeline-holder .s-timeline-tabular .l-pane-l .l-cols { left: 5px; } - /* line 295, ../sass/_timelines.scss */ - .l-timeline-holder .s-timeline-tabular .l-pane-l .l-cols .s-label .ui-symbol.icon { - color: #8594ff; } - /* line 308, ../sass/_timelines.scss */ + /* line 309, ../sass/_timelines.scss */ .l-timeline-holder .splitter { top: 0; } - /* line 314, ../sass/_timelines.scss */ + /* line 315, ../sass/_timelines.scss */ .l-timeline-holder .l-ticks, .l-timeline-holder .l-subticks { overflow: hidden; @@ -549,104 +557,9 @@ height: auto; top: auto; bottom: 3px; } - /* line 320, ../sass/_timelines.scss */ + /* line 321, ../sass/_timelines.scss */ .l-timeline-holder .l-ticks { height: 10px; } - /* line 324, ../sass/_timelines.scss */ + /* line 325, ../sass/_timelines.scss */ .l-timeline-holder .l-subticks { height: 5px; } - -/* line 330, ../sass/_timelines.scss */ -.s-timeline { - font-size: 0.75rem; } - /* line 332, ../sass/_timelines.scss */ - .s-timeline .s-header { - background-color: #404040; } - /* line 335, ../sass/_timelines.scss */ - .s-timeline .s-swimlane { - border-bottom: 1px solid rgba(255, 255, 255, 0.1); - line-height: 20px; - /* &:hover { - background: rgba(white, 0.1); - }*/ } - /* line 345, ../sass/_timelines.scss */ - .s-timeline .s-swimlane.exceeded { - background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjEuMCIgeTE9IjEuMCIgeDI9IjAuMCIgeTI9IjAuMCI+PHN0b3Agb2Zmc2V0PSIyNSUiIHN0b3AtY29sb3I9IiNmZmZmZmYiIHN0b3Atb3BhY2l0eT0iMC4wNSIvPjxzdG9wIG9mZnNldD0iMjUlIiBzdG9wLWNvbG9yPSIjMDAwMDAwIiBzdG9wLW9wYWNpdHk9IjAuMCIvPjxzdG9wIG9mZnNldD0iNTAlIiBzdG9wLWNvbG9yPSIjMDAwMDAwIiBzdG9wLW9wYWNpdHk9IjAuMCIvPjxzdG9wIG9mZnNldD0iNTAlIiBzdG9wLWNvbG9yPSIjZmZmZmZmIiBzdG9wLW9wYWNpdHk9IjAuMDUiLz48c3RvcCBvZmZzZXQ9Ijc1JSIgc3RvcC1jb2xvcj0iI2ZmZmZmZiIgc3RvcC1vcGFjaXR5PSIwLjA1Ii8+PHN0b3Agb2Zmc2V0PSI3NSUiIHN0b3AtY29sb3I9IiMwMDAwMDAiIHN0b3Atb3BhY2l0eT0iMC4wIi8+PHN0b3Agb2Zmc2V0PSIxMDAlIiBzdG9wLWNvbG9yPSIjMDAwMDAwIiBzdG9wLW9wYWNpdHk9IjAuMCIvPjwvbGluZWFyR3JhZGllbnQ+PC9kZWZzPjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9InVybCgjZ3JhZCkiIC8+PC9zdmc+IA=='); - background-size: 100%; - background-image: -moz-linear-gradient(135deg, rgba(255, 255, 255, 0.05) 25%, rgba(0, 0, 0, 0) 25%, rgba(0, 0, 0, 0) 50%, rgba(255, 255, 255, 0.05) 50%, rgba(255, 255, 255, 0.05) 75%, rgba(0, 0, 0, 0) 75%, rgba(0, 0, 0, 0) 100%); - background-image: -webkit-linear-gradient(135deg, rgba(255, 255, 255, 0.05) 25%, rgba(0, 0, 0, 0) 25%, rgba(0, 0, 0, 0) 50%, rgba(255, 255, 255, 0.05) 50%, rgba(255, 255, 255, 0.05) 75%, rgba(0, 0, 0, 0) 75%, rgba(0, 0, 0, 0) 100%); - background-image: linear-gradient(-45deg, rgba(255, 255, 255, 0.05) 25%, rgba(0, 0, 0, 0) 25%, rgba(0, 0, 0, 0) 50%, rgba(255, 255, 255, 0.05) 50%, rgba(255, 255, 255, 0.05) 75%, rgba(0, 0, 0, 0) 75%, rgba(0, 0, 0, 0) 100%); - background-repeat: repeat; - background-size: 22px 22px; } - /* line 349, ../sass/_timelines.scss */ - .s-timeline .s-swimlane.selected { - background-color: #222; - color: #fff; } - /* line 355, ../sass/_timelines.scss */ - .s-timeline .s-swimlane.selected .s-timeline-gantt .bar { - background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuNSIgeTE9IjAuMCIgeDI9IjAuNSIgeTI9IjEuMCI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2U2ZTZlNiIvPjxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iI2NjY2NjYyIvPjwvbGluZWFyR3JhZGllbnQ+PC9kZWZzPjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9InVybCgjZ3JhZCkiIC8+PC9zdmc+IA=='); - background-size: 100%; - background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #e6e6e6), color-stop(100%, #cccccc)); - background-image: -moz-linear-gradient(#e6e6e6, #cccccc); - background-image: -webkit-linear-gradient(#e6e6e6, #cccccc); - background-image: linear-gradient(#e6e6e6, #cccccc); - color: #333; } - /* line 363, ../sass/_timelines.scss */ - .s-timeline .s-swimlane.drop-into { - background-color: rgba(85, 85, 170, 0.7); } - /* line 365, ../sass/_timelines.scss */ - .s-timeline .s-swimlane.drop-into .s-timeline-gantt { - opacity: 0.7; } - /* line 369, ../sass/_timelines.scss */ - .s-timeline .s-swimlane.drop-after { - background-color: rgba(0, 0, 0, 0.2); - border-bottom-color: #5555aa; } - /* line 375, ../sass/_timelines.scss */ - .s-timeline .s-ticks { - background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuMCIgeTE9IjAuNSIgeDI9IjEuMCIgeTI9IjAuNSI+PHN0b3Agb2Zmc2V0PSIxcHgiIHN0b3AtY29sb3I9IiM1OTU5NTkiLz48c3RvcCBvZmZzZXQ9IjFweCIgc3RvcC1jb2xvcj0iIzAwMDAwMCIgc3RvcC1vcGFjaXR5PSIwLjAiLz48c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiMwMDAwMDAiIHN0b3Atb3BhY2l0eT0iMC4wIi8+PC9saW5lYXJHcmFkaWVudD48L2RlZnM+PHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0idXJsKCNncmFkKSIgLz48L3N2Zz4g'); - background-size: 100%; - background-image: -moz-linear-gradient(0deg, #595959 1px, rgba(0, 0, 0, 0) 1px, rgba(0, 0, 0, 0) 100%); - background-image: -webkit-linear-gradient(0deg, #595959 1px, rgba(0, 0, 0, 0) 1px, rgba(0, 0, 0, 0) 100%); - background-image: linear-gradient(90deg, #595959 1px, rgba(0, 0, 0, 0) 1px, rgba(0, 0, 0, 0) 100%); - background-repeat: repeat-x; } - /* line 378, ../sass/_timelines.scss */ - .s-timeline .s-hover-btns-holder { - background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjEuMCIgeTE9IjAuNSIgeDI9IjAuMCIgeTI9IjAuNSI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzQwNDA0MCIvPjxzdG9wIG9mZnNldD0iNzAlIiBzdG9wLWNvbG9yPSIjNDA0MDQwIi8+PHN0b3Agb2Zmc2V0PSIxMDAlIiBzdG9wLWNvbG9yPSIjNDA0MDQwIiBzdG9wLW9wYWNpdHk9IjAuMCIvPjwvbGluZWFyR3JhZGllbnQ+PC9kZWZzPjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9InVybCgjZ3JhZCkiIC8+PC9zdmc+IA=='); - background-size: 100%; - background-image: -moz-linear-gradient(180deg, #404040, #404040 70%, rgba(64, 64, 64, 0) 100%); - background-image: -webkit-linear-gradient(180deg, #404040, #404040 70%, rgba(64, 64, 64, 0) 100%); - background-image: linear-gradient(-90deg, #404040, #404040 70%, rgba(64, 64, 64, 0) 100%); } - /* line 383, ../sass/_timelines.scss */ - .s-timeline .s-hover-btns-holder .s-btn { - background-color: #404040; - -moz-border-radius: 3px; - -webkit-border-radius: 3px; - border-radius: 3px; - -moz-box-sizing: border-box; - -webkit-box-sizing: border-box; - box-sizing: border-box; - color: #a6a6a6; - display: inline-block; - background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuNSIgeTE9IjAuMCIgeDI9IjAuNSIgeTI9IjEuMCI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzRkNGQ0ZCIvPjxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iIzQwNDA0MCIvPjwvbGluZWFyR3JhZGllbnQ+PC9kZWZzPjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9InVybCgjZ3JhZCkiIC8+PC9zdmc+IA=='); - background-size: 100%; - background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #4d4d4d), color-stop(100%, #404040)); - background-image: -moz-linear-gradient(#4d4d4d, #404040); - background-image: -webkit-linear-gradient(#4d4d4d, #404040); - background-image: linear-gradient(#4d4d4d, #404040); - -moz-box-shadow: rgba(0, 0, 0, 0.2) 0 1px 2px; - -webkit-box-shadow: rgba(0, 0, 0, 0.2) 0 1px 2px; - box-shadow: rgba(0, 0, 0, 0.2) 0 1px 2px; } - -/* line 389, ../sass/_timelines.scss */ -.edit-mode .s-swimlane { - cursor: pointer; } - /* line 391, ../sass/_timelines.scss */ - .edit-mode .s-swimlane .s-label { - -moz-border-radius: 3px; - -webkit-border-radius: 3px; - border-radius: 3px; - padding: 2px 5px; } - /* line 394, ../sass/_timelines.scss */ - .edit-mode .s-swimlane .s-label:hover { - background: rgba(255, 255, 255, 0.1); - color: #fff; } diff --git a/platform/features/timeline/res/sass-compile.sh b/platform/features/timeline/res/sass-compile.sh new file mode 100644 index 0000000000..ee7f1cdf77 --- /dev/null +++ b/platform/features/timeline/res/sass-compile.sh @@ -0,0 +1,4 @@ +date + +echo "*** Compiling sass" +compass compile --force \ No newline at end of file diff --git a/platform/features/timeline/res/sass/_activities.scss b/platform/features/timeline/res/sass/_activities.scss index 75f3a81072..265623634f 100644 --- a/platform/features/timeline/res/sass/_activities.scss +++ b/platform/features/timeline/res/sass/_activities.scss @@ -57,36 +57,7 @@ } } -.s-timeline-gantt { - $br: $controlCr; - .bar { - color: $activityTypeFg; -// opacity: 0.9; -// @include background-image(linear-gradient(lighten($activityTypeBg, 10), $activityTypeBg)); - @include activityBg($activityTypeBg); - @include border-radius($br); - @include box-shadow(rgba(black, 0.4) 0 1px 3px); - &.expanded { - @include border-top-radius($br); - @include border-bottom-radius(0); - } - &.leaf { - @include border-top-radius(0); - @include border-bottom-radius($br); - } - .s-toggle { - color: $colorKey; - } - } -} - .edit-mode .s-timeline-gantt { - .bar { - &:hover { - @include background-image(linear-gradient(lighten($activityTypeBg, 20), lighten($activityTypeBg, 10))); - } - } - .handle { cursor: col-resize; &.start { diff --git a/platform/features/timeline/res/sass/_constants-espresso.scss b/platform/features/timeline/res/sass/_constants-espresso.scss new file mode 100644 index 0000000000..107a0eadc4 --- /dev/null +++ b/platform/features/timeline/res/sass/_constants-espresso.scss @@ -0,0 +1,42 @@ +/***************************************************************************** + * Open MCT Web, Copyright (c) 2014-2015, United States Government + * as represented by the Administrator of the National Aeronautics and Space + * Administration. All rights reserved. + * + * Open MCT Web is licensed under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * http://www.apache.org/licenses/LICENSE-2.0. + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * License for the specific language governing permissions and limitations + * under the License. + * + * Open MCT Web includes source code licensed under additional open source + * licenses. See the Open Source Licenses file (LICENSES.md) included with + * this source code distribution or the Licensing information page available + * at runtime from the About dialog for additional information. + *****************************************************************************/ + +// General +$timelineHeaderColorBg: lighten($colorBodyBg, 5%); +$timelineColorAlt1: lighten($timelineHeaderColorBg, 10%); +$colorGanttBarBg: #5555aa; +$colorGanttBarFg: #fff; +$colorGanttBarSelectedBg: #ccc; +$colorGanttBarSelectedFg: #333; +$colorGanttBarTabularFgIcon: #8594ff; + +// Swimlane colors +$colorDropTarg: rgba($colorGanttBarBg, 0.4); +$colorSwimlaneSelectedBg: #222; +$colorSwimlaneSelectedFg: #ccc; +$colorGanttToggle: $colorKey; +$shdwGanttBar: rgba(black, 0.4) 0 1px 3px; + +// Resource graphs +$timelineResourceGraphBg: rgba(black, 0.2); +$timelineResourceGraphFg: $colorBodyFg; +$timelineResourceGraphLegendFg: $colorBodyFg; \ No newline at end of file diff --git a/platform/features/timeline/res/sass/_constants-snow.scss b/platform/features/timeline/res/sass/_constants-snow.scss new file mode 100644 index 0000000000..b055cf3019 --- /dev/null +++ b/platform/features/timeline/res/sass/_constants-snow.scss @@ -0,0 +1,42 @@ +/***************************************************************************** + * Open MCT Web, Copyright (c) 2014-2015, United States Government + * as represented by the Administrator of the National Aeronautics and Space + * Administration. All rights reserved. + * + * Open MCT Web is licensed under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * http://www.apache.org/licenses/LICENSE-2.0. + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * License for the specific language governing permissions and limitations + * under the License. + * + * Open MCT Web includes source code licensed under additional open source + * licenses. See the Open Source Licenses file (LICENSES.md) included with + * this source code distribution or the Licensing information page available + * at runtime from the About dialog for additional information. + *****************************************************************************/ + +// General +$timelineHeaderColorBg: pullForward($colorBodyBg, 5%); +$timelineColorAlt1: pullForward($timelineHeaderColorBg, 10%); +$colorGanttBarBg: #5555aa; +$colorGanttBarFg: #fff; +$colorGanttBarSelectedBg: $colorGanttBarBg; +$colorGanttBarSelectedFg: $colorGanttBarFg; +$colorGanttBarTabularFgIcon: #8594ff; + +// Swimlane colors +$colorDropTarg: rgba($colorGanttBarBg, 0.4); +$colorSwimlaneSelectedBg: rgba($colorGanttBarBg, 0.25); +$colorSwimlaneSelectedFg: pullForward($colorBodyFg, 10%); +$colorGanttToggle: $colorKey; +$shdwGanttBar: rgba(black, 0.1) 0 1px 3px; + +// Resource graphs +$timelineResourceGraphBg: rgba(black, 0.1); +$timelineResourceGraphFg: $colorBodyFg; +$timelineResourceGraphLegendFg: $colorBodyFg; \ No newline at end of file diff --git a/platform/features/timeline/res/sass/_constants.scss b/platform/features/timeline/res/sass/_constants.scss index ca7a47f7a3..0b667eead4 100644 --- a/platform/features/timeline/res/sass/_constants.scss +++ b/platform/features/timeline/res/sass/_constants.scss @@ -1,3 +1,24 @@ +/***************************************************************************** + * Open MCT Web, Copyright (c) 2014-2015, United States Government + * as represented by the Administrator of the National Aeronautics and Space + * Administration. All rights reserved. + * + * Open MCT Web is licensed under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * http://www.apache.org/licenses/LICENSE-2.0. + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * License for the specific language governing permissions and limitations + * under the License. + * + * Open MCT Web includes source code licensed under additional open source + * licenses. See the Open Source Licenses file (LICENSES.md) included with + * this source code distribution or the Licensing information page available + * at runtime from the About dialog for additional information. + *****************************************************************************/ @mixin activityBg($bg, $gamma: 10) { @include background-image(linear-gradient(lighten($bg, $gamma), $bg)); } @@ -8,22 +29,10 @@ $timelinePaneLeftW: 30%; $timelinePaneBtmH: 30%; $timelineResourceGraphYLabelsMargin: 70px; $timelineTopPaneHeaderH: 30px; -$timelineHeaderColorBg: lighten($colorBodyBg, 5%); -$timelineColorAlt1: lighten($timelineHeaderColorBg, 10%); + $timelineSwimlaneGanttVM: 2px; // The vertical space above and below the gantt bars $timelineSwimlaneH: $activityBarH + ($timelineSwimlaneGanttVM * 2); $timelineTopPaneHeaderElemMargin: $interiorMargin; -$activityTypeFg: #fff; -$activityTypeBg: #5555aa; -$activityTypeTabularFgIcon: #8594ff; - - -// Swimlane colors -$colorDropTarg: rgba($activityTypeBg, 0.4); -$colorSwimlaneSelectedBg: #222; -$colorSwimlaneSelectedFg: #ccc; -$colorSwimlaneSelectedGanttBg: #ccc; -$colorSwimlaneSelectedGanttFg: #333; // Timeline Tabular constants $timelineColIconW: 16px; diff --git a/platform/features/timeline/res/sass/_timeline-thematic.scss b/platform/features/timeline/res/sass/_timeline-thematic.scss new file mode 100644 index 0000000000..cee4021ae9 --- /dev/null +++ b/platform/features/timeline/res/sass/_timeline-thematic.scss @@ -0,0 +1,149 @@ +/***************************************************************************** + * Open MCT Web, Copyright (c) 2014-2015, United States Government + * as represented by the Administrator of the National Aeronautics and Space + * Administration. All rights reserved. + * + * Open MCT Web is licensed under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * http://www.apache.org/licenses/LICENSE-2.0. + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * License for the specific language governing permissions and limitations + * under the License. + * + * Open MCT Web includes source code licensed under additional open source + * licenses. See the Open Source Licenses file (LICENSES.md) included with + * this source code distribution or the Licensing information page available + * at runtime from the About dialog for additional information. + *****************************************************************************/ +.l-timeline-holder { + .l-timeline-pane { + &.t-pane-h { + &.l-timeline-resource-legend { + .l-legend-items { + color: $timelineResourceGraphLegendFg; + } + } + } + } +} + +.s-timeline-gantt { + $br: $controlCr; + .bar { + color: $colorGanttBarFg; + @include activityBg($colorGanttBarBg); + @include border-radius($br); + @include box-shadow($shdwGanttBar); + &.expanded { + @include border-top-radius($br); + @include border-bottom-radius(0); + } + &.leaf { + @include border-top-radius(0); + @include border-bottom-radius($br); + } + .s-toggle { + color: $colorGanttToggle; + } + } +} + +.s-timeline-tabular { + .l-header .l-cols { + .l-col { + border-left: 1px solid pullForward($timelineHeaderColorBg, 15%); + } + } + + .l-pane-l { + // Left pane of the tabular area + .l-cols { + .s-label .ui-symbol.icon { + color: $colorGanttBarTabularFgIcon; + } + } + } +} + +.edit-mode .s-timeline-gantt { + .bar { + &:hover { + @include background-image(linear-gradient(lighten($colorGanttBarBg, 20), lighten($colorGanttBarBg, 10))); + } + } +} + +//*************************************************************** STYLING +.s-timeline { + font-size: 0.75rem; + .s-header { + background-color: $timelineHeaderColorBg; + } + .s-swimlane { + border-bottom: 1px solid pullForward($colorBodyBg, 10%); + line-height: $activityBarH + 2 + 1; + &.exceeded { + @include bgDiagonalStripes(#fff, 0.05, $timelineSwimlaneH + 1); + } + + &.selected { + background-color: $colorSwimlaneSelectedBg; + color: $colorSwimlaneSelectedFg; + + .s-timeline-gantt .bar { + @include activityBg($colorGanttBarSelectedBg, 10); + color: $colorGanttBarSelectedFg; + } + } + + &.drop-into { + background-color: rgba($colorDropTarg, 0.7); + .s-timeline-gantt { + opacity: 0.7; + } + } + &.drop-after { + background-color: rgba(#000, 0.2); + border-bottom-color: rgba($colorDropTarg, 1.0); + } + } + + .s-ticks { + @include bgTicks($timelineColorAlt1); + } + .s-hover-btns-holder { + $bg: $timelineHeaderColorBg; + $bga: 1; + $l: 5%; + @include background-image(linear-gradient(-90deg, rgba($bg, $bga), rgba($bg, $bga) 70%, rgba($bg, 0) 100%)); + .s-btn { + @include containerSubtle(lighten($colorBodyBg, $l), lighten($colorBodyFg, $l), true); + } + } + + .l-timeline-resource-graph { + .l-graph { + background: $timelineResourceGraphBg; + } + .l-title { + color: $timelineResourceGraphFg; + } + } +} + +.edit-mode .s-swimlane { + cursor: pointer; + .s-label { + @include border-radius($controlCr); + padding: 2px 5px; + &:hover { + // TO-DO: Convert to theming! + background: rgba(#fff, 0.1); + color: #fff; + } + } +} diff --git a/platform/features/timeline/res/sass/_timelines.scss b/platform/features/timeline/res/sass/_timelines.scss index bdb8211a3e..f4b482522a 100644 --- a/platform/features/timeline/res/sass/_timelines.scss +++ b/platform/features/timeline/res/sass/_timelines.scss @@ -1,3 +1,24 @@ +/***************************************************************************** + * Open MCT Web, Copyright (c) 2014-2015, United States Government + * as represented by the Administrator of the National Aeronautics and Space + * Administration. All rights reserved. + * + * Open MCT Web is licensed under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * http://www.apache.org/licenses/LICENSE-2.0. + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * License for the specific language governing permissions and limitations + * under the License. + * + * Open MCT Web includes source code licensed under additional open source + * licenses. See the Open Source Licenses file (LICENSES.md) included with + * this source code distribution or the Licensing information page available + * at runtime from the About dialog for additional information. + *****************************************************************************/ //*************************************************************** LAYOUT .l-timeline-holder { // @include test(); @@ -37,26 +58,20 @@ } } &.l-timeline-gantt { -// @include testObj(); - .l-swimlanes-holder { @include scrollV(scroll); } - } &.l-timeline-resource-legend { @include box-sizing(border-box); padding: $interiorMargin 0; white-space: nowrap; - .l-title { - } .l-legend-items { @include absPosDefault(); @include scrollV(); top: 25px; - color: lighten($timelineColorAlt1, 10%); -// margin-top: $interiorMargin; + //color: lighten($timelineColorAlt1, 10%); // MOVED to espresso theme } .legend-item { // Inherits from /platform/commonUI/general/res/sass/plots/_plots-main.scss @@ -117,13 +132,12 @@ .l-title { @include ellipsize(); - color: rgba(#fff, 0.4); top: $m; left: $m; position: absolute; } .l-graph { - background: rgba(black, 0.3); + //background: rgba(black, 0.3); // MOVED width: 100%; .l-graph-area { canvas { @@ -282,27 +296,14 @@ .s-timeline-tabular { .l-header .l-cols { top: $timelineTopPaneHeaderElemMargin; bottom: $timelineTopPaneHeaderElemMargin; - .l-col { - border-left: 1px solid rgba(#fff, 0.1); -// height: 100%; - } } .l-pane-l { // Left pane of the tabular area .l-cols { left: $timelineTopPaneHeaderElemMargin; - .s-label .ui-symbol.icon { - //color: $colorKeyFg; - color: $activityTypeTabularFgIcon; - } } } - - .l-pane-r { - // Right pane of the tabular area -// @include test(red, 0.05); - } } .splitter { @@ -325,77 +326,3 @@ height: 5px } } - -//*************************************************************** STYLING -.s-timeline { - font-size: 0.75rem; - .s-header { - background-color: $timelineHeaderColorBg; - } - .s-swimlane { - // @include transition-property(background-color); - // @include transition-duration(0.2s); - // @include transition-timing-function(ease-out); - // border-top: 1px solid rgba(black, 0.2); - border-bottom: 1px solid rgba(white, 0.1); - line-height: $activityBarH + 2 + 1; - /* &:hover { - background: rgba(white, 0.1); - }*/ - &.exceeded { - @include bgDiagonalStripes(#fff, 0.05, $timelineSwimlaneH + 1); - } - - &.selected { - $bg: $colorSwimlaneSelectedBg; - background-color: $bg; - color: #fff; -// @include background-image(linear-gradient(darken($bg, 5), $bg)); - - .s-timeline-gantt .bar { - @include activityBg($colorSwimlaneSelectedGanttBg, 10); - color: $colorSwimlaneSelectedGanttFg; -// background-color: red; -// background-image: none; - } - } - - &.drop-into { - background-color: rgba($colorDropTarg, 0.7); - .s-timeline-gantt { - opacity: 0.7; - } - } - &.drop-after { - background-color: rgba(#000, 0.2); - border-bottom-color: rgba($colorDropTarg, 1.0); - } - } - - .s-ticks { - @include bgTicks($timelineColorAlt1); - } - .s-hover-btns-holder { - $bg: $timelineHeaderColorBg; - $bga: 1; - $l: 5%; - @include background-image(linear-gradient(-90deg, rgba($bg, $bga), rgba($bg, $bga) 70%, rgba($bg, 0) 100%)); - .s-btn { - @include containerSubtle(lighten($colorBodyBg, $l), lighten($colorBodyFg, $l), true); - } - } -} - -.edit-mode .s-swimlane { - cursor: pointer; - .s-label { - @include border-radius($controlCr); - padding: 2px 5px; - &:hover { - background: rgba(#fff, 0.1); - color: #fff; - } - } -} - - diff --git a/platform/features/timeline/res/sass/timeline-espresso.scss b/platform/features/timeline/res/sass/timeline-espresso.scss new file mode 100644 index 0000000000..354d565e0f --- /dev/null +++ b/platform/features/timeline/res/sass/timeline-espresso.scss @@ -0,0 +1,33 @@ +/***************************************************************************** + * Open MCT Web, Copyright (c) 2014-2015, United States Government + * as represented by the Administrator of the National Aeronautics and Space + * Administration. All rights reserved. + * + * Open MCT Web is licensed under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * http://www.apache.org/licenses/LICENSE-2.0. + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * License for the specific language governing permissions and limitations + * under the License. + * + * Open MCT Web includes source code licensed under additional open source + * licenses. See the Open Source Licenses file (LICENSES.md) included with + * this source code distribution or the Licensing information page available + * at runtime from the About dialog for additional information. + *****************************************************************************/ +@import "compass"; +@import "compass/css3"; +@import "compass/utilities"; + +@import "../../../../commonUI/general/res/sass/constants"; +@import "../../../../commonUI/general/res/sass/mixins"; +@import "../../../../commonUI/themes/espresso/res/sass/constants"; +@import "../../../../commonUI/themes/espresso/res/sass/mixins"; +@import "constants"; +@import "constants-espresso"; +@import "timeline-thematic"; + diff --git a/platform/features/timeline/res/sass/timeline-snow.scss b/platform/features/timeline/res/sass/timeline-snow.scss new file mode 100644 index 0000000000..c1eb4cbd3c --- /dev/null +++ b/platform/features/timeline/res/sass/timeline-snow.scss @@ -0,0 +1,32 @@ +/***************************************************************************** + * Open MCT Web, Copyright (c) 2014-2015, United States Government + * as represented by the Administrator of the National Aeronautics and Space + * Administration. All rights reserved. + * + * Open MCT Web is licensed under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * http://www.apache.org/licenses/LICENSE-2.0. + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * License for the specific language governing permissions and limitations + * under the License. + * + * Open MCT Web includes source code licensed under additional open source + * licenses. See the Open Source Licenses file (LICENSES.md) included with + * this source code distribution or the Licensing information page available + * at runtime from the About dialog for additional information. + *****************************************************************************/ +@import "compass"; +@import "compass/css3"; +@import "compass/utilities"; + +@import "../../../../commonUI/general/res/sass/constants"; +@import "../../../../commonUI/general/res/sass/mixins"; +@import "../../../../commonUI/themes/snow/res/sass/constants"; +@import "../../../../commonUI/themes/snow/res/sass/mixins"; +@import "constants"; +@import "constants-snow"; +@import "timeline-thematic"; diff --git a/platform/features/timeline/res/sass/timeline.scss b/platform/features/timeline/res/sass/timeline.scss index fe25a008ec..0fea5f0295 100644 --- a/platform/features/timeline/res/sass/timeline.scss +++ b/platform/features/timeline/res/sass/timeline.scss @@ -1,11 +1,32 @@ +/***************************************************************************** + * Open MCT Web, Copyright (c) 2014-2015, United States Government + * as represented by the Administrator of the National Aeronautics and Space + * Administration. All rights reserved. + * + * Open MCT Web is licensed under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * http://www.apache.org/licenses/LICENSE-2.0. + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * License for the specific language governing permissions and limitations + * under the License. + * + * Open MCT Web includes source code licensed under additional open source + * licenses. See the Open Source Licenses file (LICENSES.md) included with + * this source code distribution or the Licensing information page available + * at runtime from the About dialog for additional information. + *****************************************************************************/ @import "compass"; @import "compass/css3"; @import "compass/utilities"; -@import "../../../../../../commonUI/general/res/sass/constants"; -@import "../../../../../../commonUI/general/res/sass/mixins"; -@import "../../../../../../commonUI/themes/espresso/res/sass/constants"; -@import "../../../../../../commonUI/themes/espresso/res/sass/mixins"; +@import "../../../../commonUI/general/res/sass/constants"; +@import "../../../../commonUI/general/res/sass/mixins"; +@import "../../../../commonUI/themes/espresso/res/sass/constants"; +@import "../../../../commonUI/themes/espresso/res/sass/mixins"; @import "constants"; @import "activities"; @import "timelines"; \ No newline at end of file From 3854df27d8e89d3f577341416ec4e75c7f5d35d2 Mon Sep 17 00:00:00 2001 From: Charles Hacskaylo Date: Fri, 20 Nov 2015 15:42:08 -0800 Subject: [PATCH 06/88] [Frontend] Styling on Timeline zoom buttons open #208 Fixed in both themes; --- .../timeline/res/css/timeline-espresso.css | 39 +++++++------------ .../timeline/res/css/timeline-snow.css | 32 +++++++-------- .../res/sass/_constants-espresso.scss | 4 +- .../timeline/res/sass/_constants-snow.scss | 2 +- .../timeline/res/sass/_timeline-thematic.scss | 7 +++- 5 files changed, 40 insertions(+), 44 deletions(-) diff --git a/platform/features/timeline/res/css/timeline-espresso.css b/platform/features/timeline/res/css/timeline-espresso.css index 895fdb8294..eb2a6afab5 100644 --- a/platform/features/timeline/res/css/timeline-espresso.css +++ b/platform/features/timeline/res/css/timeline-espresso.css @@ -252,48 +252,39 @@ background-repeat: repeat-x; } /* line 118, ../sass/_timeline-thematic.scss */ .s-timeline .s-hover-btns-holder { + -moz-user-select: -moz-none; + -ms-user-select: none; + -webkit-user-select: none; + user-select: none; background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjEuMCIgeTE9IjAuNSIgeDI9IjAuMCIgeTI9IjAuNSI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzQwNDA0MCIvPjxzdG9wIG9mZnNldD0iNzAlIiBzdG9wLWNvbG9yPSIjNDA0MDQwIi8+PHN0b3Agb2Zmc2V0PSIxMDAlIiBzdG9wLWNvbG9yPSIjNDA0MDQwIiBzdG9wLW9wYWNpdHk9IjAuMCIvPjwvbGluZWFyR3JhZGllbnQ+PC9kZWZzPjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9InVybCgjZ3JhZCkiIC8+PC9zdmc+IA=='); background-size: 100%; background-image: -moz-linear-gradient(180deg, #404040, #404040 70%, rgba(64, 64, 64, 0) 100%); background-image: -webkit-linear-gradient(180deg, #404040, #404040 70%, rgba(64, 64, 64, 0) 100%); background-image: linear-gradient(-90deg, #404040, #404040 70%, rgba(64, 64, 64, 0) 100%); } - /* line 123, ../sass/_timeline-thematic.scss */ + /* line 124, ../sass/_timeline-thematic.scss */ .s-timeline .s-hover-btns-holder .s-btn { - background-color: #404040; - -moz-border-radius: 3px; - -webkit-border-radius: 3px; - border-radius: 3px; - -moz-box-sizing: border-box; - -webkit-box-sizing: border-box; - box-sizing: border-box; - color: #a6a6a6; - display: inline-block; - background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuNSIgeTE9IjAuMCIgeDI9IjAuNSIgeTI9IjEuMCI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzRkNGQ0ZCIvPjxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iIzQwNDA0MCIvPjwvbGluZWFyR3JhZGllbnQ+PC9kZWZzPjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9InVybCgjZ3JhZCkiIC8+PC9zdmc+IA=='); - background-size: 100%; - background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #4d4d4d), color-stop(100%, #404040)); - background-image: -moz-linear-gradient(#4d4d4d, #404040); - background-image: -webkit-linear-gradient(#4d4d4d, #404040); - background-image: linear-gradient(#4d4d4d, #404040); - -moz-box-shadow: rgba(0, 0, 0, 0.2) 0 1px 2px; - -webkit-box-shadow: rgba(0, 0, 0, 0.2) 0 1px 2px; - box-shadow: rgba(0, 0, 0, 0.2) 0 1px 2px; } - /* line 129, ../sass/_timeline-thematic.scss */ + height: 16px; + line-height: 16px; } + /* line 127, ../sass/_timeline-thematic.scss */ + .s-timeline .s-hover-btns-holder .s-btn .icon { + font-size: 0.7rem !important; } + /* line 134, ../sass/_timeline-thematic.scss */ .s-timeline .l-timeline-resource-graph .l-graph { background: rgba(0, 0, 0, 0.2); } - /* line 132, ../sass/_timeline-thematic.scss */ + /* line 137, ../sass/_timeline-thematic.scss */ .s-timeline .l-timeline-resource-graph .l-title { color: #999; } -/* line 138, ../sass/_timeline-thematic.scss */ +/* line 143, ../sass/_timeline-thematic.scss */ .edit-mode .s-swimlane { cursor: pointer; } - /* line 140, ../sass/_timeline-thematic.scss */ + /* line 145, ../sass/_timeline-thematic.scss */ .edit-mode .s-swimlane .s-label { -moz-border-radius: 3px; -webkit-border-radius: 3px; border-radius: 3px; padding: 2px 5px; } - /* line 143, ../sass/_timeline-thematic.scss */ + /* line 148, ../sass/_timeline-thematic.scss */ .edit-mode .s-swimlane .s-label:hover { background: rgba(255, 255, 255, 0.1); color: #fff; } diff --git a/platform/features/timeline/res/css/timeline-snow.css b/platform/features/timeline/res/css/timeline-snow.css index 6d5190ae8f..344c2beb9a 100644 --- a/platform/features/timeline/res/css/timeline-snow.css +++ b/platform/features/timeline/res/css/timeline-snow.css @@ -252,39 +252,39 @@ background-repeat: repeat-x; } /* line 118, ../sass/_timeline-thematic.scss */ .s-timeline .s-hover-btns-holder { + -moz-user-select: -moz-none; + -ms-user-select: none; + -webkit-user-select: none; + user-select: none; background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjEuMCIgeTE9IjAuNSIgeDI9IjAuMCIgeTI9IjAuNSI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2VmZWZlZiIvPjxzdG9wIG9mZnNldD0iNzAlIiBzdG9wLWNvbG9yPSIjZWZlZmVmIi8+PHN0b3Agb2Zmc2V0PSIxMDAlIiBzdG9wLWNvbG9yPSIjZWZlZmVmIiBzdG9wLW9wYWNpdHk9IjAuMCIvPjwvbGluZWFyR3JhZGllbnQ+PC9kZWZzPjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9InVybCgjZ3JhZCkiIC8+PC9zdmc+IA=='); background-size: 100%; background-image: -moz-linear-gradient(180deg, #efefef, #efefef 70%, rgba(239, 239, 239, 0) 100%); background-image: -webkit-linear-gradient(180deg, #efefef, #efefef 70%, rgba(239, 239, 239, 0) 100%); background-image: linear-gradient(-90deg, #efefef, #efefef 70%, rgba(239, 239, 239, 0) 100%); } - /* line 123, ../sass/_timeline-thematic.scss */ + /* line 124, ../sass/_timeline-thematic.scss */ .s-timeline .s-hover-btns-holder .s-btn { - background-color: white; - -moz-border-radius: 4px; - -webkit-border-radius: 4px; - border-radius: 4px; - -moz-box-sizing: border-box; - -webkit-box-sizing: border-box; - box-sizing: border-box; - color: #737373; - display: inline-block; } - /* line 129, ../sass/_timeline-thematic.scss */ + height: 16px; + line-height: 16px; } + /* line 127, ../sass/_timeline-thematic.scss */ + .s-timeline .s-hover-btns-holder .s-btn .icon { + font-size: 0.7rem !important; } + /* line 134, ../sass/_timeline-thematic.scss */ .s-timeline .l-timeline-resource-graph .l-graph { - background: rgba(0, 0, 0, 0.1); } - /* line 132, ../sass/_timeline-thematic.scss */ + background: rgba(0, 0, 0, 0.05); } + /* line 137, ../sass/_timeline-thematic.scss */ .s-timeline .l-timeline-resource-graph .l-title { color: #666; } -/* line 138, ../sass/_timeline-thematic.scss */ +/* line 143, ../sass/_timeline-thematic.scss */ .edit-mode .s-swimlane { cursor: pointer; } - /* line 140, ../sass/_timeline-thematic.scss */ + /* line 145, ../sass/_timeline-thematic.scss */ .edit-mode .s-swimlane .s-label { -moz-border-radius: 4px; -webkit-border-radius: 4px; border-radius: 4px; padding: 2px 5px; } - /* line 143, ../sass/_timeline-thematic.scss */ + /* line 148, ../sass/_timeline-thematic.scss */ .edit-mode .s-swimlane .s-label:hover { background: rgba(255, 255, 255, 0.1); color: #fff; } diff --git a/platform/features/timeline/res/sass/_constants-espresso.scss b/platform/features/timeline/res/sass/_constants-espresso.scss index 107a0eadc4..51a671c37a 100644 --- a/platform/features/timeline/res/sass/_constants-espresso.scss +++ b/platform/features/timeline/res/sass/_constants-espresso.scss @@ -21,8 +21,8 @@ *****************************************************************************/ // General -$timelineHeaderColorBg: lighten($colorBodyBg, 5%); -$timelineColorAlt1: lighten($timelineHeaderColorBg, 10%); +$timelineHeaderColorBg: pullForward($colorBodyBg, 5%); +$timelineColorAlt1: pullForward($timelineHeaderColorBg, 10%); $colorGanttBarBg: #5555aa; $colorGanttBarFg: #fff; $colorGanttBarSelectedBg: #ccc; diff --git a/platform/features/timeline/res/sass/_constants-snow.scss b/platform/features/timeline/res/sass/_constants-snow.scss index b055cf3019..1d33a2793c 100644 --- a/platform/features/timeline/res/sass/_constants-snow.scss +++ b/platform/features/timeline/res/sass/_constants-snow.scss @@ -37,6 +37,6 @@ $colorGanttToggle: $colorKey; $shdwGanttBar: rgba(black, 0.1) 0 1px 3px; // Resource graphs -$timelineResourceGraphBg: rgba(black, 0.1); +$timelineResourceGraphBg: $colorPlotBg; $timelineResourceGraphFg: $colorBodyFg; $timelineResourceGraphLegendFg: $colorBodyFg; \ No newline at end of file diff --git a/platform/features/timeline/res/sass/_timeline-thematic.scss b/platform/features/timeline/res/sass/_timeline-thematic.scss index cee4021ae9..4a252957f0 100644 --- a/platform/features/timeline/res/sass/_timeline-thematic.scss +++ b/platform/features/timeline/res/sass/_timeline-thematic.scss @@ -119,9 +119,14 @@ $bg: $timelineHeaderColorBg; $bga: 1; $l: 5%; + @include user-select(none); @include background-image(linear-gradient(-90deg, rgba($bg, $bga), rgba($bg, $bga) 70%, rgba($bg, 0) 100%)); .s-btn { - @include containerSubtle(lighten($colorBodyBg, $l), lighten($colorBodyFg, $l), true); + height: 16px; + line-height: 16px; + .icon { + font-size: 0.7rem !important; + } } } From 50134bbc7fbd4eb9234999002daf876aaef97f9a Mon Sep 17 00:00:00 2001 From: Charles Hacskaylo Date: Fri, 20 Nov 2015 16:19:27 -0800 Subject: [PATCH 07/88] [Frontend] Theming and cleanups in Clocks and Timers open #208 Also converted timer to use flexbox layout; --- .../res/sass/features/_time-display.scss | 52 +++----- .../espresso/res/css/theme-espresso.css | 118 ++++++++---------- .../themes/snow/res/css/theme-snow.css | 118 ++++++++---------- .../features/clock/res/templates/timer.html | 11 +- 4 files changed, 122 insertions(+), 177 deletions(-) diff --git a/platform/commonUI/general/res/sass/features/_time-display.scss b/platform/commonUI/general/res/sass/features/_time-display.scss index d792839a00..74cf628e72 100644 --- a/platform/commonUI/general/res/sass/features/_time-display.scss +++ b/platform/commonUI/general/res/sass/features/_time-display.scss @@ -1,46 +1,32 @@ .l-time-display { $transTime: 200ms; - // Layout + line-height: 140%; &:hover { .l-btn.control { opacity: 1; } } - .l-elem-wrapper { - position: relative; - } - .l-elem { - display: inline-block; - } &.l-timer { - .l-elem.l-value { - @include trans-prop-nice(left, $transTime); - position: absolute; - left: 0; - z-index: 1; - .ui-symbol.direction { - font-size: 0.8em; - } - } - &:hover .l-elem.l-value { - left: 20px; + .control { + @include trans-prop-nice((width, opacity), $transTime); + line-height: inherit; + margin-right: 0; + opacity: 0; + width: 0; + } + &:hover .control { + margin-right: $interiorMargin; + opacity: 1; + width: auto; } } - // Look-and-feel - .l-elem { - .value.active, - &.value.active { - color: $colorKeyFg; - } - } - .l-btn.control { - @include trans-prop-nice-fade($transTime); - opacity: 0; - font-size: 0.65em; - vertical-align: top; - //line-height: 1em; - } - + .value { + color: pullForward($colorBodyFg, 20%); + font-weight: 600; + .direction { + font-size: 0.8em; + } + } } diff --git a/platform/commonUI/themes/espresso/res/css/theme-espresso.css b/platform/commonUI/themes/espresso/res/css/theme-espresso.css index 41f35389eb..cc59fea4e1 100644 --- a/platform/commonUI/themes/espresso/res/css/theme-espresso.css +++ b/platform/commonUI/themes/espresso/res/css/theme-espresso.css @@ -20,7 +20,7 @@ * this source code distribution or the Licensing information page available * at runtime from the About dialog for additional information. *****************************************************************************/ -/* line 5, ../../../../../../../../../../Library/Ruby/Gems/2.0.0/gems/compass-core-1.0.3/stylesheets/compass/reset/_utilities.scss */ +/* line 5, ../../../../../../../../../../../Library/Ruby/Gems/2.0.0/gems/compass-core-1.0.3/stylesheets/compass/reset/_utilities.scss */ html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, @@ -41,38 +41,38 @@ time, mark, audio, video { font-size: 100%; vertical-align: baseline; } -/* line 22, ../../../../../../../../../../Library/Ruby/Gems/2.0.0/gems/compass-core-1.0.3/stylesheets/compass/reset/_utilities.scss */ +/* line 22, ../../../../../../../../../../../Library/Ruby/Gems/2.0.0/gems/compass-core-1.0.3/stylesheets/compass/reset/_utilities.scss */ html { line-height: 1; } -/* line 24, ../../../../../../../../../../Library/Ruby/Gems/2.0.0/gems/compass-core-1.0.3/stylesheets/compass/reset/_utilities.scss */ +/* line 24, ../../../../../../../../../../../Library/Ruby/Gems/2.0.0/gems/compass-core-1.0.3/stylesheets/compass/reset/_utilities.scss */ ol, ul { list-style: none; } -/* line 26, ../../../../../../../../../../Library/Ruby/Gems/2.0.0/gems/compass-core-1.0.3/stylesheets/compass/reset/_utilities.scss */ +/* line 26, ../../../../../../../../../../../Library/Ruby/Gems/2.0.0/gems/compass-core-1.0.3/stylesheets/compass/reset/_utilities.scss */ table { border-collapse: collapse; border-spacing: 0; } -/* line 28, ../../../../../../../../../../Library/Ruby/Gems/2.0.0/gems/compass-core-1.0.3/stylesheets/compass/reset/_utilities.scss */ +/* line 28, ../../../../../../../../../../../Library/Ruby/Gems/2.0.0/gems/compass-core-1.0.3/stylesheets/compass/reset/_utilities.scss */ caption, th, td { text-align: left; font-weight: normal; vertical-align: middle; } -/* line 30, ../../../../../../../../../../Library/Ruby/Gems/2.0.0/gems/compass-core-1.0.3/stylesheets/compass/reset/_utilities.scss */ +/* line 30, ../../../../../../../../../../../Library/Ruby/Gems/2.0.0/gems/compass-core-1.0.3/stylesheets/compass/reset/_utilities.scss */ q, blockquote { quotes: none; } - /* line 103, ../../../../../../../../../../Library/Ruby/Gems/2.0.0/gems/compass-core-1.0.3/stylesheets/compass/reset/_utilities.scss */ + /* line 103, ../../../../../../../../../../../Library/Ruby/Gems/2.0.0/gems/compass-core-1.0.3/stylesheets/compass/reset/_utilities.scss */ q:before, q:after, blockquote:before, blockquote:after { content: ""; content: none; } -/* line 32, ../../../../../../../../../../Library/Ruby/Gems/2.0.0/gems/compass-core-1.0.3/stylesheets/compass/reset/_utilities.scss */ +/* line 32, ../../../../../../../../../../../Library/Ruby/Gems/2.0.0/gems/compass-core-1.0.3/stylesheets/compass/reset/_utilities.scss */ a img { border: none; } -/* line 116, ../../../../../../../../../../Library/Ruby/Gems/2.0.0/gems/compass-core-1.0.3/stylesheets/compass/reset/_utilities.scss */ +/* line 116, ../../../../../../../../../../../Library/Ruby/Gems/2.0.0/gems/compass-core-1.0.3/stylesheets/compass/reset/_utilities.scss */ article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary { display: block; } @@ -7376,63 +7376,43 @@ table { .frame .t-imagery .l-image-thumbs-wrapper { display: none; } -/* line 5, ../../../../general/res/sass/features/_time-display.scss */ -.l-time-display:hover .l-btn.control { - opacity: 1; } -/* line 9, ../../../../general/res/sass/features/_time-display.scss */ -.l-time-display .l-elem-wrapper { - position: relative; } -/* line 12, ../../../../general/res/sass/features/_time-display.scss */ -.l-time-display .l-elem { - display: inline-block; } -/* line 17, ../../../../general/res/sass/features/_time-display.scss */ -.l-time-display.l-timer .l-elem.l-value { - -moz-transition-property: left; - -o-transition-property: left; - -webkit-transition-property: left; - transition-property: left; - -moz-transition-duration: 200ms; - -o-transition-duration: 200ms; - -webkit-transition-duration: 200ms; - transition-duration: 200ms; - -moz-transition-timing-function: ease-in-out; - -o-transition-timing-function: ease-in-out; - -webkit-transition-timing-function: ease-in-out; - transition-timing-function: ease-in-out; - -moz-transition-delay: 0; - -o-transition-delay: 0; - -webkit-transition-delay: 0; - transition-delay: 0; - position: absolute; - left: 0; - z-index: 1; } - /* line 22, ../../../../general/res/sass/features/_time-display.scss */ - .l-time-display.l-timer .l-elem.l-value .ui-symbol.direction, .l-time-display.l-timer .l-elem.l-value .direction.t-item-icon, .l-time-display.l-timer .l-elem.l-value .direction.s-icon-btn, .l-time-display.l-timer .l-elem.l-value .l-datetime-picker .l-month-year-pager .direction.pager, .l-datetime-picker .l-month-year-pager .l-time-display.l-timer .l-elem.l-value .direction.pager { - font-size: 0.8em; } -/* line 26, ../../../../general/res/sass/features/_time-display.scss */ -.l-time-display.l-timer:hover .l-elem.l-value { - left: 20px; } -/* line 33, ../../../../general/res/sass/features/_time-display.scss */ -.l-time-display .l-elem .value.active, .l-time-display .l-elem.value.active { - color: #fff; } -/* line 38, ../../../../general/res/sass/features/_time-display.scss */ -.l-time-display .l-btn.control { - -moz-transition-property: opacity, background-color, border-color, color; - -o-transition-property: opacity, background-color, border-color, color; - -webkit-transition-property: opacity, background-color, border-color, color; - transition-property: opacity, background-color, border-color, color; - -moz-transition-duration: 200ms; - -o-transition-duration: 200ms; - -webkit-transition-duration: 200ms; - transition-duration: 200ms; - -moz-transition-timing-function: ease-in-out; - -o-transition-timing-function: ease-in-out; - -webkit-transition-timing-function: ease-in-out; - transition-timing-function: ease-in-out; - -moz-transition-delay: 0; - -o-transition-delay: 0; - -webkit-transition-delay: 0; - transition-delay: 0; - opacity: 0; - font-size: 0.65em; - vertical-align: top; } +/* line 1, ../../../../general/res/sass/features/_time-display.scss */ +.l-time-display { + line-height: 140%; } + /* line 6, ../../../../general/res/sass/features/_time-display.scss */ + .l-time-display:hover .l-btn.control { + opacity: 1; } + /* line 18, ../../../../general/res/sass/features/_time-display.scss */ + .l-time-display.l-timer .control { + -moz-transition-property: width, opacity; + -o-transition-property: width, opacity; + -webkit-transition-property: width, opacity; + transition-property: width, opacity; + -moz-transition-duration: 200ms; + -o-transition-duration: 200ms; + -webkit-transition-duration: 200ms; + transition-duration: 200ms; + -moz-transition-timing-function: ease-in-out; + -o-transition-timing-function: ease-in-out; + -webkit-transition-timing-function: ease-in-out; + transition-timing-function: ease-in-out; + -moz-transition-delay: 0; + -o-transition-delay: 0; + -webkit-transition-delay: 0; + transition-delay: 0; + line-height: inherit; + margin-right: 0; + opacity: 0; + width: 0; } + /* line 27, ../../../../general/res/sass/features/_time-display.scss */ + .l-time-display.l-timer:hover .control { + margin-right: 5px; + opacity: 1; + width: auto; } + /* line 34, ../../../../general/res/sass/features/_time-display.scss */ + .l-time-display .value { + color: #cccccc; + font-weight: 600; } + /* line 37, ../../../../general/res/sass/features/_time-display.scss */ + .l-time-display .value .direction { + font-size: 0.8em; } diff --git a/platform/commonUI/themes/snow/res/css/theme-snow.css b/platform/commonUI/themes/snow/res/css/theme-snow.css index 474997dd53..5c0c0db08b 100644 --- a/platform/commonUI/themes/snow/res/css/theme-snow.css +++ b/platform/commonUI/themes/snow/res/css/theme-snow.css @@ -20,7 +20,7 @@ * this source code distribution or the Licensing information page available * at runtime from the About dialog for additional information. *****************************************************************************/ -/* line 5, ../../../../../../../../../../Library/Ruby/Gems/2.0.0/gems/compass-core-1.0.3/stylesheets/compass/reset/_utilities.scss */ +/* line 5, ../../../../../../../../../../../Library/Ruby/Gems/2.0.0/gems/compass-core-1.0.3/stylesheets/compass/reset/_utilities.scss */ html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, @@ -41,38 +41,38 @@ time, mark, audio, video { font-size: 100%; vertical-align: baseline; } -/* line 22, ../../../../../../../../../../Library/Ruby/Gems/2.0.0/gems/compass-core-1.0.3/stylesheets/compass/reset/_utilities.scss */ +/* line 22, ../../../../../../../../../../../Library/Ruby/Gems/2.0.0/gems/compass-core-1.0.3/stylesheets/compass/reset/_utilities.scss */ html { line-height: 1; } -/* line 24, ../../../../../../../../../../Library/Ruby/Gems/2.0.0/gems/compass-core-1.0.3/stylesheets/compass/reset/_utilities.scss */ +/* line 24, ../../../../../../../../../../../Library/Ruby/Gems/2.0.0/gems/compass-core-1.0.3/stylesheets/compass/reset/_utilities.scss */ ol, ul { list-style: none; } -/* line 26, ../../../../../../../../../../Library/Ruby/Gems/2.0.0/gems/compass-core-1.0.3/stylesheets/compass/reset/_utilities.scss */ +/* line 26, ../../../../../../../../../../../Library/Ruby/Gems/2.0.0/gems/compass-core-1.0.3/stylesheets/compass/reset/_utilities.scss */ table { border-collapse: collapse; border-spacing: 0; } -/* line 28, ../../../../../../../../../../Library/Ruby/Gems/2.0.0/gems/compass-core-1.0.3/stylesheets/compass/reset/_utilities.scss */ +/* line 28, ../../../../../../../../../../../Library/Ruby/Gems/2.0.0/gems/compass-core-1.0.3/stylesheets/compass/reset/_utilities.scss */ caption, th, td { text-align: left; font-weight: normal; vertical-align: middle; } -/* line 30, ../../../../../../../../../../Library/Ruby/Gems/2.0.0/gems/compass-core-1.0.3/stylesheets/compass/reset/_utilities.scss */ +/* line 30, ../../../../../../../../../../../Library/Ruby/Gems/2.0.0/gems/compass-core-1.0.3/stylesheets/compass/reset/_utilities.scss */ q, blockquote { quotes: none; } - /* line 103, ../../../../../../../../../../Library/Ruby/Gems/2.0.0/gems/compass-core-1.0.3/stylesheets/compass/reset/_utilities.scss */ + /* line 103, ../../../../../../../../../../../Library/Ruby/Gems/2.0.0/gems/compass-core-1.0.3/stylesheets/compass/reset/_utilities.scss */ q:before, q:after, blockquote:before, blockquote:after { content: ""; content: none; } -/* line 32, ../../../../../../../../../../Library/Ruby/Gems/2.0.0/gems/compass-core-1.0.3/stylesheets/compass/reset/_utilities.scss */ +/* line 32, ../../../../../../../../../../../Library/Ruby/Gems/2.0.0/gems/compass-core-1.0.3/stylesheets/compass/reset/_utilities.scss */ a img { border: none; } -/* line 116, ../../../../../../../../../../Library/Ruby/Gems/2.0.0/gems/compass-core-1.0.3/stylesheets/compass/reset/_utilities.scss */ +/* line 116, ../../../../../../../../../../../Library/Ruby/Gems/2.0.0/gems/compass-core-1.0.3/stylesheets/compass/reset/_utilities.scss */ article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary { display: block; } @@ -7253,66 +7253,46 @@ table { .frame .t-imagery .l-image-thumbs-wrapper { display: none; } -/* line 5, ../../../../general/res/sass/features/_time-display.scss */ -.l-time-display:hover .l-btn.control { - opacity: 1; } -/* line 9, ../../../../general/res/sass/features/_time-display.scss */ -.l-time-display .l-elem-wrapper { - position: relative; } -/* line 12, ../../../../general/res/sass/features/_time-display.scss */ -.l-time-display .l-elem { - display: inline-block; } -/* line 17, ../../../../general/res/sass/features/_time-display.scss */ -.l-time-display.l-timer .l-elem.l-value { - -moz-transition-property: left; - -o-transition-property: left; - -webkit-transition-property: left; - transition-property: left; - -moz-transition-duration: 200ms; - -o-transition-duration: 200ms; - -webkit-transition-duration: 200ms; - transition-duration: 200ms; - -moz-transition-timing-function: ease-in-out; - -o-transition-timing-function: ease-in-out; - -webkit-transition-timing-function: ease-in-out; - transition-timing-function: ease-in-out; - -moz-transition-delay: 0; - -o-transition-delay: 0; - -webkit-transition-delay: 0; - transition-delay: 0; - position: absolute; - left: 0; - z-index: 1; } - /* line 22, ../../../../general/res/sass/features/_time-display.scss */ - .l-time-display.l-timer .l-elem.l-value .ui-symbol.direction, .l-time-display.l-timer .l-elem.l-value .direction.t-item-icon, .l-time-display.l-timer .l-elem.l-value .direction.s-icon-btn, .l-time-display.l-timer .l-elem.l-value .l-datetime-picker .l-month-year-pager .direction.pager, .l-datetime-picker .l-month-year-pager .l-time-display.l-timer .l-elem.l-value .direction.pager { - font-size: 0.8em; } -/* line 26, ../../../../general/res/sass/features/_time-display.scss */ -.l-time-display.l-timer:hover .l-elem.l-value { - left: 20px; } -/* line 33, ../../../../general/res/sass/features/_time-display.scss */ -.l-time-display .l-elem .value.active, .l-time-display .l-elem.value.active { - color: #fff; } -/* line 38, ../../../../general/res/sass/features/_time-display.scss */ -.l-time-display .l-btn.control { - -moz-transition-property: opacity, background-color, border-color, color; - -o-transition-property: opacity, background-color, border-color, color; - -webkit-transition-property: opacity, background-color, border-color, color; - transition-property: opacity, background-color, border-color, color; - -moz-transition-duration: 200ms; - -o-transition-duration: 200ms; - -webkit-transition-duration: 200ms; - transition-duration: 200ms; - -moz-transition-timing-function: ease-in-out; - -o-transition-timing-function: ease-in-out; - -webkit-transition-timing-function: ease-in-out; - transition-timing-function: ease-in-out; - -moz-transition-delay: 0; - -o-transition-delay: 0; - -webkit-transition-delay: 0; - transition-delay: 0; - opacity: 0; - font-size: 0.65em; - vertical-align: top; } +/* line 1, ../../../../general/res/sass/features/_time-display.scss */ +.l-time-display { + line-height: 140%; } + /* line 6, ../../../../general/res/sass/features/_time-display.scss */ + .l-time-display:hover .l-btn.control { + opacity: 1; } + /* line 18, ../../../../general/res/sass/features/_time-display.scss */ + .l-time-display.l-timer .control { + -moz-transition-property: width, opacity; + -o-transition-property: width, opacity; + -webkit-transition-property: width, opacity; + transition-property: width, opacity; + -moz-transition-duration: 200ms; + -o-transition-duration: 200ms; + -webkit-transition-duration: 200ms; + transition-duration: 200ms; + -moz-transition-timing-function: ease-in-out; + -o-transition-timing-function: ease-in-out; + -webkit-transition-timing-function: ease-in-out; + transition-timing-function: ease-in-out; + -moz-transition-delay: 0; + -o-transition-delay: 0; + -webkit-transition-delay: 0; + transition-delay: 0; + line-height: inherit; + margin-right: 0; + opacity: 0; + width: 0; } + /* line 27, ../../../../general/res/sass/features/_time-display.scss */ + .l-time-display.l-timer:hover .control { + margin-right: 5px; + opacity: 1; + width: auto; } + /* line 34, ../../../../general/res/sass/features/_time-display.scss */ + .l-time-display .value { + color: #333333; + font-weight: 600; } + /* line 37, ../../../../general/res/sass/features/_time-display.scss */ + .l-time-display .value .direction { + font-size: 0.8em; } /* line 3, ../sass/_controls.scss */ .s-btn.major .title-label, .major.s-menu-btn .title-label { diff --git a/platform/features/clock/res/templates/timer.html b/platform/features/clock/res/templates/timer.html index ebd593435f..e556f096e7 100644 --- a/platform/features/clock/res/templates/timer.html +++ b/platform/features/clock/res/templates/timer.html @@ -20,15 +20,15 @@ at runtime from the About dialog for additional information. -->
-
+
- {{timer.buttonGlyph()}} + {{timer.buttonGlyph()}} - + {{timer.sign()}} {{timer.text() || "--:--:--"}} - - +
\ No newline at end of file From 5a7349117a522d7b2556f660af6f8358cf5c8620 Mon Sep 17 00:00:00 2001 From: Charles Hacskaylo Date: Fri, 20 Nov 2015 16:27:26 -0800 Subject: [PATCH 08/88] [Frontend] Cleanups to Timeline tabular label elements open #208 Colors normalized for theming; --- .../features/timeline/res/css/timeline-espresso.css | 11 ++++++----- platform/features/timeline/res/css/timeline-snow.css | 11 ++++++----- .../timeline/res/sass/_timeline-thematic.scss | 8 ++++---- 3 files changed, 16 insertions(+), 14 deletions(-) diff --git a/platform/features/timeline/res/css/timeline-espresso.css b/platform/features/timeline/res/css/timeline-espresso.css index eb2a6afab5..ae39ad66ba 100644 --- a/platform/features/timeline/res/css/timeline-espresso.css +++ b/platform/features/timeline/res/css/timeline-espresso.css @@ -279,12 +279,13 @@ .edit-mode .s-swimlane { cursor: pointer; } /* line 145, ../sass/_timeline-thematic.scss */ - .edit-mode .s-swimlane .s-label { + .edit-mode .s-swimlane .t-object-label { -moz-border-radius: 3px; -webkit-border-radius: 3px; border-radius: 3px; + cursor: move; padding: 2px 5px; } - /* line 148, ../sass/_timeline-thematic.scss */ - .edit-mode .s-swimlane .s-label:hover { - background: rgba(255, 255, 255, 0.1); - color: #fff; } + /* line 149, ../sass/_timeline-thematic.scss */ + .edit-mode .s-swimlane .t-object-label:hover { + background: rgba(153, 153, 153, 0.3); + color: #cccccc; } diff --git a/platform/features/timeline/res/css/timeline-snow.css b/platform/features/timeline/res/css/timeline-snow.css index 344c2beb9a..54c8fbe4b7 100644 --- a/platform/features/timeline/res/css/timeline-snow.css +++ b/platform/features/timeline/res/css/timeline-snow.css @@ -279,12 +279,13 @@ .edit-mode .s-swimlane { cursor: pointer; } /* line 145, ../sass/_timeline-thematic.scss */ - .edit-mode .s-swimlane .s-label { + .edit-mode .s-swimlane .t-object-label { -moz-border-radius: 4px; -webkit-border-radius: 4px; border-radius: 4px; + cursor: move; padding: 2px 5px; } - /* line 148, ../sass/_timeline-thematic.scss */ - .edit-mode .s-swimlane .s-label:hover { - background: rgba(255, 255, 255, 0.1); - color: #fff; } + /* line 149, ../sass/_timeline-thematic.scss */ + .edit-mode .s-swimlane .t-object-label:hover { + background: rgba(102, 102, 102, 0.3); + color: #333333; } diff --git a/platform/features/timeline/res/sass/_timeline-thematic.scss b/platform/features/timeline/res/sass/_timeline-thematic.scss index 4a252957f0..62dbc27cdf 100644 --- a/platform/features/timeline/res/sass/_timeline-thematic.scss +++ b/platform/features/timeline/res/sass/_timeline-thematic.scss @@ -142,13 +142,13 @@ .edit-mode .s-swimlane { cursor: pointer; - .s-label { + .t-object-label { @include border-radius($controlCr); + cursor: move; padding: 2px 5px; &:hover { - // TO-DO: Convert to theming! - background: rgba(#fff, 0.1); - color: #fff; + background: rgba($colorBodyFg, 0.3); + color: pullForward($colorBodyFg, 20%); } } } From fd3059b38015b116fae4e87d530138c239a81bea Mon Sep 17 00:00:00 2001 From: Charles Hacskaylo Date: Fri, 20 Nov 2015 16:47:04 -0800 Subject: [PATCH 09/88] [Frontend] Final cleanups, tweaks; Refactored s-icon-btn open #208 Unit tested in both themes; .s-icon-btn refactored slightly to focus on usage as an icon-only element, removed overlap designations with .s-btn in markup; Colors normalized for theming; Code cleanup; --- .../general/res/sass/controls/_buttons.scss | 5 +- .../general/res/sass/controls/_controls.scss | 3 +- .../res/sass/features/_time-display.scss | 6 +- .../espresso/res/css/theme-espresso.css | 199 +++++++++--------- .../themes/snow/res/css/theme-snow.css | 199 +++++++++--------- .../features/timeline/res/css/timeline.css | 114 +++++----- .../timeline/res/sass/_activities.scss | 10 - .../timeline/res/sass/_timelines.scss | 24 +-- .../timeline/res/templates/timeline.html | 4 +- .../forms/res/templates/controls/color.html | 2 +- 10 files changed, 261 insertions(+), 305 deletions(-) diff --git a/platform/commonUI/general/res/sass/controls/_buttons.scss b/platform/commonUI/general/res/sass/controls/_buttons.scss index 5431b0f563..305d68bbcc 100644 --- a/platform/commonUI/general/res/sass/controls/_buttons.scss +++ b/platform/commonUI/general/res/sass/controls/_buttons.scss @@ -95,10 +95,7 @@ $pad: $interiorMargin * $baseRatio; .s-icon-btn { @extend .ui-symbol; - color: $colorBtnIcon; - &:hover { - color: lighten($colorBtnIcon, $ltGamma); - } + // Color and styling additionally in _controls.scss } .mini-tab { diff --git a/platform/commonUI/general/res/sass/controls/_controls.scss b/platform/commonUI/general/res/sass/controls/_controls.scss index 72400b86c3..d97a153cff 100644 --- a/platform/commonUI/general/res/sass/controls/_controls.scss +++ b/platform/commonUI/general/res/sass/controls/_controls.scss @@ -187,7 +187,8 @@ label.checkbox.custom { } } -.context-available { +.context-available, +.s-icon-btn { $c: $colorKey; color: $c; &:hover { diff --git a/platform/commonUI/general/res/sass/features/_time-display.scss b/platform/commonUI/general/res/sass/features/_time-display.scss index 74cf628e72..328402b0fd 100644 --- a/platform/commonUI/general/res/sass/features/_time-display.scss +++ b/platform/commonUI/general/res/sass/features/_time-display.scss @@ -18,13 +18,13 @@ &:hover .control { margin-right: $interiorMargin; opacity: 1; - width: auto; + width: 1em; } } .value { - color: pullForward($colorBodyFg, 20%); - font-weight: 600; + color: pullForward($colorBodyFg, 50%); + font-weight: 400; .direction { font-size: 0.8em; } diff --git a/platform/commonUI/themes/espresso/res/css/theme-espresso.css b/platform/commonUI/themes/espresso/res/css/theme-espresso.css index cc59fea4e1..b7acb8b674 100644 --- a/platform/commonUI/themes/espresso/res/css/theme-espresso.css +++ b/platform/commonUI/themes/espresso/res/css/theme-espresso.css @@ -1759,15 +1759,8 @@ tr[class*="s-limit"].s-limit-lwr td:first-child:before { .s-btn.show-thumbs .icon:before, .show-thumbs.s-menu-btn .icon:before, .s-btn.show-thumbs .t-item-icon:before, .show-thumbs.s-menu-btn .t-item-icon:before { content: "\000039"; } -/* line 96, ../../../../general/res/sass/controls/_buttons.scss */ -.s-icon-btn { - color: #0099cc; } - /* line 99, ../../../../general/res/sass/controls/_buttons.scss */ - .s-icon-btn:hover { - color: #33ccff; } - @media screen and (min-device-width: 800px) and (min-device-height: 1025px), screen and (min-device-width: 1025px) and (min-device-height: 800px) { - /* line 104, ../../../../general/res/sass/controls/_buttons.scss */ + /* line 101, ../../../../general/res/sass/controls/_buttons.scss */ .mini-tab { -moz-border-radius: 3px; -webkit-border-radius: 3px; @@ -1801,10 +1794,10 @@ tr[class*="s-limit"].s-limit-lwr td:first-child:before { height: 24px; width: 9px; text-align: center; } - /* line 133, ../../../../general/res/sass/controls/_buttons.scss */ + /* line 130, ../../../../general/res/sass/controls/_buttons.scss */ .mini-tab:hover { color: #0099cc; } - /* line 138, ../../../../general/res/sass/controls/_buttons.scss */ + /* line 135, ../../../../general/res/sass/controls/_buttons.scss */ .mini-tab.collapsed { background-color: #454545; -moz-border-radius: 3px; @@ -1844,19 +1837,19 @@ tr[class*="s-limit"].s-limit-lwr td:first-child:before { .mini-tab.collapsed:not(.disabled):hover > .icon, .mini-tab.collapsed:not(.disabled):hover > .t-item-icon { color: #33ccff; } } @media screen and (min-device-width: 800px) and (min-device-height: 1025px), screen and (min-device-width: 1025px) and (min-device-height: 800px) { - /* line 141, ../../../../general/res/sass/controls/_buttons.scss */ + /* line 138, ../../../../general/res/sass/controls/_buttons.scss */ .mini-tab.collapsed:before { opacity: 0; } - /* line 142, ../../../../general/res/sass/controls/_buttons.scss */ + /* line 139, ../../../../general/res/sass/controls/_buttons.scss */ .mini-tab.collapsed:after { opacity: 1; } - /* line 144, ../../../../general/res/sass/controls/_buttons.scss */ + /* line 141, ../../../../general/res/sass/controls/_buttons.scss */ .mini-tab.collapsed:hover:before { opacity: 1; } - /* line 145, ../../../../general/res/sass/controls/_buttons.scss */ + /* line 142, ../../../../general/res/sass/controls/_buttons.scss */ .mini-tab.collapsed:hover:after { opacity: 0; } - /* line 150, ../../../../general/res/sass/controls/_buttons.scss */ + /* line 147, ../../../../general/res/sass/controls/_buttons.scss */ .mini-tab:before, .mini-tab:after { -moz-transition-property: left, right, opacity; -o-transition-property: left, right, opacity; @@ -1877,22 +1870,22 @@ tr[class*="s-limit"].s-limit-lwr td:first-child:before { display: block; height: 100%; position: absolute; } - /* line 159, ../../../../general/res/sass/controls/_buttons.scss */ + /* line 156, ../../../../general/res/sass/controls/_buttons.scss */ .mini-tab:before { width: 9px; } - /* line 165, ../../../../general/res/sass/controls/_buttons.scss */ + /* line 162, ../../../../general/res/sass/controls/_buttons.scss */ .mini-tab:after { width: 100%; text-align: center; opacity: 0; } - /* line 172, ../../../../general/res/sass/controls/_buttons.scss */ + /* line 169, ../../../../general/res/sass/controls/_buttons.scss */ .mini-tab.anchor-left { text-align: right; } - /* line 175, ../../../../general/res/sass/controls/_buttons.scss */ + /* line 172, ../../../../general/res/sass/controls/_buttons.scss */ .mini-tab.anchor-left:before { content: '\3c'; right: 0; } - /* line 180, ../../../../general/res/sass/controls/_buttons.scss */ + /* line 177, ../../../../general/res/sass/controls/_buttons.scss */ .mini-tab.anchor-left.collapsed { -moz-border-radius-topleft: 0; -webkit-border-top-left-radius: 0; @@ -1901,21 +1894,21 @@ tr[class*="s-limit"].s-limit-lwr td:first-child:before { -webkit-border-bottom-left-radius: 0; border-bottom-left-radius: 0; text-align: left; } - /* line 183, ../../../../general/res/sass/controls/_buttons.scss */ + /* line 180, ../../../../general/res/sass/controls/_buttons.scss */ .mini-tab.anchor-left.collapsed:before { content: '\3e'; left: 0; } - /* line 187, ../../../../general/res/sass/controls/_buttons.scss */ + /* line 184, ../../../../general/res/sass/controls/_buttons.scss */ .mini-tab.anchor-left.collapsed:hover:before { left: 2px; } - /* line 190, ../../../../general/res/sass/controls/_buttons.scss */ + /* line 187, ../../../../general/res/sass/controls/_buttons.scss */ .mini-tab.anchor-right { text-align: left; } - /* line 193, ../../../../general/res/sass/controls/_buttons.scss */ + /* line 190, ../../../../general/res/sass/controls/_buttons.scss */ .mini-tab.anchor-right:before { content: '\3e'; left: 0; } - /* line 198, ../../../../general/res/sass/controls/_buttons.scss */ + /* line 195, ../../../../general/res/sass/controls/_buttons.scss */ .mini-tab.anchor-right.collapsed { -moz-border-radius-topright: 0; -webkit-border-top-right-radius: 0; @@ -1923,17 +1916,17 @@ tr[class*="s-limit"].s-limit-lwr td:first-child:before { -moz-border-radius-bottomright: 0; -webkit-border-bottom-right-radius: 0; border-bottom-right-radius: 0; } - /* line 200, ../../../../general/res/sass/controls/_buttons.scss */ + /* line 197, ../../../../general/res/sass/controls/_buttons.scss */ .mini-tab.anchor-right.collapsed:before { text-align: right; content: '\3c'; right: 0; } - /* line 205, ../../../../general/res/sass/controls/_buttons.scss */ + /* line 202, ../../../../general/res/sass/controls/_buttons.scss */ .mini-tab.anchor-right.collapsed:hover:before { right: 2px; } } @media screen and (min-device-width: 800px) and (min-device-height: 1025px), screen and (min-device-width: 1025px) and (min-device-height: 800px) { - /* line 211, ../../../../general/res/sass/controls/_buttons.scss */ + /* line 208, ../../../../general/res/sass/controls/_buttons.scss */ .mini-tab-icon { color: #595959; cursor: pointer; @@ -1946,31 +1939,31 @@ tr[class*="s-limit"].s-limit-lwr td:first-child:before { line-height: 9px; overflow: hidden; word-break: break-all; } - /* line 228, ../../../../general/res/sass/controls/_buttons.scss */ + /* line 225, ../../../../general/res/sass/controls/_buttons.scss */ .mini-tab-icon.collapsed { width: 11px; font-size: 11px; } - /* line 233, ../../../../general/res/sass/controls/_buttons.scss */ + /* line 230, ../../../../general/res/sass/controls/_buttons.scss */ .mini-tab-icon:before, .mini-tab-icon:after { position: absolute; display: inherit; } - /* line 239, ../../../../general/res/sass/controls/_buttons.scss */ + /* line 236, ../../../../general/res/sass/controls/_buttons.scss */ .mini-tab-icon:before { content: '\78'; } - /* line 243, ../../../../general/res/sass/controls/_buttons.scss */ + /* line 240, ../../../../general/res/sass/controls/_buttons.scss */ .mini-tab-icon:hover { color: #0099cc; } } -/* line 250, ../../../../general/res/sass/controls/_buttons.scss */ +/* line 247, ../../../../general/res/sass/controls/_buttons.scss */ .l-btn-set { font-size: 0; } - /* line 256, ../../../../general/res/sass/controls/_buttons.scss */ + /* line 253, ../../../../general/res/sass/controls/_buttons.scss */ .l-btn-set .s-btn, .l-btn-set .s-menu-btn { -moz-border-radius: 0; -webkit-border-radius: 0; border-radius: 0; margin-left: 1px; } - /* line 262, ../../../../general/res/sass/controls/_buttons.scss */ + /* line 259, ../../../../general/res/sass/controls/_buttons.scss */ .l-btn-set .first .s-btn, .l-btn-set .first .s-menu-btn { -moz-border-radius-topleft: 3px; -webkit-border-top-left-radius: 3px; @@ -1979,7 +1972,7 @@ tr[class*="s-limit"].s-limit-lwr td:first-child:before { -webkit-border-bottom-left-radius: 3px; border-bottom-left-radius: 3px; margin-left: 0; } - /* line 269, ../../../../general/res/sass/controls/_buttons.scss */ + /* line 266, ../../../../general/res/sass/controls/_buttons.scss */ .l-btn-set .last .s-btn, .l-btn-set .last .s-menu-btn { -moz-border-radius-topright: 3px; -webkit-border-top-right-radius: 3px; @@ -1988,7 +1981,7 @@ tr[class*="s-limit"].s-limit-lwr td:first-child:before { -webkit-border-bottom-right-radius: 3px; border-bottom-right-radius: 3px; } -/* line 276, ../../../../general/res/sass/controls/_buttons.scss */ +/* line 273, ../../../../general/res/sass/controls/_buttons.scss */ .paused:not(.s-btn):not(.s-menu-btn) { border-color: #c56f01 !important; color: #c56f01 !important; } @@ -2264,13 +2257,15 @@ label.checkbox.custom { border-bottom: none; } /* line 190, ../../../../general/res/sass/controls/_controls.scss */ -.context-available { +.context-available, +.s-icon-btn { color: #0099cc; } - /* line 193, ../../../../general/res/sass/controls/_controls.scss */ - .context-available:hover { + /* line 194, ../../../../general/res/sass/controls/_controls.scss */ + .context-available:hover, + .s-icon-btn:hover { color: deepskyblue; } -/* line 198, ../../../../general/res/sass/controls/_controls.scss */ +/* line 199, ../../../../general/res/sass/controls/_controls.scss */ .view-switcher { -moz-transition-property: opacity, background-color, border-color, color; -o-transition-property: opacity, background-color, border-color, color; @@ -2290,22 +2285,22 @@ label.checkbox.custom { transition-delay: 0; } /******************************************************** OBJECT-HEADER */ -/* line 203, ../../../../general/res/sass/controls/_controls.scss */ +/* line 204, ../../../../general/res/sass/controls/_controls.scss */ .object-header { font-size: 1em; } - /* line 206, ../../../../general/res/sass/controls/_controls.scss */ + /* line 207, ../../../../general/res/sass/controls/_controls.scss */ .object-header > .type-icon { color: #cccccc; font-size: 120%; float: left; margin-right: 5px; } - /* line 214, ../../../../general/res/sass/controls/_controls.scss */ + /* line 215, ../../../../general/res/sass/controls/_controls.scss */ .object-header .l-elem-wrapper mct-representation { min-width: 0.7em; } - /* line 222, ../../../../general/res/sass/controls/_controls.scss */ + /* line 223, ../../../../general/res/sass/controls/_controls.scss */ .object-header .action { margin-right: 5px; } - /* line 226, ../../../../general/res/sass/controls/_controls.scss */ + /* line 227, ../../../../general/res/sass/controls/_controls.scss */ .object-header .title-label { color: #999; overflow: hidden; @@ -2314,13 +2309,13 @@ label.checkbox.custom { flex: 0 1 auto; -webkit-flex: 0 1 auto; padding-right: 0.35em; } - /* line 233, ../../../../general/res/sass/controls/_controls.scss */ + /* line 234, ../../../../general/res/sass/controls/_controls.scss */ .object-header .context-available { font-size: 0.7em; flex: 0 0 1; -webkit-flex: 0 0 1; } @media screen and (min-device-width: 800px) and (min-device-height: 1025px), screen and (min-device-width: 1025px) and (min-device-height: 800px) { - /* line 239, ../../../../general/res/sass/controls/_controls.scss */ + /* line 240, ../../../../general/res/sass/controls/_controls.scss */ .object-header .context-available { -moz-transition-property: opacity; -o-transition-property: opacity; @@ -2339,7 +2334,7 @@ label.checkbox.custom { -webkit-transition-delay: 0; transition-delay: 0; opacity: 0; } - /* line 244, ../../../../general/res/sass/controls/_controls.scss */ + /* line 245, ../../../../general/res/sass/controls/_controls.scss */ .object-header:hover .context-available { opacity: 1; } } @@ -2353,12 +2348,12 @@ label.checkbox.custom { @keyframes progress { 100% { background-position: 20px center; } } -/* line 266, ../../../../general/res/sass/controls/_controls.scss */ +/* line 267, ../../../../general/res/sass/controls/_controls.scss */ .l-progress-bar { display: inline-block; overflow: hidden; position: relative; } - /* line 272, ../../../../general/res/sass/controls/_controls.scss */ + /* line 273, ../../../../general/res/sass/controls/_controls.scss */ .l-progress-bar .progress-amt-holder { overflow: hidden; position: absolute; @@ -2368,7 +2363,7 @@ label.checkbox.custom { left: 1px; width: auto; height: auto; } - /* line 275, ../../../../general/res/sass/controls/_controls.scss */ + /* line 276, ../../../../general/res/sass/controls/_controls.scss */ .l-progress-bar .progress-amt, .l-progress-bar .progress-amt:before, .l-progress-bar .progress-amt:after { @@ -2382,14 +2377,14 @@ label.checkbox.custom { height: auto; display: block; content: ''; } - /* line 283, ../../../../general/res/sass/controls/_controls.scss */ + /* line 284, ../../../../general/res/sass/controls/_controls.scss */ .l-progress-bar .progress-amt { right: auto; } - /* line 288, ../../../../general/res/sass/controls/_controls.scss */ + /* line 289, ../../../../general/res/sass/controls/_controls.scss */ .l-progress-bar.indeterminate .progress-amt { width: 100% !important; } -/* line 294, ../../../../general/res/sass/controls/_controls.scss */ +/* line 295, ../../../../general/res/sass/controls/_controls.scss */ .s-progress-bar { -moz-border-radius: 3px; -webkit-border-radius: 3px; @@ -2398,7 +2393,7 @@ label.checkbox.custom { -webkit-box-shadow: inset rgba(0, 0, 0, 0.3) 0 1px 4px; box-shadow: inset rgba(0, 0, 0, 0.3) 0 1px 4px; background: rgba(0, 0, 0, 0.1); } - /* line 298, ../../../../general/res/sass/controls/_controls.scss */ + /* line 299, ../../../../general/res/sass/controls/_controls.scss */ .s-progress-bar .progress-amt { -moz-border-radius: 3px; -webkit-border-radius: 3px; @@ -2425,10 +2420,10 @@ label.checkbox.custom { -o-transition-delay: 0; -webkit-transition-delay: 0; transition-delay: 0; } - /* line 303, ../../../../general/res/sass/controls/_controls.scss */ + /* line 304, ../../../../general/res/sass/controls/_controls.scss */ .s-progress-bar .progress-amt:before { background-color: #0099cc; } - /* line 306, ../../../../general/res/sass/controls/_controls.scss */ + /* line 307, ../../../../general/res/sass/controls/_controls.scss */ .s-progress-bar .progress-amt:after { background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuNSIgeTE9IjAuMCIgeDI9IjAuNSIgeTI9IjEuMCI+PHN0b3Agb2Zmc2V0PSI1JSIgc3RvcC1jb2xvcj0iIzAwMDAwMCIgc3RvcC1vcGFjaXR5PSIwLjAiLz48c3RvcCBvZmZzZXQ9IjMwJSIgc3RvcC1jb2xvcj0iI2ZmZmZmZiIgc3RvcC1vcGFjaXR5PSIwLjI1Ii8+PHN0b3Agb2Zmc2V0PSIxMDAlIiBzdG9wLWNvbG9yPSIjMDAwMDAwIiBzdG9wLW9wYWNpdHk9IjAuMCIvPjwvbGluZWFyR3JhZGllbnQ+PC9kZWZzPjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9InVybCgjZ3JhZCkiIC8+PC9zdmc+IA=='); background-size: 100%; @@ -2436,7 +2431,7 @@ label.checkbox.custom { background-image: -moz-linear-gradient(rgba(0, 0, 0, 0) 5%, rgba(255, 255, 255, 0.25) 30%, rgba(0, 0, 0, 0) 100%); background-image: -webkit-linear-gradient(rgba(0, 0, 0, 0) 5%, rgba(255, 255, 255, 0.25) 30%, rgba(0, 0, 0, 0) 100%); background-image: linear-gradient(rgba(0, 0, 0, 0) 5%, rgba(255, 255, 255, 0.25) 30%, rgba(0, 0, 0, 0) 100%); } - /* line 315, ../../../../general/res/sass/controls/_controls.scss */ + /* line 316, ../../../../general/res/sass/controls/_controls.scss */ .s-progress-bar:not(.indeterminate) .progress-amt:before { -moz-animation: progress 0.4s linear infinite; -webkit-animation: progress 0.4s linear infinite; @@ -2449,7 +2444,7 @@ label.checkbox.custom { background-position: 0 center; background-repeat: repeat-x; background-size: 20px 40%; } - /* line 323, ../../../../general/res/sass/controls/_controls.scss */ + /* line 324, ../../../../general/res/sass/controls/_controls.scss */ .s-progress-bar.indeterminate .progress-amt:before { -moz-animation: progress 0.6s linear infinite; -webkit-animation: progress 0.6s linear infinite; @@ -2461,12 +2456,12 @@ label.checkbox.custom { background-image: linear-gradient(-45deg, rgba(255, 255, 255, 0.2) 25%, rgba(0, 0, 0, 0) 25%, rgba(0, 0, 0, 0) 50%, rgba(255, 255, 255, 0.2) 50%, rgba(255, 255, 255, 0.2) 75%, rgba(0, 0, 0, 0) 75%, rgba(0, 0, 0, 0) 100%); background-repeat: repeat; background-size: 20px 20px; } - /* line 328, ../../../../general/res/sass/controls/_controls.scss */ + /* line 329, ../../../../general/res/sass/controls/_controls.scss */ .s-progress-bar.indeterminate .progress-amt:after { display: none; } /******************************************************** SLIDERS */ -/* line 336, ../../../../general/res/sass/controls/_controls.scss */ +/* line 337, ../../../../general/res/sass/controls/_controls.scss */ .slider .slot { width: auto; position: absolute; @@ -2474,7 +2469,7 @@ label.checkbox.custom { right: 0; bottom: 0; left: 0; } -/* line 344, ../../../../general/res/sass/controls/_controls.scss */ +/* line 345, ../../../../general/res/sass/controls/_controls.scss */ .slider .knob { -moz-transition-property: opacity, background-color, border-color, color; -o-transition-property: opacity, background-color, border-color, color; @@ -2500,10 +2495,10 @@ label.checkbox.custom { auto: 0; bottom: auto; left: auto; } - /* line 347, ../../../../general/res/sass/controls/_controls.scss */ + /* line 348, ../../../../general/res/sass/controls/_controls.scss */ .slider .knob:hover { background-color: #0099cc; } -/* line 358, ../../../../general/res/sass/controls/_controls.scss */ +/* line 359, ../../../../general/res/sass/controls/_controls.scss */ .slider .knob-l { -moz-border-radius-topleft: 10px; -webkit-border-top-left-radius: 10px; @@ -2512,7 +2507,7 @@ label.checkbox.custom { -webkit-border-bottom-left-radius: 10px; border-bottom-left-radius: 10px; cursor: w-resize; } -/* line 362, ../../../../general/res/sass/controls/_controls.scss */ +/* line 363, ../../../../general/res/sass/controls/_controls.scss */ .slider .knob-r { -moz-border-radius-topright: 10px; -webkit-border-top-right-radius: 10px; @@ -2521,7 +2516,7 @@ label.checkbox.custom { -webkit-border-bottom-right-radius: 10px; border-bottom-right-radius: 10px; cursor: e-resize; } -/* line 366, ../../../../general/res/sass/controls/_controls.scss */ +/* line 367, ../../../../general/res/sass/controls/_controls.scss */ .slider .range { -moz-transition-property: opacity, background-color, border-color, color; -o-transition-property: opacity, background-color, border-color, color; @@ -2548,12 +2543,12 @@ label.checkbox.custom { left: auto; height: auto; width: auto; } - /* line 377, ../../../../general/res/sass/controls/_controls.scss */ + /* line 378, ../../../../general/res/sass/controls/_controls.scss */ .slider .range:hover { background-color: rgba(0, 153, 204, 0.5); } /******************************************************** DATETIME PICKER */ -/* line 384, ../../../../general/res/sass/controls/_controls.scss */ +/* line 385, ../../../../general/res/sass/controls/_controls.scss */ .l-datetime-picker { -moz-user-select: -moz-none; -ms-user-select: none; @@ -2562,65 +2557,65 @@ label.checkbox.custom { font-size: 0.8rem; padding: 10px !important; width: 230px; } - /* line 390, ../../../../general/res/sass/controls/_controls.scss */ + /* line 391, ../../../../general/res/sass/controls/_controls.scss */ .l-datetime-picker .l-month-year-pager { height: 15px; margin-bottom: 5px; position: relative; } - /* line 399, ../../../../general/res/sass/controls/_controls.scss */ + /* line 400, ../../../../general/res/sass/controls/_controls.scss */ .l-datetime-picker .l-month-year-pager .pager { width: 20px; } - /* line 402, ../../../../general/res/sass/controls/_controls.scss */ + /* line 403, ../../../../general/res/sass/controls/_controls.scss */ .l-datetime-picker .l-month-year-pager .pager.prev { right: auto; } - /* line 404, ../../../../general/res/sass/controls/_controls.scss */ + /* line 405, ../../../../general/res/sass/controls/_controls.scss */ .l-datetime-picker .l-month-year-pager .pager.prev:before { content: "\3c"; } - /* line 408, ../../../../general/res/sass/controls/_controls.scss */ + /* line 409, ../../../../general/res/sass/controls/_controls.scss */ .l-datetime-picker .l-month-year-pager .pager.next { left: auto; text-align: right; } - /* line 411, ../../../../general/res/sass/controls/_controls.scss */ + /* line 412, ../../../../general/res/sass/controls/_controls.scss */ .l-datetime-picker .l-month-year-pager .pager.next:before { content: "\3e"; } - /* line 416, ../../../../general/res/sass/controls/_controls.scss */ + /* line 417, ../../../../general/res/sass/controls/_controls.scss */ .l-datetime-picker .l-month-year-pager .val { text-align: center; left: 25px; right: 25px; } - /* line 422, ../../../../general/res/sass/controls/_controls.scss */ + /* line 423, ../../../../general/res/sass/controls/_controls.scss */ .l-datetime-picker .l-calendar, .l-datetime-picker .l-time-selects { border-top: 1px solid rgba(153, 153, 153, 0.1); } - /* line 426, ../../../../general/res/sass/controls/_controls.scss */ + /* line 427, ../../../../general/res/sass/controls/_controls.scss */ .l-datetime-picker .l-time-selects { line-height: 22px; } /******************************************************** CALENDAR */ -/* line 434, ../../../../general/res/sass/controls/_controls.scss */ +/* line 435, ../../../../general/res/sass/controls/_controls.scss */ .l-calendar ul.l-cal-row { display: -webkit-flex; display: flex; -webkit-flex-flow: row nowrap; flex-flow: row nowrap; margin-top: 1px; } - /* line 438, ../../../../general/res/sass/controls/_controls.scss */ + /* line 439, ../../../../general/res/sass/controls/_controls.scss */ .l-calendar ul.l-cal-row:first-child { margin-top: 0; } - /* line 441, ../../../../general/res/sass/controls/_controls.scss */ + /* line 442, ../../../../general/res/sass/controls/_controls.scss */ .l-calendar ul.l-cal-row li { -webkit-flex: 1 0; flex: 1 0; margin-left: 1px; padding: 5px; text-align: center; } - /* line 446, ../../../../general/res/sass/controls/_controls.scss */ + /* line 447, ../../../../general/res/sass/controls/_controls.scss */ .l-calendar ul.l-cal-row li:first-child { margin-left: 0; } - /* line 450, ../../../../general/res/sass/controls/_controls.scss */ + /* line 451, ../../../../general/res/sass/controls/_controls.scss */ .l-calendar ul.l-cal-row.l-header li { color: #b3b3b3; } - /* line 453, ../../../../general/res/sass/controls/_controls.scss */ + /* line 454, ../../../../general/res/sass/controls/_controls.scss */ .l-calendar ul.l-cal-row.l-body li { -moz-transition-property: background-color; -o-transition-property: background-color; @@ -2639,31 +2634,31 @@ label.checkbox.custom { -webkit-transition-delay: 0; transition-delay: 0; cursor: pointer; } - /* line 456, ../../../../general/res/sass/controls/_controls.scss */ + /* line 457, ../../../../general/res/sass/controls/_controls.scss */ .l-calendar ul.l-cal-row.l-body li.in-month { background-color: #616161; } - /* line 459, ../../../../general/res/sass/controls/_controls.scss */ + /* line 460, ../../../../general/res/sass/controls/_controls.scss */ .l-calendar ul.l-cal-row.l-body li .sub { color: #b3b3b3; font-size: 0.8em; } - /* line 463, ../../../../general/res/sass/controls/_controls.scss */ + /* line 464, ../../../../general/res/sass/controls/_controls.scss */ .l-calendar ul.l-cal-row.l-body li.selected { background: #006080; color: #cccccc; } - /* line 466, ../../../../general/res/sass/controls/_controls.scss */ + /* line 467, ../../../../general/res/sass/controls/_controls.scss */ .l-calendar ul.l-cal-row.l-body li.selected .sub { color: inherit; } - /* line 470, ../../../../general/res/sass/controls/_controls.scss */ + /* line 471, ../../../../general/res/sass/controls/_controls.scss */ .l-calendar ul.l-cal-row.l-body li:hover { background-color: #0099cc; color: #fff; } - /* line 473, ../../../../general/res/sass/controls/_controls.scss */ + /* line 474, ../../../../general/res/sass/controls/_controls.scss */ .l-calendar ul.l-cal-row.l-body li:hover .sub { color: inherit; } /******************************************************** BROWSER ELEMENTS */ @media screen and (min-device-width: 800px) and (min-device-height: 1025px), screen and (min-device-width: 1025px) and (min-device-height: 800px) { - /* line 484, ../../../../general/res/sass/controls/_controls.scss */ + /* line 485, ../../../../general/res/sass/controls/_controls.scss */ ::-webkit-scrollbar { -moz-border-radius: 2px; -webkit-border-radius: 2px; @@ -2678,7 +2673,7 @@ label.checkbox.custom { height: 10px; width: 10px; } - /* line 493, ../../../../general/res/sass/controls/_controls.scss */ + /* line 494, ../../../../general/res/sass/controls/_controls.scss */ ::-webkit-scrollbar-thumb { background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuNSIgeTE9IjAuMCIgeDI9IjAuNSIgeTI9IjEuMCI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzU5NTk1OSIvPjxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iIzRkNGQ0ZCIvPjwvbGluZWFyR3JhZGllbnQ+PC9kZWZzPjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9InVybCgjZ3JhZCkiIC8+PC9zdmc+IA=='); background-size: 100%; @@ -2692,7 +2687,7 @@ label.checkbox.custom { -moz-box-sizing: border-box; -webkit-box-sizing: border-box; box-sizing: border-box; } - /* line 500, ../../../../general/res/sass/controls/_controls.scss */ + /* line 501, ../../../../general/res/sass/controls/_controls.scss */ ::-webkit-scrollbar-thumb:hover { background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuNSIgeTE9IjAuMCIgeDI9IjAuNSIgeTI9IjEuMCI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzVlNWU1ZSIvPjxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iIzUyNTI1MiIvPjwvbGluZWFyR3JhZGllbnQ+PC9kZWZzPjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9InVybCgjZ3JhZCkiIC8+PC9zdmc+IA=='); background-size: 100%; @@ -2701,7 +2696,7 @@ label.checkbox.custom { background-image: -webkit-linear-gradient(#5e5e5e, #525252 20px); background-image: linear-gradient(#5e5e5e, #525252 20px); } - /* line 505, ../../../../general/res/sass/controls/_controls.scss */ + /* line 506, ../../../../general/res/sass/controls/_controls.scss */ ::-webkit-scrollbar-corner { background: rgba(0, 0, 0, 0.4); } } /***************************************************************************** @@ -7379,10 +7374,10 @@ table { /* line 1, ../../../../general/res/sass/features/_time-display.scss */ .l-time-display { line-height: 140%; } - /* line 6, ../../../../general/res/sass/features/_time-display.scss */ + /* line 5, ../../../../general/res/sass/features/_time-display.scss */ .l-time-display:hover .l-btn.control { opacity: 1; } - /* line 18, ../../../../general/res/sass/features/_time-display.scss */ + /* line 11, ../../../../general/res/sass/features/_time-display.scss */ .l-time-display.l-timer .control { -moz-transition-property: width, opacity; -o-transition-property: width, opacity; @@ -7404,15 +7399,15 @@ table { margin-right: 0; opacity: 0; width: 0; } - /* line 27, ../../../../general/res/sass/features/_time-display.scss */ + /* line 18, ../../../../general/res/sass/features/_time-display.scss */ .l-time-display.l-timer:hover .control { margin-right: 5px; opacity: 1; - width: auto; } - /* line 34, ../../../../general/res/sass/features/_time-display.scss */ + width: 1em; } + /* line 25, ../../../../general/res/sass/features/_time-display.scss */ .l-time-display .value { - color: #cccccc; - font-weight: 600; } - /* line 37, ../../../../general/res/sass/features/_time-display.scss */ + color: white; + font-weight: 400; } + /* line 28, ../../../../general/res/sass/features/_time-display.scss */ .l-time-display .value .direction { font-size: 0.8em; } diff --git a/platform/commonUI/themes/snow/res/css/theme-snow.css b/platform/commonUI/themes/snow/res/css/theme-snow.css index 5c0c0db08b..dc48a38eab 100644 --- a/platform/commonUI/themes/snow/res/css/theme-snow.css +++ b/platform/commonUI/themes/snow/res/css/theme-snow.css @@ -1713,15 +1713,8 @@ tr[class*="s-limit"].s-limit-lwr td:first-child:before { .s-btn.show-thumbs .icon:before, .show-thumbs.s-menu-btn .icon:before, .s-btn.show-thumbs .t-item-icon:before, .show-thumbs.s-menu-btn .t-item-icon:before { content: "\000039"; } -/* line 96, ../../../../general/res/sass/controls/_buttons.scss */ -.s-icon-btn { - color: #eee; } - /* line 99, ../../../../general/res/sass/controls/_buttons.scss */ - .s-icon-btn:hover { - color: white; } - @media screen and (min-device-width: 800px) and (min-device-height: 1025px), screen and (min-device-width: 1025px) and (min-device-height: 800px) { - /* line 104, ../../../../general/res/sass/controls/_buttons.scss */ + /* line 101, ../../../../general/res/sass/controls/_buttons.scss */ .mini-tab { -moz-border-radius: 4px; -webkit-border-radius: 4px; @@ -1755,10 +1748,10 @@ tr[class*="s-limit"].s-limit-lwr td:first-child:before { height: 24px; width: 9px; text-align: center; } - /* line 133, ../../../../general/res/sass/controls/_buttons.scss */ + /* line 130, ../../../../general/res/sass/controls/_buttons.scss */ .mini-tab:hover { color: #0099cc; } - /* line 138, ../../../../general/res/sass/controls/_buttons.scss */ + /* line 135, ../../../../general/res/sass/controls/_buttons.scss */ .mini-tab.collapsed { background-color: #969696; -moz-border-radius: 4px; @@ -1789,19 +1782,19 @@ tr[class*="s-limit"].s-limit-lwr td:first-child:before { .mini-tab.collapsed:not(.disabled):hover > .icon, .mini-tab.collapsed:not(.disabled):hover > .t-item-icon { color: white; } } @media screen and (min-device-width: 800px) and (min-device-height: 1025px), screen and (min-device-width: 1025px) and (min-device-height: 800px) { - /* line 141, ../../../../general/res/sass/controls/_buttons.scss */ + /* line 138, ../../../../general/res/sass/controls/_buttons.scss */ .mini-tab.collapsed:before { opacity: 0; } - /* line 142, ../../../../general/res/sass/controls/_buttons.scss */ + /* line 139, ../../../../general/res/sass/controls/_buttons.scss */ .mini-tab.collapsed:after { opacity: 1; } - /* line 144, ../../../../general/res/sass/controls/_buttons.scss */ + /* line 141, ../../../../general/res/sass/controls/_buttons.scss */ .mini-tab.collapsed:hover:before { opacity: 1; } - /* line 145, ../../../../general/res/sass/controls/_buttons.scss */ + /* line 142, ../../../../general/res/sass/controls/_buttons.scss */ .mini-tab.collapsed:hover:after { opacity: 0; } - /* line 150, ../../../../general/res/sass/controls/_buttons.scss */ + /* line 147, ../../../../general/res/sass/controls/_buttons.scss */ .mini-tab:before, .mini-tab:after { -moz-transition-property: left, right, opacity; -o-transition-property: left, right, opacity; @@ -1822,22 +1815,22 @@ tr[class*="s-limit"].s-limit-lwr td:first-child:before { display: block; height: 100%; position: absolute; } - /* line 159, ../../../../general/res/sass/controls/_buttons.scss */ + /* line 156, ../../../../general/res/sass/controls/_buttons.scss */ .mini-tab:before { width: 9px; } - /* line 165, ../../../../general/res/sass/controls/_buttons.scss */ + /* line 162, ../../../../general/res/sass/controls/_buttons.scss */ .mini-tab:after { width: 100%; text-align: center; opacity: 0; } - /* line 172, ../../../../general/res/sass/controls/_buttons.scss */ + /* line 169, ../../../../general/res/sass/controls/_buttons.scss */ .mini-tab.anchor-left { text-align: right; } - /* line 175, ../../../../general/res/sass/controls/_buttons.scss */ + /* line 172, ../../../../general/res/sass/controls/_buttons.scss */ .mini-tab.anchor-left:before { content: '\3c'; right: 0; } - /* line 180, ../../../../general/res/sass/controls/_buttons.scss */ + /* line 177, ../../../../general/res/sass/controls/_buttons.scss */ .mini-tab.anchor-left.collapsed { -moz-border-radius-topleft: 0; -webkit-border-top-left-radius: 0; @@ -1846,21 +1839,21 @@ tr[class*="s-limit"].s-limit-lwr td:first-child:before { -webkit-border-bottom-left-radius: 0; border-bottom-left-radius: 0; text-align: left; } - /* line 183, ../../../../general/res/sass/controls/_buttons.scss */ + /* line 180, ../../../../general/res/sass/controls/_buttons.scss */ .mini-tab.anchor-left.collapsed:before { content: '\3e'; left: 0; } - /* line 187, ../../../../general/res/sass/controls/_buttons.scss */ + /* line 184, ../../../../general/res/sass/controls/_buttons.scss */ .mini-tab.anchor-left.collapsed:hover:before { left: 2px; } - /* line 190, ../../../../general/res/sass/controls/_buttons.scss */ + /* line 187, ../../../../general/res/sass/controls/_buttons.scss */ .mini-tab.anchor-right { text-align: left; } - /* line 193, ../../../../general/res/sass/controls/_buttons.scss */ + /* line 190, ../../../../general/res/sass/controls/_buttons.scss */ .mini-tab.anchor-right:before { content: '\3e'; left: 0; } - /* line 198, ../../../../general/res/sass/controls/_buttons.scss */ + /* line 195, ../../../../general/res/sass/controls/_buttons.scss */ .mini-tab.anchor-right.collapsed { -moz-border-radius-topright: 0; -webkit-border-top-right-radius: 0; @@ -1868,17 +1861,17 @@ tr[class*="s-limit"].s-limit-lwr td:first-child:before { -moz-border-radius-bottomright: 0; -webkit-border-bottom-right-radius: 0; border-bottom-right-radius: 0; } - /* line 200, ../../../../general/res/sass/controls/_buttons.scss */ + /* line 197, ../../../../general/res/sass/controls/_buttons.scss */ .mini-tab.anchor-right.collapsed:before { text-align: right; content: '\3c'; right: 0; } - /* line 205, ../../../../general/res/sass/controls/_buttons.scss */ + /* line 202, ../../../../general/res/sass/controls/_buttons.scss */ .mini-tab.anchor-right.collapsed:hover:before { right: 2px; } } @media screen and (min-device-width: 800px) and (min-device-height: 1025px), screen and (min-device-width: 1025px) and (min-device-height: 800px) { - /* line 211, ../../../../general/res/sass/controls/_buttons.scss */ + /* line 208, ../../../../general/res/sass/controls/_buttons.scss */ .mini-tab-icon { color: #d6d6d6; cursor: pointer; @@ -1891,31 +1884,31 @@ tr[class*="s-limit"].s-limit-lwr td:first-child:before { line-height: 9px; overflow: hidden; word-break: break-all; } - /* line 228, ../../../../general/res/sass/controls/_buttons.scss */ + /* line 225, ../../../../general/res/sass/controls/_buttons.scss */ .mini-tab-icon.collapsed { width: 11px; font-size: 11px; } - /* line 233, ../../../../general/res/sass/controls/_buttons.scss */ + /* line 230, ../../../../general/res/sass/controls/_buttons.scss */ .mini-tab-icon:before, .mini-tab-icon:after { position: absolute; display: inherit; } - /* line 239, ../../../../general/res/sass/controls/_buttons.scss */ + /* line 236, ../../../../general/res/sass/controls/_buttons.scss */ .mini-tab-icon:before { content: '\78'; } - /* line 243, ../../../../general/res/sass/controls/_buttons.scss */ + /* line 240, ../../../../general/res/sass/controls/_buttons.scss */ .mini-tab-icon:hover { color: #0099cc; } } -/* line 250, ../../../../general/res/sass/controls/_buttons.scss */ +/* line 247, ../../../../general/res/sass/controls/_buttons.scss */ .l-btn-set { font-size: 0; } - /* line 256, ../../../../general/res/sass/controls/_buttons.scss */ + /* line 253, ../../../../general/res/sass/controls/_buttons.scss */ .l-btn-set .s-btn, .l-btn-set .s-menu-btn { -moz-border-radius: 0; -webkit-border-radius: 0; border-radius: 0; margin-left: 1px; } - /* line 262, ../../../../general/res/sass/controls/_buttons.scss */ + /* line 259, ../../../../general/res/sass/controls/_buttons.scss */ .l-btn-set .first .s-btn, .l-btn-set .first .s-menu-btn { -moz-border-radius-topleft: 4px; -webkit-border-top-left-radius: 4px; @@ -1924,7 +1917,7 @@ tr[class*="s-limit"].s-limit-lwr td:first-child:before { -webkit-border-bottom-left-radius: 4px; border-bottom-left-radius: 4px; margin-left: 0; } - /* line 269, ../../../../general/res/sass/controls/_buttons.scss */ + /* line 266, ../../../../general/res/sass/controls/_buttons.scss */ .l-btn-set .last .s-btn, .l-btn-set .last .s-menu-btn { -moz-border-radius-topright: 4px; -webkit-border-top-right-radius: 4px; @@ -1933,7 +1926,7 @@ tr[class*="s-limit"].s-limit-lwr td:first-child:before { -webkit-border-bottom-right-radius: 4px; border-bottom-right-radius: 4px; } -/* line 276, ../../../../general/res/sass/controls/_buttons.scss */ +/* line 273, ../../../../general/res/sass/controls/_buttons.scss */ .paused:not(.s-btn):not(.s-menu-btn) { border-color: #ff9900 !important; color: #ff9900 !important; } @@ -2209,13 +2202,15 @@ label.checkbox.custom { border-bottom: none; } /* line 190, ../../../../general/res/sass/controls/_controls.scss */ -.context-available { +.context-available, +.s-icon-btn { color: #0099cc; } - /* line 193, ../../../../general/res/sass/controls/_controls.scss */ - .context-available:hover { + /* line 194, ../../../../general/res/sass/controls/_controls.scss */ + .context-available:hover, + .s-icon-btn:hover { color: deepskyblue; } -/* line 198, ../../../../general/res/sass/controls/_controls.scss */ +/* line 199, ../../../../general/res/sass/controls/_controls.scss */ .view-switcher { -moz-transition-property: opacity, background-color, border-color, color; -o-transition-property: opacity, background-color, border-color, color; @@ -2235,22 +2230,22 @@ label.checkbox.custom { transition-delay: 0; } /******************************************************** OBJECT-HEADER */ -/* line 203, ../../../../general/res/sass/controls/_controls.scss */ +/* line 204, ../../../../general/res/sass/controls/_controls.scss */ .object-header { font-size: 1em; } - /* line 206, ../../../../general/res/sass/controls/_controls.scss */ + /* line 207, ../../../../general/res/sass/controls/_controls.scss */ .object-header > .type-icon { color: #b3b3b3; font-size: 120%; float: left; margin-right: 5px; } - /* line 214, ../../../../general/res/sass/controls/_controls.scss */ + /* line 215, ../../../../general/res/sass/controls/_controls.scss */ .object-header .l-elem-wrapper mct-representation { min-width: 0.7em; } - /* line 222, ../../../../general/res/sass/controls/_controls.scss */ + /* line 223, ../../../../general/res/sass/controls/_controls.scss */ .object-header .action { margin-right: 5px; } - /* line 226, ../../../../general/res/sass/controls/_controls.scss */ + /* line 227, ../../../../general/res/sass/controls/_controls.scss */ .object-header .title-label { color: #666; overflow: hidden; @@ -2259,13 +2254,13 @@ label.checkbox.custom { flex: 0 1 auto; -webkit-flex: 0 1 auto; padding-right: 0.35em; } - /* line 233, ../../../../general/res/sass/controls/_controls.scss */ + /* line 234, ../../../../general/res/sass/controls/_controls.scss */ .object-header .context-available { font-size: 0.7em; flex: 0 0 1; -webkit-flex: 0 0 1; } @media screen and (min-device-width: 800px) and (min-device-height: 1025px), screen and (min-device-width: 1025px) and (min-device-height: 800px) { - /* line 239, ../../../../general/res/sass/controls/_controls.scss */ + /* line 240, ../../../../general/res/sass/controls/_controls.scss */ .object-header .context-available { -moz-transition-property: opacity; -o-transition-property: opacity; @@ -2284,7 +2279,7 @@ label.checkbox.custom { -webkit-transition-delay: 0; transition-delay: 0; opacity: 0; } - /* line 244, ../../../../general/res/sass/controls/_controls.scss */ + /* line 245, ../../../../general/res/sass/controls/_controls.scss */ .object-header:hover .context-available { opacity: 1; } } @@ -2298,12 +2293,12 @@ label.checkbox.custom { @keyframes progress { 100% { background-position: 20px center; } } -/* line 266, ../../../../general/res/sass/controls/_controls.scss */ +/* line 267, ../../../../general/res/sass/controls/_controls.scss */ .l-progress-bar { display: inline-block; overflow: hidden; position: relative; } - /* line 272, ../../../../general/res/sass/controls/_controls.scss */ + /* line 273, ../../../../general/res/sass/controls/_controls.scss */ .l-progress-bar .progress-amt-holder { overflow: hidden; position: absolute; @@ -2313,7 +2308,7 @@ label.checkbox.custom { left: 1px; width: auto; height: auto; } - /* line 275, ../../../../general/res/sass/controls/_controls.scss */ + /* line 276, ../../../../general/res/sass/controls/_controls.scss */ .l-progress-bar .progress-amt, .l-progress-bar .progress-amt:before, .l-progress-bar .progress-amt:after { @@ -2327,14 +2322,14 @@ label.checkbox.custom { height: auto; display: block; content: ''; } - /* line 283, ../../../../general/res/sass/controls/_controls.scss */ + /* line 284, ../../../../general/res/sass/controls/_controls.scss */ .l-progress-bar .progress-amt { right: auto; } - /* line 288, ../../../../general/res/sass/controls/_controls.scss */ + /* line 289, ../../../../general/res/sass/controls/_controls.scss */ .l-progress-bar.indeterminate .progress-amt { width: 100% !important; } -/* line 294, ../../../../general/res/sass/controls/_controls.scss */ +/* line 295, ../../../../general/res/sass/controls/_controls.scss */ .s-progress-bar { -moz-border-radius: 4px; -webkit-border-radius: 4px; @@ -2343,7 +2338,7 @@ label.checkbox.custom { -webkit-box-shadow: inset rgba(0, 0, 0, 0.3) 0 1px 4px; box-shadow: inset rgba(0, 0, 0, 0.3) 0 1px 4px; background: rgba(0, 0, 0, 0.1); } - /* line 298, ../../../../general/res/sass/controls/_controls.scss */ + /* line 299, ../../../../general/res/sass/controls/_controls.scss */ .s-progress-bar .progress-amt { -moz-border-radius: 4px; -webkit-border-radius: 4px; @@ -2370,10 +2365,10 @@ label.checkbox.custom { -o-transition-delay: 0; -webkit-transition-delay: 0; transition-delay: 0; } - /* line 303, ../../../../general/res/sass/controls/_controls.scss */ + /* line 304, ../../../../general/res/sass/controls/_controls.scss */ .s-progress-bar .progress-amt:before { background-color: #0a0; } - /* line 306, ../../../../general/res/sass/controls/_controls.scss */ + /* line 307, ../../../../general/res/sass/controls/_controls.scss */ .s-progress-bar .progress-amt:after { background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuNSIgeTE9IjAuMCIgeDI9IjAuNSIgeTI9IjEuMCI+PHN0b3Agb2Zmc2V0PSI1JSIgc3RvcC1jb2xvcj0iIzAwMDAwMCIgc3RvcC1vcGFjaXR5PSIwLjAiLz48c3RvcCBvZmZzZXQ9IjMwJSIgc3RvcC1jb2xvcj0iI2ZmZmZmZiIgc3RvcC1vcGFjaXR5PSIwLjI1Ii8+PHN0b3Agb2Zmc2V0PSIxMDAlIiBzdG9wLWNvbG9yPSIjMDAwMDAwIiBzdG9wLW9wYWNpdHk9IjAuMCIvPjwvbGluZWFyR3JhZGllbnQ+PC9kZWZzPjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9InVybCgjZ3JhZCkiIC8+PC9zdmc+IA=='); background-size: 100%; @@ -2381,7 +2376,7 @@ label.checkbox.custom { background-image: -moz-linear-gradient(rgba(0, 0, 0, 0) 5%, rgba(255, 255, 255, 0.25) 30%, rgba(0, 0, 0, 0) 100%); background-image: -webkit-linear-gradient(rgba(0, 0, 0, 0) 5%, rgba(255, 255, 255, 0.25) 30%, rgba(0, 0, 0, 0) 100%); background-image: linear-gradient(rgba(0, 0, 0, 0) 5%, rgba(255, 255, 255, 0.25) 30%, rgba(0, 0, 0, 0) 100%); } - /* line 315, ../../../../general/res/sass/controls/_controls.scss */ + /* line 316, ../../../../general/res/sass/controls/_controls.scss */ .s-progress-bar:not(.indeterminate) .progress-amt:before { -moz-animation: progress 0.4s linear infinite; -webkit-animation: progress 0.4s linear infinite; @@ -2394,7 +2389,7 @@ label.checkbox.custom { background-position: 0 center; background-repeat: repeat-x; background-size: 20px 40%; } - /* line 323, ../../../../general/res/sass/controls/_controls.scss */ + /* line 324, ../../../../general/res/sass/controls/_controls.scss */ .s-progress-bar.indeterminate .progress-amt:before { -moz-animation: progress 0.6s linear infinite; -webkit-animation: progress 0.6s linear infinite; @@ -2406,12 +2401,12 @@ label.checkbox.custom { background-image: linear-gradient(-45deg, rgba(255, 255, 255, 0.2) 25%, rgba(0, 0, 0, 0) 25%, rgba(0, 0, 0, 0) 50%, rgba(255, 255, 255, 0.2) 50%, rgba(255, 255, 255, 0.2) 75%, rgba(0, 0, 0, 0) 75%, rgba(0, 0, 0, 0) 100%); background-repeat: repeat; background-size: 20px 20px; } - /* line 328, ../../../../general/res/sass/controls/_controls.scss */ + /* line 329, ../../../../general/res/sass/controls/_controls.scss */ .s-progress-bar.indeterminate .progress-amt:after { display: none; } /******************************************************** SLIDERS */ -/* line 336, ../../../../general/res/sass/controls/_controls.scss */ +/* line 337, ../../../../general/res/sass/controls/_controls.scss */ .slider .slot { width: auto; position: absolute; @@ -2419,7 +2414,7 @@ label.checkbox.custom { right: 0; bottom: 0; left: 0; } -/* line 344, ../../../../general/res/sass/controls/_controls.scss */ +/* line 345, ../../../../general/res/sass/controls/_controls.scss */ .slider .knob { -moz-transition-property: opacity, background-color, border-color, color; -o-transition-property: opacity, background-color, border-color, color; @@ -2445,10 +2440,10 @@ label.checkbox.custom { auto: 0; bottom: auto; left: auto; } - /* line 347, ../../../../general/res/sass/controls/_controls.scss */ + /* line 348, ../../../../general/res/sass/controls/_controls.scss */ .slider .knob:hover { background-color: rgba(0, 153, 204, 0.7); } -/* line 358, ../../../../general/res/sass/controls/_controls.scss */ +/* line 359, ../../../../general/res/sass/controls/_controls.scss */ .slider .knob-l { -moz-border-radius-topleft: 10px; -webkit-border-top-left-radius: 10px; @@ -2457,7 +2452,7 @@ label.checkbox.custom { -webkit-border-bottom-left-radius: 10px; border-bottom-left-radius: 10px; cursor: w-resize; } -/* line 362, ../../../../general/res/sass/controls/_controls.scss */ +/* line 363, ../../../../general/res/sass/controls/_controls.scss */ .slider .knob-r { -moz-border-radius-topright: 10px; -webkit-border-top-right-radius: 10px; @@ -2466,7 +2461,7 @@ label.checkbox.custom { -webkit-border-bottom-right-radius: 10px; border-bottom-right-radius: 10px; cursor: e-resize; } -/* line 366, ../../../../general/res/sass/controls/_controls.scss */ +/* line 367, ../../../../general/res/sass/controls/_controls.scss */ .slider .range { -moz-transition-property: opacity, background-color, border-color, color; -o-transition-property: opacity, background-color, border-color, color; @@ -2493,12 +2488,12 @@ label.checkbox.custom { left: auto; height: auto; width: auto; } - /* line 377, ../../../../general/res/sass/controls/_controls.scss */ + /* line 378, ../../../../general/res/sass/controls/_controls.scss */ .slider .range:hover { background-color: rgba(0, 153, 204, 0.4); } /******************************************************** DATETIME PICKER */ -/* line 384, ../../../../general/res/sass/controls/_controls.scss */ +/* line 385, ../../../../general/res/sass/controls/_controls.scss */ .l-datetime-picker { -moz-user-select: -moz-none; -ms-user-select: none; @@ -2507,65 +2502,65 @@ label.checkbox.custom { font-size: 0.8rem; padding: 10px !important; width: 230px; } - /* line 390, ../../../../general/res/sass/controls/_controls.scss */ + /* line 391, ../../../../general/res/sass/controls/_controls.scss */ .l-datetime-picker .l-month-year-pager { height: 15px; margin-bottom: 5px; position: relative; } - /* line 399, ../../../../general/res/sass/controls/_controls.scss */ + /* line 400, ../../../../general/res/sass/controls/_controls.scss */ .l-datetime-picker .l-month-year-pager .pager { width: 20px; } - /* line 402, ../../../../general/res/sass/controls/_controls.scss */ + /* line 403, ../../../../general/res/sass/controls/_controls.scss */ .l-datetime-picker .l-month-year-pager .pager.prev { right: auto; } - /* line 404, ../../../../general/res/sass/controls/_controls.scss */ + /* line 405, ../../../../general/res/sass/controls/_controls.scss */ .l-datetime-picker .l-month-year-pager .pager.prev:before { content: "\3c"; } - /* line 408, ../../../../general/res/sass/controls/_controls.scss */ + /* line 409, ../../../../general/res/sass/controls/_controls.scss */ .l-datetime-picker .l-month-year-pager .pager.next { left: auto; text-align: right; } - /* line 411, ../../../../general/res/sass/controls/_controls.scss */ + /* line 412, ../../../../general/res/sass/controls/_controls.scss */ .l-datetime-picker .l-month-year-pager .pager.next:before { content: "\3e"; } - /* line 416, ../../../../general/res/sass/controls/_controls.scss */ + /* line 417, ../../../../general/res/sass/controls/_controls.scss */ .l-datetime-picker .l-month-year-pager .val { text-align: center; left: 25px; right: 25px; } - /* line 422, ../../../../general/res/sass/controls/_controls.scss */ + /* line 423, ../../../../general/res/sass/controls/_controls.scss */ .l-datetime-picker .l-calendar, .l-datetime-picker .l-time-selects { border-top: 1px solid rgba(102, 102, 102, 0.2); } - /* line 426, ../../../../general/res/sass/controls/_controls.scss */ + /* line 427, ../../../../general/res/sass/controls/_controls.scss */ .l-datetime-picker .l-time-selects { line-height: 22px; } /******************************************************** CALENDAR */ -/* line 434, ../../../../general/res/sass/controls/_controls.scss */ +/* line 435, ../../../../general/res/sass/controls/_controls.scss */ .l-calendar ul.l-cal-row { display: -webkit-flex; display: flex; -webkit-flex-flow: row nowrap; flex-flow: row nowrap; margin-top: 1px; } - /* line 438, ../../../../general/res/sass/controls/_controls.scss */ + /* line 439, ../../../../general/res/sass/controls/_controls.scss */ .l-calendar ul.l-cal-row:first-child { margin-top: 0; } - /* line 441, ../../../../general/res/sass/controls/_controls.scss */ + /* line 442, ../../../../general/res/sass/controls/_controls.scss */ .l-calendar ul.l-cal-row li { -webkit-flex: 1 0; flex: 1 0; margin-left: 1px; padding: 5px; text-align: center; } - /* line 446, ../../../../general/res/sass/controls/_controls.scss */ + /* line 447, ../../../../general/res/sass/controls/_controls.scss */ .l-calendar ul.l-cal-row li:first-child { margin-left: 0; } - /* line 450, ../../../../general/res/sass/controls/_controls.scss */ + /* line 451, ../../../../general/res/sass/controls/_controls.scss */ .l-calendar ul.l-cal-row.l-header li { color: #999999; } - /* line 453, ../../../../general/res/sass/controls/_controls.scss */ + /* line 454, ../../../../general/res/sass/controls/_controls.scss */ .l-calendar ul.l-cal-row.l-body li { -moz-transition-property: background-color; -o-transition-property: background-color; @@ -2584,31 +2579,31 @@ label.checkbox.custom { -webkit-transition-delay: 0; transition-delay: 0; cursor: pointer; } - /* line 456, ../../../../general/res/sass/controls/_controls.scss */ + /* line 457, ../../../../general/res/sass/controls/_controls.scss */ .l-calendar ul.l-cal-row.l-body li.in-month { background-color: #f2f2f2; } - /* line 459, ../../../../general/res/sass/controls/_controls.scss */ + /* line 460, ../../../../general/res/sass/controls/_controls.scss */ .l-calendar ul.l-cal-row.l-body li .sub { color: #999999; font-size: 0.8em; } - /* line 463, ../../../../general/res/sass/controls/_controls.scss */ + /* line 464, ../../../../general/res/sass/controls/_controls.scss */ .l-calendar ul.l-cal-row.l-body li.selected { background: #1ac6ff; color: #fcfcfc; } - /* line 466, ../../../../general/res/sass/controls/_controls.scss */ + /* line 467, ../../../../general/res/sass/controls/_controls.scss */ .l-calendar ul.l-cal-row.l-body li.selected .sub { color: inherit; } - /* line 470, ../../../../general/res/sass/controls/_controls.scss */ + /* line 471, ../../../../general/res/sass/controls/_controls.scss */ .l-calendar ul.l-cal-row.l-body li:hover { background-color: #0099cc; color: #fff; } - /* line 473, ../../../../general/res/sass/controls/_controls.scss */ + /* line 474, ../../../../general/res/sass/controls/_controls.scss */ .l-calendar ul.l-cal-row.l-body li:hover .sub { color: inherit; } /******************************************************** BROWSER ELEMENTS */ @media screen and (min-device-width: 800px) and (min-device-height: 1025px), screen and (min-device-width: 1025px) and (min-device-height: 800px) { - /* line 484, ../../../../general/res/sass/controls/_controls.scss */ + /* line 485, ../../../../general/res/sass/controls/_controls.scss */ ::-webkit-scrollbar { -moz-border-radius: 2px; -webkit-border-radius: 2px; @@ -2623,7 +2618,7 @@ label.checkbox.custom { height: 10px; width: 10px; } - /* line 493, ../../../../general/res/sass/controls/_controls.scss */ + /* line 494, ../../../../general/res/sass/controls/_controls.scss */ ::-webkit-scrollbar-thumb { background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuNSIgeTE9IjAuMCIgeDI9IjAuNSIgeTI9IjEuMCI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzg5ODk4OSIvPjxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iIzdkN2Q3ZCIvPjwvbGluZWFyR3JhZGllbnQ+PC9kZWZzPjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9InVybCgjZ3JhZCkiIC8+PC9zdmc+IA=='); background-size: 100%; @@ -2637,7 +2632,7 @@ label.checkbox.custom { -moz-box-sizing: border-box; -webkit-box-sizing: border-box; box-sizing: border-box; } - /* line 500, ../../../../general/res/sass/controls/_controls.scss */ + /* line 501, ../../../../general/res/sass/controls/_controls.scss */ ::-webkit-scrollbar-thumb:hover { background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuNSIgeTE9IjAuMCIgeDI9IjAuNSIgeTI9IjEuMCI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzAwYWNlNiIvPjxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iIzAwOTljYyIvPjwvbGluZWFyR3JhZGllbnQ+PC9kZWZzPjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9InVybCgjZ3JhZCkiIC8+PC9zdmc+IA=='); background-size: 100%; @@ -2646,7 +2641,7 @@ label.checkbox.custom { background-image: -webkit-linear-gradient(#00ace6, #0099cc 20px); background-image: linear-gradient(#00ace6, #0099cc 20px); } - /* line 505, ../../../../general/res/sass/controls/_controls.scss */ + /* line 506, ../../../../general/res/sass/controls/_controls.scss */ ::-webkit-scrollbar-corner { background: rgba(0, 0, 0, 0.1); } } /***************************************************************************** @@ -7256,10 +7251,10 @@ table { /* line 1, ../../../../general/res/sass/features/_time-display.scss */ .l-time-display { line-height: 140%; } - /* line 6, ../../../../general/res/sass/features/_time-display.scss */ + /* line 5, ../../../../general/res/sass/features/_time-display.scss */ .l-time-display:hover .l-btn.control { opacity: 1; } - /* line 18, ../../../../general/res/sass/features/_time-display.scss */ + /* line 11, ../../../../general/res/sass/features/_time-display.scss */ .l-time-display.l-timer .control { -moz-transition-property: width, opacity; -o-transition-property: width, opacity; @@ -7281,16 +7276,16 @@ table { margin-right: 0; opacity: 0; width: 0; } - /* line 27, ../../../../general/res/sass/features/_time-display.scss */ + /* line 18, ../../../../general/res/sass/features/_time-display.scss */ .l-time-display.l-timer:hover .control { margin-right: 5px; opacity: 1; - width: auto; } - /* line 34, ../../../../general/res/sass/features/_time-display.scss */ + width: 1em; } + /* line 25, ../../../../general/res/sass/features/_time-display.scss */ .l-time-display .value { - color: #333333; - font-weight: 600; } - /* line 37, ../../../../general/res/sass/features/_time-display.scss */ + color: black; + font-weight: 400; } + /* line 28, ../../../../general/res/sass/features/_time-display.scss */ .l-time-display .value .direction { font-size: 0.8em; } diff --git a/platform/features/timeline/res/css/timeline.css b/platform/features/timeline/res/css/timeline.css index f7fe2d0f57..4b581088c8 100644 --- a/platform/features/timeline/res/css/timeline.css +++ b/platform/features/timeline/res/css/timeline.css @@ -116,36 +116,36 @@ /* line 25, ../sass/_activities.scss */ .l-timeline-gantt .bar span.s-title { text-shadow: rgba(0, 0, 0, 0.1) 0 1px 2px; } - /* line 30, ../sass/_activities.scss */ + /* line 28, ../sass/_activities.scss */ .l-timeline-gantt .bar span.duration { left: auto; opacity: 0.75; right: 0; text-align: right; width: 60px; } - /* line 37, ../sass/_activities.scss */ + /* line 35, ../sass/_activities.scss */ .l-timeline-gantt .bar span.handle { top: 0; bottom: 0; height: auto; width: 15px; } - /* line 43, ../sass/_activities.scss */ + /* line 40, ../sass/_activities.scss */ .l-timeline-gantt .bar span.handle.left { right: auto; } - /* line 46, ../sass/_activities.scss */ + /* line 43, ../sass/_activities.scss */ .l-timeline-gantt .bar span.handle.middle { right: 15px; left: 15px; width: auto; } - /* line 51, ../sass/_activities.scss */ + /* line 48, ../sass/_activities.scss */ .l-timeline-gantt .bar span.handle.right { right: 0; left: auto; } -/* line 61, ../sass/_activities.scss */ +/* line 58, ../sass/_activities.scss */ .edit-mode .s-timeline-gantt .handle { cursor: col-resize; } - /* line 66, ../sass/_activities.scss */ + /* line 60, ../sass/_activities.scss */ .edit-mode .s-timeline-gantt .handle.mid { cursor: ew-resize; } @@ -180,7 +180,7 @@ left: 0px; width: auto; height: auto; } - /* line 27, ../sass/_timelines.scss */ + /* line 26, ../sass/_timelines.scss */ .l-timeline-holder .l-timeline-pane { overflow: hidden; position: absolute; @@ -190,10 +190,10 @@ left: 0px; width: auto; height: auto; } - /* line 30, ../sass/_timelines.scss */ + /* line 29, ../sass/_timelines.scss */ .l-timeline-holder .l-timeline-pane .l-width-control { position: relative; } - /* line 34, ../sass/_timelines.scss */ + /* line 33, ../sass/_timelines.scss */ .l-timeline-holder .l-timeline-pane .l-swimlanes-holder { overflow: hidden; position: absolute; @@ -204,7 +204,7 @@ width: auto; height: auto; top: 31px; } - /* line 41, ../sass/_timelines.scss */ + /* line 40, ../sass/_timelines.scss */ .l-timeline-holder .l-timeline-pane.t-pane-h.s-timeline-tabular .t-pane-v { overflow: hidden; position: absolute; @@ -214,16 +214,16 @@ left: 0px; width: auto; height: auto; } - /* line 44, ../sass/_timelines.scss */ + /* line 43, ../sass/_timelines.scss */ .l-timeline-holder .l-timeline-pane.t-pane-h.s-timeline-tabular .t-pane-v.l-tabular-l { right: auto; width: 266px; } - /* line 49, ../sass/_timelines.scss */ + /* line 48, ../sass/_timelines.scss */ .l-timeline-holder .l-timeline-pane.t-pane-h.s-timeline-tabular .t-pane-v.l-tabular-r { overflow-x: auto; overflow-y: hidden; left: 266px; } - /* line 53, ../sass/_timelines.scss */ + /* line 52, ../sass/_timelines.scss */ .l-timeline-holder .l-timeline-pane.t-pane-h.s-timeline-tabular .t-pane-v.l-tabular-r .l-width { overflow: visible; position: absolute; @@ -235,18 +235,18 @@ height: auto; min-width: 590px; width: 100%; } - /* line 61, ../sass/_timelines.scss */ + /* line 60, ../sass/_timelines.scss */ .l-timeline-holder .l-timeline-pane.t-pane-h.l-timeline-gantt .l-swimlanes-holder { overflow-x: hidden; overflow-y: scroll; } - /* line 65, ../sass/_timelines.scss */ + /* line 64, ../sass/_timelines.scss */ .l-timeline-holder .l-timeline-pane.t-pane-h.l-timeline-resource-legend { -moz-box-sizing: border-box; -webkit-box-sizing: border-box; box-sizing: border-box; padding: 5px 0; white-space: nowrap; } - /* line 70, ../sass/_timelines.scss */ + /* line 69, ../sass/_timelines.scss */ .l-timeline-holder .l-timeline-pane.t-pane-h.l-timeline-resource-legend .l-legend-items { overflow: hidden; position: absolute; @@ -259,20 +259,20 @@ overflow-x: hidden; overflow-y: auto; top: 25px; } - /* line 76, ../sass/_timelines.scss */ + /* line 74, ../sass/_timelines.scss */ .l-timeline-holder .l-timeline-pane.t-pane-h.l-timeline-resource-legend .legend-item { display: block; margin-bottom: 3px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; } - /* line 84, ../sass/_timelines.scss */ + /* line 81, ../sass/_timelines.scss */ .l-timeline-holder .l-timeline-pane.t-pane-h.l-timeline-resource-legend .legend-item .color-swatch { vertical-align: baseline; } - /* line 87, ../sass/_timelines.scss */ + /* line 84, ../sass/_timelines.scss */ .l-timeline-holder .l-timeline-pane.t-pane-h.l-timeline-resource-legend .legend-item .title-label { vertical-align: baseline; } - /* line 96, ../sass/_timelines.scss */ + /* line 93, ../sass/_timelines.scss */ .l-timeline-holder .l-timeline-pane.t-pane-h.l-timeline-resource-graph .l-graphs-holder { overflow: hidden; position: absolute; @@ -283,7 +283,7 @@ width: auto; height: auto; bottom: 10px; } - /* line 101, ../sass/_timelines.scss */ + /* line 97, ../sass/_timelines.scss */ .l-timeline-holder .l-timeline-pane.t-pane-h.l-timeline-resource-graph .l-graphs-holder .l-graphs { overflow: hidden; position: absolute; @@ -295,7 +295,7 @@ height: auto; overflow-x: hidden; overflow-y: scroll; } - /* line 106, ../sass/_timelines.scss */ + /* line 102, ../sass/_timelines.scss */ .l-timeline-holder .l-timeline-pane.t-pane-h.l-timeline-resource-graph .l-graphs-holder .l-graph-labels-holder { overflow: hidden; position: absolute; @@ -308,7 +308,7 @@ overflow: hidden; right: auto; width: 400px; } - /* line 115, ../sass/_timelines.scss */ + /* line 110, ../sass/_timelines.scss */ .l-timeline-holder .l-timeline-pane.t-pane-h.l-timeline-resource-graph .l-scroll-control { overflow: hidden; position: absolute; @@ -323,16 +323,16 @@ top: auto; right: 10px; height: 10px; } - /* line 121, ../sass/_timelines.scss */ + /* line 116, ../sass/_timelines.scss */ .l-timeline-holder .l-timeline-pane.t-pane-h.l-timeline-resource-graph .l-scroll-control .l-width-control { height: 10px; } - /* line 126, ../sass/_timelines.scss */ + /* line 121, ../sass/_timelines.scss */ .l-timeline-holder .l-timeline-pane.t-pane-h.l-timeline-resource-graph .l-graph, .l-timeline-holder .l-timeline-pane.t-pane-h.l-timeline-resource-graph .l-graph-labels { height: 80px; margin-bottom: 3px; position: relative; } - /* line 133, ../sass/_timelines.scss */ + /* line 128, ../sass/_timelines.scss */ .l-timeline-holder .l-timeline-pane.t-pane-h.l-timeline-resource-graph .l-title { overflow: hidden; text-overflow: ellipsis; @@ -340,17 +340,17 @@ top: 5px; left: 5px; position: absolute; } - /* line 139, ../sass/_timelines.scss */ + /* line 134, ../sass/_timelines.scss */ .l-timeline-holder .l-timeline-pane.t-pane-h.l-timeline-resource-graph .l-graph { width: 100%; } - /* line 143, ../sass/_timelines.scss */ + /* line 137, ../sass/_timelines.scss */ .l-timeline-holder .l-timeline-pane.t-pane-h.l-timeline-resource-graph .l-graph .l-graph-area canvas { width: 100%; height: 100%; } - /* line 150, ../sass/_timelines.scss */ + /* line 144, ../sass/_timelines.scss */ .l-timeline-holder .l-timeline-pane.t-pane-h.l-timeline-resource-graph .l-graph-labels { z-index: 10; } - /* line 154, ../sass/_timelines.scss */ + /* line 148, ../sass/_timelines.scss */ .l-timeline-holder .l-timeline-pane.t-pane-h.l-timeline-resource-graph .l-graph-area { overflow: hidden; position: absolute; @@ -362,7 +362,7 @@ height: auto; top: 20px; bottom: 5px; } - /* line 157, ../sass/_timelines.scss */ + /* line 151, ../sass/_timelines.scss */ .l-timeline-holder .l-timeline-pane.t-pane-h.l-timeline-resource-graph .l-graph-area .l-labels-holder { overflow: hidden; position: absolute; @@ -373,19 +373,19 @@ width: auto; height: auto; left: 5px; } - /* line 160, ../sass/_timelines.scss */ + /* line 154, ../sass/_timelines.scss */ .l-timeline-holder .l-timeline-pane.t-pane-h.l-timeline-resource-graph .l-graph-area .l-labels-holder .tick-label.tick-label-y { text-align: left; } - /* line 168, ../sass/_timelines.scss */ + /* line 162, ../sass/_timelines.scss */ .l-timeline-holder .l-timeline-pane.l-pane-l { right: auto; min-width: 50px; max-width: 90%; width: 30%; } - /* line 176, ../sass/_timelines.scss */ + /* line 169, ../sass/_timelines.scss */ .l-timeline-holder .l-timeline-pane.l-pane-r { left: 0; } - /* line 180, ../sass/_timelines.scss */ + /* line 172, ../sass/_timelines.scss */ .l-timeline-holder .l-timeline-pane.l-pane-r:hover .l-hover-btns-holder { -moz-transition-property: opacity, background-color, border-color, color; -o-transition-property: opacity, background-color, border-color, color; @@ -404,20 +404,20 @@ -webkit-transition-delay: 0; transition-delay: 0; opacity: 1; } - /* line 187, ../sass/_timelines.scss */ + /* line 179, ../sass/_timelines.scss */ .l-timeline-holder .l-timeline-pane.l-pane-top { bottom: 30%; } - /* line 191, ../sass/_timelines.scss */ + /* line 182, ../sass/_timelines.scss */ .l-timeline-holder .l-timeline-pane.l-pane-btm { top: auto; min-height: 20px; max-height: 80%; height: 30%; } - /* line 200, ../sass/_timelines.scss */ + /* line 190, ../sass/_timelines.scss */ .l-timeline-holder .l-swimlane { height: 21px; position: relative; } - /* line 206, ../sass/_timelines.scss */ + /* line 196, ../sass/_timelines.scss */ .l-timeline-holder .s-timeline-tabular .l-header, .l-timeline-holder .s-timeline-gantt .l-header { overflow: visible; @@ -430,7 +430,7 @@ height: auto; bottom: auto; height: 30px; } - /* line 212, ../sass/_timelines.scss */ + /* line 201, ../sass/_timelines.scss */ .l-timeline-holder .s-timeline-tabular .l-header .l-header-elem, .l-timeline-holder .s-timeline-gantt .l-header .l-header-elem { overflow: visible; @@ -442,14 +442,14 @@ width: auto; height: auto; display: block; } - /* line 217, ../sass/_timelines.scss */ + /* line 205, ../sass/_timelines.scss */ .l-timeline-holder .s-timeline-tabular .l-header .l-header-elem.l-labels .l-label, .l-timeline-holder .s-timeline-gantt .l-header .l-header-elem.l-labels .l-label { position: absolute; width: 140px; margin-left: -70px; text-align: center; } - /* line 227, ../sass/_timelines.scss */ + /* line 215, ../sass/_timelines.scss */ .l-timeline-holder .l-hover-btns-holder { overflow: hidden; position: absolute; @@ -485,7 +485,7 @@ padding: 5px; text-align: right; z-index: 10; } - /* line 240, ../sass/_timelines.scss */ + /* line 228, ../sass/_timelines.scss */ .l-timeline-holder .l-cols { overflow: visible; position: absolute; @@ -497,7 +497,7 @@ height: auto; text-wrap: none; white-space: nowrap; } - /* line 245, ../sass/_timelines.scss */ + /* line 232, ../sass/_timelines.scss */ .l-timeline-holder .l-cols .l-col { -moz-box-sizing: border-box; -webkit-box-sizing: border-box; @@ -511,40 +511,40 @@ position: relative; text-wrap: none; white-space: nowrap; } - /* line 256, ../sass/_timelines.scss */ + /* line 242, ../sass/_timelines.scss */ .l-timeline-holder .l-cols .l-col.l-col-icon { width: 16px; text-align: center; padding: 0; } - /* line 260, ../sass/_timelines.scss */ + /* line 246, ../sass/_timelines.scss */ .l-timeline-holder .l-cols .l-col.l-col-icon .ui-symbol { color: #0099cc; } - /* line 265, ../sass/_timelines.scss */ + /* line 251, ../sass/_timelines.scss */ .l-timeline-holder .l-cols .l-col.l-plot-resource { border-left: none !important; cursor: pointer; padding-left: 0; } - /* line 274, ../sass/_timelines.scss */ + /* line 257, ../sass/_timelines.scss */ .l-timeline-holder .l-cols .l-col.l-title { width: 250px; } - /* line 278, ../sass/_timelines.scss */ + /* line 261, ../sass/_timelines.scss */ .l-timeline-holder .l-cols .l-col.l-start, .l-timeline-holder .l-cols .l-col.l-end, .l-timeline-holder .l-cols .l-col.l-duration { width: 110px; } - /* line 288, ../sass/_timelines.scss */ + /* line 267, ../sass/_timelines.scss */ .l-timeline-holder .l-cols .l-col.l-activity-modes { display: none; width: 250px; } - /* line 297, ../sass/_timelines.scss */ + /* line 275, ../sass/_timelines.scss */ .l-timeline-holder .s-timeline-tabular .l-header .l-cols { top: 5px; bottom: 5px; } - /* line 303, ../sass/_timelines.scss */ + /* line 281, ../sass/_timelines.scss */ .l-timeline-holder .s-timeline-tabular .l-pane-l .l-cols { left: 5px; } - /* line 309, ../sass/_timelines.scss */ + /* line 287, ../sass/_timelines.scss */ .l-timeline-holder .splitter { top: 0; } - /* line 315, ../sass/_timelines.scss */ + /* line 293, ../sass/_timelines.scss */ .l-timeline-holder .l-ticks, .l-timeline-holder .l-subticks { overflow: hidden; @@ -557,9 +557,9 @@ height: auto; top: auto; bottom: 3px; } - /* line 321, ../sass/_timelines.scss */ + /* line 299, ../sass/_timelines.scss */ .l-timeline-holder .l-ticks { height: 10px; } - /* line 325, ../sass/_timelines.scss */ + /* line 303, ../sass/_timelines.scss */ .l-timeline-holder .l-subticks { height: 5px; } diff --git a/platform/features/timeline/res/sass/_activities.scss b/platform/features/timeline/res/sass/_activities.scss index 265623634f..e7b27ebfb1 100644 --- a/platform/features/timeline/res/sass/_activities.scss +++ b/platform/features/timeline/res/sass/_activities.scss @@ -24,8 +24,6 @@ } &.s-title { @include text-shadow(rgba(black, 0.1) 0 1px 2px); -// right: 5px; -// width: 50%; } &.duration { left: auto; @@ -35,7 +33,6 @@ width: 60px; } &.handle { - //background: rgba(red, 0.2); top: 0; bottom: 0; height: auto; @@ -60,15 +57,8 @@ .edit-mode .s-timeline-gantt { .handle { cursor: col-resize; - &.start { -// @include test(red); - } &.mid { -// @include test(green); cursor: ew-resize; } - &.end { -// @include test(blue); - } } } \ No newline at end of file diff --git a/platform/features/timeline/res/sass/_timelines.scss b/platform/features/timeline/res/sass/_timelines.scss index f4b482522a..4d949be150 100644 --- a/platform/features/timeline/res/sass/_timelines.scss +++ b/platform/features/timeline/res/sass/_timelines.scss @@ -21,7 +21,6 @@ *****************************************************************************/ //*************************************************************** LAYOUT .l-timeline-holder { -// @include test(); @include absPosDefault(); .l-timeline-pane { @@ -71,11 +70,9 @@ @include absPosDefault(); @include scrollV(); top: 25px; - //color: lighten($timelineColorAlt1, 10%); // MOVED to espresso theme } .legend-item { // Inherits from /platform/commonUI/general/res/sass/plots/_plots-main.scss -// border-bottom: 1px solid $colorInteriorBorder; display: block; margin-bottom: $interiorMarginSm; overflow: hidden; @@ -94,7 +91,6 @@ $m: $interiorMargin; .l-graphs-holder { -// @include test(blue); @include absPosDefault(); bottom: $scrollbarTrackSize; @@ -104,7 +100,6 @@ } .l-graph-labels-holder { -// @include test(red); @include absPosDefault(); overflow: hidden; right: auto; @@ -125,7 +120,7 @@ .l-graph, .l-graph-labels { - height: 80px; //was 120px + height: 80px; margin-bottom: $interiorMarginSm; position: relative; } @@ -137,7 +132,6 @@ } .l-graph { - //background: rgba(black, 0.3); // MOVED width: 100%; .l-graph-area { canvas { @@ -166,7 +160,6 @@ } &.l-pane-l { -// @include test(red); right: auto; min-width: 50px; max-width: 90%; @@ -174,7 +167,6 @@ } &.l-pane-r { -// @include test(blue); left: 0; &:hover { .l-hover-btns-holder { @@ -185,11 +177,9 @@ } &.l-pane-top { -// @include test(green); bottom: $timelinePaneBtmH; } &.l-pane-btm { -// @include test(orange); top: auto; min-height: 20px; max-height: 80%; @@ -205,13 +195,11 @@ // Header .s-timeline-tabular .l-header, .s-timeline-gantt .l-header { -// @include test(white,0.05); @include absPosDefault(0, visible); bottom: auto; height: $timelineTopPaneHeaderH; .l-header-elem { @include absPosDefault($timelineTopPaneHeaderElemMargin, visible); -// bottom: auto; height: 15px; display: block; &.l-labels { .l-label { @@ -238,14 +226,12 @@ // Tabular Columns .l-cols { -// @include test(#66ff66, 0.1); @include absPosDefault(0, visible); text-wrap: none; white-space: nowrap; .l-col { @include box-sizing(border-box); @include ellipsize(); -// @include test(red, 0.05); display: inline-block; height: 100%; padding: 0 $interiorMargin; @@ -266,9 +252,6 @@ border-left: none !important; cursor: pointer; padding-left: 0; -// .ui-symbol { -// color: $colorFormValid; -// } } &.l-title { @@ -281,15 +264,10 @@ width: $timelineColDatetimeW; } - //&.l-duration { - // width: $timelineColDurationW; - //} - &.l-activity-modes { display: none; // Temp, until modes can be displayed width: $timelineColActivityModesW; } - } } diff --git a/platform/features/timeline/res/templates/timeline.html b/platform/features/timeline/res/templates/timeline.html index 4a7f5455fd..3f8acf1073 100644 --- a/platform/features/timeline/res/templates/timeline.html +++ b/platform/features/timeline/res/templates/timeline.html @@ -109,14 +109,14 @@
- X - diff --git a/platform/forms/res/templates/controls/color.html b/platform/forms/res/templates/controls/color.html index 178a3bfd75..232c1754a3 100644 --- a/platform/forms/res/templates/controls/color.html +++ b/platform/forms/res/templates/controls/color.html @@ -20,7 +20,7 @@ at runtime from the About dialog for additional information. -->