From 88b8830a6bec4bb2278f410fd1e645d8289a99e9 Mon Sep 17 00:00:00 2001 From: Andrew Dolgov Date: Tue, 4 Dec 2018 20:17:50 +0300 Subject: various CSS updates for flat theme --- lib/flat/dijit/ProgressBar.css | 110 ----------------------------------------- 1 file changed, 110 deletions(-) delete mode 100755 lib/flat/dijit/ProgressBar.css (limited to 'lib/flat/dijit/ProgressBar.css') diff --git a/lib/flat/dijit/ProgressBar.css b/lib/flat/dijit/ProgressBar.css deleted file mode 100755 index 0e96e7d41..000000000 --- a/lib/flat/dijit/ProgressBar.css +++ /dev/null @@ -1,110 +0,0 @@ -/* ProgressBar - * - * Styling of the ProgressBar consists of the following: - * - * 1. the base progress bar - * .dijitProgressBar - sets margins for the progress bar - * - * 2. the empty bar - * .dijitProgressBarEmpty - sets background img and color for bar or parts of bar that are not finished yet - * Also sets border color for whole bar - * - * 3. tile mode - * .dijitProgressBarTile - * inner container for finished portion when in 'tile' (image) mode - * - * 4. full bar mode - * .dijitProgressBarFull - * adds border to right side of the filled portion of bar - * - * 5. text for label of bar - * .dijitProgressBarLabel - sets text color, which must contrast with both the "Empty" and "Full" parts. - * - * 6. indeterminate mode - * .dijitProgressBarIndeterminate .dijitProgressBarTile - * sets animated gif for the progress bar in 'indeterminate' mode - */ -.flat .dijitProgressBar { - background-color: #e0e0e0; - border: 0 none; - border-radius: 3px; -} -.flat .dijitProgressBarTile { - background: url("images/progressBarStrips.png") repeat-x top; - -webkit-animation: progress-bar-stripes 2s linear infinite; - -moz-animation: progress-bar-stripes 2s linear infinite; - -o-animation: progress-bar-stripes 2s linear infinite; - -ms-animation: progress-bar-stripes 2s linear infinite; - animation: progress-bar-stripes 2s linear infinite; -} -.flat .dijitProgressBarFull { - background-color: #2196f3; - -webkit-transition-property: width; - -moz-transition-property: width; - -o-transition-property: width; - -ms-transition-property: width; - transition-property: width; - -webkit-transition-duration: 0.25s; - -moz-transition-duration: 0.25s; - -o-transition-duration: 0.25s; - -ms-transition-duration: 0.25s; - transition-duration: 0.25s; - height: 100%; -} -.flat .dijitProgressBar.alt-primary .dijitProgressBarFull { - background-color: #1e88e5; -} -.flat .dijitProgressBar.alt-success .dijitProgressBarFull { - background-color: #43a047; -} -.flat .dijitProgressBar.alt-info .dijitProgressBarFull { - background-color: #03a9f4; -} -.flat .dijitProgressBar.alt-warning .dijitProgressBarFull { - background-color: #fb8c00; -} -.flat .dijitProgressBar.alt-danger .dijitProgressBarFull { - background-color: #e53935; -} -.flat .dijitProgressBar.alt-inverse .dijitProgressBarFull { - background-color: #616161; -} -.flat .dijitProgressBarLabel { - margin-top: 0.2em; - margin-bottom: 0.2em; - color: #fff; - font-size: 1em; - text-shadow: 0.1em 0.1em 1px #424242; -} -@-moz-keyframes progress-bar-stripes { - from { - background-position: 75px 0; - } - to { - background-position: 0 0; - } -} -@-webkit-keyframes progress-bar-stripes { - from { - background-position: 75px 0; - } - to { - background-position: 0 0; - } -} -@-o-keyframes progress-bar-stripes { - from { - background-position: 75px 0; - } - to { - background-position: 0 0; - } -} -@keyframes progress-bar-stripes { - from { - background-position: 75px 0; - } - to { - background-position: 0 0; - } -} -- cgit v1.2.3