Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
Sharkey
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Wiki
Requirements
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Dima Krasner
Sharkey
Commits
4149c778
Commit
4149c778
authored
3 years ago
by
syuilo
Browse files
Options
Downloads
Patches
Plain Diff
🎨
parent
227f52d7
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
src/client/components/ui/button.vue
+2
-11
2 additions, 11 deletions
src/client/components/ui/button.vue
src/client/pages/my-lists/index.vue
+11
-2
11 additions, 2 deletions
src/client/pages/my-lists/index.vue
with
13 additions
and
13 deletions
src/client/components/ui/button.vue
+
2
−
11
View file @
4149c778
...
@@ -177,17 +177,8 @@ export default defineComponent({
...
@@ -177,17 +177,8 @@ export default defineComponent({
}
}
&
:focus
{
&
:focus
{
&
:after
{
outline
:
solid
2px
var
(
--
focus
);
content
:
""
;
outline-offset
:
2px
;
pointer-events
:
none
;
position
:
absolute
;
top
:
-5px
;
right
:
-5px
;
bottom
:
-5px
;
left
:
-5px
;
border
:
2px
solid
var
(
--
accentAlpha03
);
border-radius
:
10px
;
}
}
}
&
.inline
+
.bghgjjyj
{
&
.inline
+
.bghgjjyj
{
...
...
This diff is collapsed.
Click to expand it.
src/client/pages/my-lists/index.vue
+
11
−
2
View file @
4149c778
...
@@ -3,7 +3,10 @@
...
@@ -3,7 +3,10 @@
<MkButton
@
click=
"create"
primary
class=
"add"
><i
class=
"fas fa-plus"
></i>
{{
$ts
.
createList
}}
</MkButton>
<MkButton
@
click=
"create"
primary
class=
"add"
><i
class=
"fas fa-plus"
></i>
{{
$ts
.
createList
}}
</MkButton>
<MkPagination
:pagination=
"pagination"
#default
="
{items}" class="lists _content" ref="list">
<MkPagination
:pagination=
"pagination"
#default
="
{items}" class="lists _content" ref="list">
<MkA
v-for=
"(list, i) in items"
:key=
"list.id"
class=
"list _panel"
:to=
"`/my/lists/$
{ list.id }`">
{{
list
.
name
}}
</MkA>
<MkA
v-for=
"list in items"
:key=
"list.id"
class=
"list _panel"
:to=
"`/my/lists/$
{ list.id }`">
<div
class=
"name"
>
{{
list
.
name
}}
</div>
<MkAvatars
:user-ids=
"list.userIds"
/>
</MkA>
</MkPagination>
</MkPagination>
</div>
</div>
</
template
>
</
template
>
...
@@ -12,6 +15,7 @@
...
@@ -12,6 +15,7 @@
import
{
defineComponent
}
from
'
vue
'
;
import
{
defineComponent
}
from
'
vue
'
;
import
MkPagination
from
'
@client/components/ui/pagination.vue
'
;
import
MkPagination
from
'
@client/components/ui/pagination.vue
'
;
import
MkButton
from
'
@client/components/ui/button.vue
'
;
import
MkButton
from
'
@client/components/ui/button.vue
'
;
import
MkAvatars
from
'
@client/components/avatars.vue
'
;
import
*
as
os
from
'
@client/os
'
;
import
*
as
os
from
'
@client/os
'
;
import
*
as
symbols
from
'
@client/symbols
'
;
import
*
as
symbols
from
'
@client/symbols
'
;
...
@@ -19,6 +23,7 @@ export default defineComponent({
...
@@ -19,6 +23,7 @@ export default defineComponent({
components
:
{
components
:
{
MkPagination
,
MkPagination
,
MkButton
,
MkButton
,
MkAvatars
,
},
},
data
()
{
data
()
{
...
@@ -63,7 +68,7 @@ export default defineComponent({
...
@@ -63,7 +68,7 @@ export default defineComponent({
>
.lists
{
>
.lists
{
>
.list
{
>
.list
{
display
:
flex
;
display
:
block
;
padding
:
16px
;
padding
:
16px
;
border
:
solid
1px
var
(
--
divider
);
border
:
solid
1px
var
(
--
divider
);
border-radius
:
6px
;
border-radius
:
6px
;
...
@@ -72,6 +77,10 @@ export default defineComponent({
...
@@ -72,6 +77,10 @@ export default defineComponent({
border
:
solid
1px
var
(
--
accent
);
border
:
solid
1px
var
(
--
accent
);
text-decoration
:
none
;
text-decoration
:
none
;
}
}
>
.name
{
margin-bottom
:
4px
;
}
}
}
}
}
}
}
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment