Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
A
ant-design-pro
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
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
duanledexianxianxian
ant-design-pro
Commits
17f71f36
Commit
17f71f36
authored
Sep 06, 2017
by
afc163
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Updates
parent
77f4425b
Changes
2
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
26 additions
and
15 deletions
+26
-15
index.css
index.css
+25
-14
index.js
index.js
+1
-1
No files found.
index.css
View file @
17f71f36
...
...
@@ -3407,7 +3407,7 @@ body {
}
.ant-dropdown-menu-dark
,
.ant-dropdown-menu-dark
.ant-dropdown-menu
{
background
:
#00
0B14
;
background
:
#00
182E
;
}
.ant-dropdown-menu-dark
.ant-dropdown-menu-item
,
.ant-dropdown-menu-dark
.ant-dropdown-menu-submenu-title
,
...
...
@@ -5113,17 +5113,17 @@ body {
.ant-menu-dark
,
.ant-menu-dark
.ant-menu-sub
{
color
:
rgba
(
255
,
255
,
255
,
0.67
);
background
:
#00
0B14
;
background
:
#00
182E
;
}
.ant-menu-dark
.ant-menu-inline.ant-menu-sub
{
background
:
#00
182E
;
background
:
#00
0B14
;
}
.ant-menu-dark.ant-menu-horizontal
{
border-bottom-color
:
#00
0B14
;
border-bottom-color
:
#00
182E
;
}
.ant-menu-dark.ant-menu-horizontal
>
.ant-menu-item
,
.ant-menu-dark.ant-menu-horizontal
>
.ant-menu-submenu
{
border-color
:
#00
0B14
;
border-color
:
#00
182E
;
border-bottom
:
0
;
}
.ant-menu-dark
.ant-menu-item
,
...
...
@@ -5322,7 +5322,7 @@ body {
-webkit-box-flex
:
1
;
-ms-flex
:
auto
;
flex
:
auto
;
background
:
#f
5f5
f5
;
background
:
#f
0f2
f5
;
}
.ant-layout.ant-layout-has-sider
{
-webkit-box-orient
:
horizontal
;
...
...
@@ -5361,7 +5361,7 @@ body {
-o-transition
:
all
0.15s
cubic-bezier
(
0.645
,
0.045
,
0.355
,
1
);
transition
:
all
0.15s
cubic-bezier
(
0.645
,
0.045
,
0.355
,
1
);
position
:
relative
;
background
:
#00
0B14
;
background
:
#00
182E
;
/* fix firefox can't set width smaller than content on flex item */
min-width
:
0
;
}
...
...
@@ -5398,7 +5398,7 @@ body {
width
:
36px
;
height
:
42px
;
line-height
:
42px
;
background
:
#00
0B14
;
background
:
#00
182E
;
color
:
#fff
;
font-size
:
18px
;
border-radius
:
0
4px
4px
0
;
...
...
@@ -5408,7 +5408,7 @@ body {
transition
:
background
.3s
ease
;
}
.ant-layout-sider-zero-width-trigger
:hover
{
background
:
#192
32b
;
background
:
#192
f43
;
}
/* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */
/* stylelint-disable declaration-bang-space-before */
...
...
@@ -14592,21 +14592,21 @@ li.ant-calendar-time-picker-select-option-disabled:hover {
.ant-calendar-week-number-cell
{
opacity
:
0.5
;
}
.ant-calendar-week-number
tr
{
.ant-calendar-week-number
.ant-calendar-body
tr
{
-webkit-transition
:
all
.3s
;
-o-transition
:
all
.3s
;
transition
:
all
.3s
;
cursor
:
pointer
;
}
.ant-calendar-week-number
tr
:hover
{
.ant-calendar-week-number
.ant-calendar-body
tr
:hover
{
background
:
#ecf6fd
;
}
.ant-calendar-week-number
tr
.ant-calendar-active-week
{
.ant-calendar-week-number
.ant-calendar-body
tr
.ant-calendar-active-week
{
background
:
#d2eafb
;
font-weight
:
500
;
}
.ant-calendar-week-number
tr
.ant-calendar-selected-day
.ant-calendar-date
,
.ant-calendar-week-number
tr
.ant-calendar-selected-day
:hover
.ant-calendar-date
{
.ant-calendar-week-number
.ant-calendar-body
tr
.ant-calendar-selected-day
.ant-calendar-date
,
.ant-calendar-week-number
.ant-calendar-body
tr
.ant-calendar-selected-day
:hover
.ant-calendar-date
{
background
:
transparent
;
color
:
rgba
(
0
,
0
,
0
,
0.65
);
}
...
...
@@ -18109,6 +18109,17 @@ form .ant-input-group-addon .ant-cascader-picker:only-child {
top
:
12px
;
padding
:
0
10px
;
}
.ant-steps-item-tail
:after
{
content
:
''
;
display
:
inline-block
;
background
:
#e9e9e9
;
height
:
1px
;
border-radius
:
1px
;
width
:
100%
;
-webkit-transition
:
background
.3s
;
-o-transition
:
background
.3s
;
transition
:
background
.3s
;
}
.ant-steps-item-content
{
margin-top
:
3px
;
}
...
...
index.js
View file @
17f71f36
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