Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
synergy-components
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
community
synergy-components
Commits
1c1f45c2
Commit
1c1f45c2
authored
Sep 09, 2022
by
Samir Sadyhov
🤔
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
канбан доска
parent
fb9f605e
Changes
3
Expand all
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
201 additions
and
0 deletions
+201
-0
constructor/components/Канбан-доска/Канбан-доска.css
constructor/components/Канбан-доска/Канбан-доска.css
+198
-0
constructor/components/Канбан-доска/Канбан-доска.html
constructor/components/Канбан-доска/Канбан-доска.html
+3
-0
constructor/components/Канбан-доска/Канбан-доска.js
constructor/components/Канбан-доска/Канбан-доска.js
+0
-0
No files found.
constructor/components/Канбан-доска/Канбан-доска.css
0 → 100644
View file @
1c1f45c2
.kanban-board-container
{
display
:
flex
;
width
:
100%
;
height
:
calc
(
100vh
-
50px
);
}
.kanban-board-content
{
display
:
flex
;
flex-direction
:
row
;
justify-content
:
flex-start
;
margin
:
0
;
overflow
:
auto
;
width
:
100%
;
height
:
calc
(
100vh
-
50px
);
gap
:
5px
;
}
.column-container
{
display
:
flex
;
flex-direction
:
column
;
justify-content
:
flex-start
;
align-items
:
center
;
flex
:
1
;
min-width
:
200px
;
border-left
:
1px
dashed
var
(
--gray
);
border-right
:
1px
dashed
var
(
--gray
);
}
.column-title
{
display
:
flex
;
justify-content
:
center
;
align-items
:
center
;
font-weight
:
600
;
user-select
:
none
;
background
:
var
(
--blue
);
color
:
#fff
;
width
:
100%
;
min-height
:
75px
;
padding
:
0
5px
;
text-align
:
center
;
}
.column-sum
{
font-size
:
20px
;
font-weight
:
300
;
color
:
#666
;
width
:
100%
;
min-height
:
40px
;
text-align
:
center
;
line-height
:
40px
;
user-select
:
none
;
}
.column-data
{
display
:
flex
;
flex-flow
:
wrap
;
justify-content
:
center
;
align-items
:
flex-start
;
align-content
:
flex-start
;
width
:
100%
;
background
:
#fff
;
height
:
100%
;
overflow
:
auto
;
gap
:
15px
;
padding
:
10px
5px
}
.column-data
::-webkit-scrollbar-button
{
width
:
4px
;
height
:
0px
;
}
.column-data
::-webkit-scrollbar-thumb
{
-webkit-border-radius
:
0px
;
border-radius
:
0px
;
background-color
:
rgba
(
145
,
194
,
246
,
0.5
);
}
.column-data
::-webkit-resizer
{
width
:
4px
;
height
:
0px
;
}
.column-data
::-webkit-scrollbar
{
width
:
4px
;
}
.column-card
{
display
:
flex
;
flex-direction
:
column
;
min-height
:
100px
;
height
:
fit-content
;
width
:
100%
;
background
:
#fff
;
border
:
1px
solid
var
(
--gray
);
border-radius
:
3px
;
overflow
:
hidden
;
padding
:
5px
;
user-select
:
none
;
}
.column-card-block
{
color
:
#333
;
font-size
:
12px
;
transition
:
0.3s
;
cursor
:
pointer
;
display
:
flex
;
gap
:
5px
;
overflow
:
hidden
;
}
.column-card-block.title
{
color
:
#333
;
font-size
:
14px
;
transition
:
0.3s
;
cursor
:
pointer
;
margin-bottom
:
10px
;
}
.column-card-block.title
:hover
{
color
:
#1e87f0
;
}
.column-card-block.sum
{
color
:
#666
;
font-size
:
12px
;
margin-bottom
:
5px
;
}
.column-card-block.reglink
{
color
:
#1e87f0
;
font-size
:
12px
;
display
:
flex
;
gap
:
5px
;
transition
:
0.3s
;
cursor
:
pointer
;
}
.column-card-block.reglink
:hover
{
text-decoration
:
underline
;
}
.column-card-block.user
{
color
:
#999
;
font-size
:
12px
;
display
:
flex
;
gap
:
5px
;
margin-top
:
3px
;
}
.column-get-rows-button
{
display
:
block
;
margin
:
10px
;
user-select
:
none
;
cursor
:
pointer
;
transition
:
0.3s
;
letter-spacing
:
3px
;
font-size
:
12px
;
font-family
:
monospace
;
}
.column-get-rows-button
:hover
{
color
:
var
(
--blue
);
letter-spacing
:
5px
;
}
.board-context-menu
{
position
:
absolute
;
display
:
none
;
background-color
:
#fff
;
box-shadow
:
0px
2px
10px
rgba
(
0
,
0
,
0
,
0.2
);
padding
:
0px
;
min-width
:
200px
;
width
:
auto
;
}
.board-context-menu
ul
{
list-style
:
none
;
margin
:
0
;
padding
:
0
;
}
.board-context-menu
ul
li
{
margin
:
0
;
padding
:
0
;
background-color
:
#fff
;
display
:
block
;
}
.board-context-menu
ul
li
a
{
color
:
#555
;
padding
:
10px
;
}
.board-context-menu
ul
li
a
:hover
{
background-color
:
rgb
(
255
,
165
,
0
,
0.3
);
}
.board-context-menu
ul
.uk-disabled
a
{
color
:
#dedede
;
}
constructor/components/Канбан-доска/Канбан-доска.html
0 → 100644
View file @
1c1f45c2
<div
class=
"kanban-board-container"
>
<div
class=
"kanban-board-content"
></div>
</div>
constructor/components/Канбан-доска/Канбан-доска.js
0 → 100644
View file @
1c1f45c2
This diff is collapsed.
Click to expand it.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment