-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
KBP-118 #time 1.5d - Hq side design was done
- Loading branch information
hamdibayhan
committed
Dec 5, 2017
1 parent
edcbf38
commit f9ef025
Showing
63 changed files
with
3,818 additions
and
330 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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,14 @@ | ||
# frozen_string_literal: true | ||
|
||
module Cybele | ||
module Helpers | ||
module AppFiles | ||
module VendorFiles | ||
def customize_vendor_files | ||
# View files with option | ||
directory 'app_files/app/vendor', 'app/vendor' | ||
end | ||
end | ||
end | ||
end | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
92 changes: 92 additions & 0 deletions
92
templates/app_files/app/assets/stylesheets/hq/_sidebar.css.sass
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,92 @@ | ||
#sidebar | ||
overflow: hidden | ||
z-index: 3 | ||
.list-group | ||
min-width: 400px | ||
background-color: #343a40 | ||
min-height: 100vh | ||
i | ||
margin-right: 6px | ||
.list-group-item | ||
border-radius: 0 | ||
background-color: #343a40 | ||
color: #ccc | ||
border-left: 0 | ||
border-right: 0 | ||
border-color: #2c2c2c | ||
white-space: nowrap | ||
&:not(.collapsed) | ||
background-color: #222 | ||
.list-group | ||
.list-group-item | ||
padding: .75rem 1.25rem | ||
&[aria-expanded="false"]::after | ||
content: " \f0d7" | ||
font-family: FontAwesome | ||
display: inline | ||
text-align: right | ||
padding-left: 5px | ||
&[aria-expanded="true"] | ||
background-color: #222 | ||
&::after | ||
content: " \f0da" | ||
font-family: FontAwesome | ||
display: inline | ||
text-align: right | ||
padding-left: 5px | ||
.collapse .list-group-item, .collapsing .list-group-item | ||
padding-left: 20px | ||
.collapse > | ||
.collapse .list-group-item, .collapsing .list-group-item | ||
padding-left: 1.25rem | ||
.collapse > .collapse .list-group-item | ||
padding-left: 40px | ||
|
||
|
||
@media (max-width: 768px) | ||
#sidebar | ||
min-width: 35px | ||
max-width: 40px | ||
overflow-y: auto | ||
overflow-x: visible | ||
transition: all 0.25s ease | ||
transform: translateX(-45px) | ||
position: fixed | ||
&.show | ||
transform: translateX(0) | ||
&::-webkit-scrollbar | ||
width: 0px | ||
overflow: visible | ||
.list-group | ||
min-width: 40px | ||
overflow: visible | ||
.collapse.show, .collapsing | ||
position: relative | ||
z-index: 1 | ||
width: 190px | ||
top: 0 | ||
> .list-group-item | ||
text-align: center | ||
padding: .75rem .75rem | ||
&[aria-expanded="true"]::after, &[aria-expanded="false"]::after | ||
display: none | ||
/* overlay sub levels on small screens | ||
/* hide caret icons of top level when collapsed | ||
.collapse.show | ||
visibility: visible | ||
|
||
.collapsing | ||
visibility: visible | ||
height: 0 | ||
-webkit-transition-property: height, visibility | ||
transition-property: height, visibility | ||
-webkit-transition-timing-function: ease-out | ||
transition-timing-function: ease-out | ||
&.width | ||
-webkit-transition-property: width, visibility | ||
transition-property: width, visibility | ||
width: 0 | ||
height: 100% | ||
-webkit-transition-timing-function: ease-out | ||
transition-timing-function: ease-out |
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
3 changes: 2 additions & 1 deletion
3
templates/app_files/app/controllers/hq/application_controller.rb
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
10 changes: 10 additions & 0 deletions
10
templates/app_files/app/vendor/assets/javascripts/footable.min.js
Large diffs are not rendered by default.
Oops, something went wrong.
Oops, something went wrong.