-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Sami Kerboute
committed
Jun 12, 2020
1 parent
ba083ab
commit 348ca92
Showing
20 changed files
with
244 additions
and
69 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
var sf_options | ||
|
||
(function ($, undefined) { | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,4 @@ | ||
@import "main/mixins"; | ||
@import "main/colors"; | ||
@import "main/sf"; | ||
|
||
|
||
@import "multi/multi"; | ||
@import "main/sf"; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,3 +5,4 @@ $secondary: #1CB69B; | |
$textcolor: #23282D; | ||
$gray: #9E9E9E; | ||
$blue: #04274D; | ||
$pink: #E91E63; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,84 @@ | ||
.multi-wrapper { | ||
border: 1px solid #ccc; | ||
border-radius: 3px; | ||
width: 100%; | ||
} | ||
|
||
.multi-wrapper .non-selected-wrapper, | ||
.multi-wrapper .selected-wrapper { | ||
box-sizing: border-box; | ||
display: inline-block; | ||
height: 200px; | ||
overflow-y: scroll; | ||
padding: 10px; | ||
vertical-align: top; | ||
width: 50%; | ||
} | ||
|
||
.multi-wrapper .non-selected-wrapper { | ||
background: #fafafa; | ||
border-right: 1px solid #ccc; | ||
} | ||
|
||
.multi-wrapper .selected-wrapper { | ||
background: #fff; | ||
} | ||
|
||
.multi-wrapper .header { | ||
color: #4f4f4f; | ||
cursor: default; | ||
font-weight: bold; | ||
margin-bottom: 5px; | ||
padding: 5px 10px; | ||
} | ||
|
||
.multi-wrapper .item { | ||
cursor: pointer; | ||
display: block; | ||
padding: 5px 10px; | ||
} | ||
|
||
.multi-wrapper .item:hover { | ||
background: #ececec; | ||
border-radius: 2px; | ||
} | ||
|
||
.multi-wrapper .item-group { | ||
padding: 5px 10px; | ||
} | ||
|
||
.multi-wrapper .item-group .group-label { | ||
display: block; | ||
font-size: 0.875rem; | ||
opacity: 0.5; | ||
padding: 5px 0; | ||
} | ||
|
||
.multi-wrapper .search-input { | ||
border: 0; | ||
border-bottom: 1px solid #ccc; | ||
border-radius: 0; | ||
display: block; | ||
font-size: 1em; | ||
margin: 0; | ||
outline: 0; | ||
padding: 10px 20px; | ||
width: 100%; | ||
box-sizing: border-box; | ||
} | ||
|
||
.multi-wrapper .non-selected-wrapper .item.selected { | ||
opacity: 0.5; | ||
} | ||
|
||
.multi-wrapper .non-selected-wrapper .item.disabled, | ||
.multi-wrapper .selected-wrapper .item.disabled { | ||
opacity: 0.5; | ||
text-decoration: line-through; | ||
} | ||
|
||
.multi-wrapper .non-selected-wrapper .item.disabled:hover, | ||
.multi-wrapper .selected-wrapper .item.disabled:hover { | ||
background: inherit; | ||
cursor: inherit; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.