This website works better with JavaScript.
Home
Explore
Help
Sign In
ayan.poddar
/
eShopOnContainers
Watch
1
Star
0
Fork
0
Code
Issues
0
Pull Requests
0
Projects
0
Releases
19
Wiki
Activity
Browse Source
Fix UI styles MVCApp
pull/241/head
Ramón Tomás
7 years ago
parent
ecf9933908
commit
e1d8a8e23e
4 changed files
with
8 additions
and
7 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
src/Web/WebMVC/Views/Shared/_Header.cshtml
+3
-3
src/Web/WebMVC/wwwroot/css/shared/components/identity/identity.css
+1
-0
src/Web/WebMVC/wwwroot/css/shared/components/identity/identity.min.css
+3
-3
src/Web/WebMVC/wwwroot/css/shared/components/identity/identity.scss
+ 1
- 1
src/Web/WebMVC/Views/Shared/_Header.cshtml
View File
@ -5,7 +5,7 @@
<div class="container">
@foreach (var header in @Model)
{
<a class="esh-header-
title
" asp-area="" asp-controller="@header.Controller" asp-action="Index">@header.Text</a>
<a class="esh-header-
back
" asp-area="" asp-controller="@header.Controller" asp-action="Index">@header.Text</a>
}
</div>
</div>
+ 3
- 3
src/Web/WebMVC/wwwroot/css/shared/components/identity/identity.css
View File
@ -29,8 +29,8 @@
.
esh-identity-drop
{
background
:
#
FFFFFF
;
height
:
0
;
min-
width
:
1
4
rem
;
height
:
1
0
px
;
width
:
1
0
rem
;
overflow
:
hidden
;
padding
:
.
5rem
;
position
:
absolute
;
@ -41,7 +41,7 @@
.
esh-identity
:
hover
.
esh-identity-drop
{
border
:
1px
solid
#
EEEEEE
;
height
:
7
rem
;
height
:
10
rem
;
transition
:
height
0
.
35s
;
}
+ 1
- 0
src/Web/WebMVC/wwwroot/css/shared/components/identity/identity.min.css
View File
@ -0,0 +1 @@
.
esh-identity
{
line-height
:
3
rem
;
position
:
relative
;
text-align
:
right
;
}
.
esh-identity-section
{
display
:
inline
-
block
;
width
:
100
%
;
}
.
esh-identity-name
{
display
:
inline
-
block
;
}
.
esh-identity-name--upper
{
text-transform
:
uppercase
;
}
@
media
screen
and
(
max-width
:
768px
)
{
.
esh-identity-name
{
font-size
:
.85
rem
;
}
}
.
esh-identity-image
{
display
:
inline
-
block
;
}
.
esh-identity-drop
{
background
:
#fff
;
height
:
10
px
;
width
:
10
rem
;
overflow
:
hidden
;
padding
:
.5
rem
;
position
:
absolute
;
right
:
0
;
top
:
2.5
rem
;
transition
:
height
.35
s
;
}
.
esh-identity
:
hover
.
esh-identity-drop
{
border
:
1
px
solid
#eee
;
height
:
10
rem
;
transition
:
height
.35
s
;
}
.
esh-identity-item
{
cursor
:
pointer
;
transition
:
color
.35
s
;
}
.
esh-identity-item
:
hover
{
color
:
#75b918
;
transition
:
color
.35
s
;
}
+ 3
- 3
src/Web/WebMVC/wwwroot/css/shared/components/identity/identity.scss
View File
@ -28,8 +28,8 @@
&
-drop
{
background
:
$
color-background-brighter
;
height
:
0
;
min-
width
:
1
4
rem
;
height
:
1
0
px
;
width
:
1
0
rem
;
overflow
:
hidden
;
padding
:
.
5rem
;
position
:
absolute
;
@ -40,7 +40,7 @@
&
:
hover
&
-drop
{
border
:
$
border-light
solid
$
color-foreground-bright
;
height
:
7
rem
;
height
:
10
rem
;
transition
:
height
$
animation-speed-default
;
}
Write
Preview
Loading…
Cancel
Save