summaryrefslogtreecommitdiff
path: root/addons/web/static/src/scss/file_upload.scss
diff options
context:
space:
mode:
authorstephanchrst <stephanchrst@gmail.com>2022-05-10 21:51:50 +0700
committerstephanchrst <stephanchrst@gmail.com>2022-05-10 21:51:50 +0700
commit3751379f1e9a4c215fb6eb898b4ccc67659b9ace (patch)
treea44932296ef4a9b71d5f010906253d8c53727726 /addons/web/static/src/scss/file_upload.scss
parent0a15094050bfde69a06d6eff798e9a8ddf2b8c21 (diff)
initial commit 2
Diffstat (limited to 'addons/web/static/src/scss/file_upload.scss')
-rw-r--r--addons/web/static/src/scss/file_upload.scss58
1 files changed, 58 insertions, 0 deletions
diff --git a/addons/web/static/src/scss/file_upload.scss b/addons/web/static/src/scss/file_upload.scss
new file mode 100644
index 00000000..155b39ad
--- /dev/null
+++ b/addons/web/static/src/scss/file_upload.scss
@@ -0,0 +1,58 @@
+.o_content {
+
+ .o_kanban_progress_card {
+
+ position: relative;
+ padding: 0;
+ min-height: 80px;
+ cursor: pointer;
+
+ .o_kanban_record_bottom {
+ color: $gray-900;
+ }
+ .o_kanban_image_wrapper {
+ opacity: 0.7;
+ }
+ }
+
+ .o_list_progress_card {
+ height: 25px;
+ border: 1px solid #dfdfdf;
+ position: relative;
+ vertical-align: middle;
+ padding: 0;
+
+ .o_file_upload_upload_title {
+ color: $headings-color;
+ font-size: 13px;
+ font-weight: 500;
+ }
+ }
+
+ .o_file_upload_progress_bar {
+ @include o-position-absolute($top: 0px, $left: 0px);
+ height: 100%;
+ width: 100%;
+ .o_file_upload_progress_bar_value {
+ transition: width 0.1s;
+ border-right: 1px solid darken($o-brand-primary, 7.5%);
+ height: 100%;
+ width: 100%;
+ background-color: $o-brand-primary;
+ opacity: 0.5;
+ }
+ .o_upload_cross {
+ @include o-position-absolute(0, 0);
+ padding: 4px;
+ color: #963535;
+ cursor: pointer;
+ font-size: 16px;
+ &:active {
+ opacity: 0.7;
+ }
+ }
+ &:not(:hover) .o_upload_cross {
+ display: none;
+ }
+ }
+}