Skip to content

Commit 1f5ff18

Browse files
author
zzzprojects
committed
Add design change
Add design change
1 parent a9b72b5 commit 1f5ff18

13 files changed

+37
-36
lines changed

docs/_sass/_mixin.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ $background-black-transparent-hover: rgba(0, 0, 0, 0.9);
2424
$border-dark: 1px solid #000;
2525
$box-shadow-dark: 10px 10px #333;
2626
$box-shadow-light: 10px 10px #999;
27-
$box-shadow-right: 10px 0 5px -2px #333;
27+
$box-shadow-right: 10px 0 5px -2px #e8e8e8;
2828
$text-shadow-lg: 2px -1px rgba(0, 0, 0, 0.7);
2929
$text-shadow-xl: 2px -1px rgba(0, 0, 0, 0.7);
3030
$margin-bottom-header: 30px;

docs/_sass/page-index.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838
height:140px;
3939
width:140px;
4040
text-align:center;
41-
padding:40px 0px;
41+
padding:32px 0px;
4242
margin:0;
4343
text-shadow:2px -1px rgba(0,0,0,0.7)
4444
}

docs/_sass/page-pricing.scss

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,6 @@
1-
.purchasing-step {
2-
margin-top: 60px;
3-
}
41
.purchasing-step h2 {
52
padding-bottom: 5px;
63
margin-bottom: 20px;
7-
margin-top: 40px;
84
font-size: 2.5rem;
95
border-bottom: 1px solid #ddd;
106
}

docs/_sass/section.scss

Lines changed: 25 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,10 @@
55
@include background-toright-dark;
66
border-right: 3px solid $color-z;
77
box-shadow: $box-shadow-right;
8+
padding:0;
9+
h3{
10+
padding:0 10px;
11+
}
812
}
913

1014
.section-nav .card {
@@ -17,14 +21,29 @@
1721
padding-left: 0;
1822
padding-right: 0;
1923
}
20-
.section-nav .card a {
21-
color: rgba(255, 255, 255, 0.5);
24+
.section-nav .card {
25+
ul{
26+
padding:0;
27+
li{
28+
padding:5px 20px;
29+
&:hover{
30+
background-color:$color-z;
31+
a{
32+
color:white;
33+
}
34+
}
35+
a{
36+
display:block;
37+
color: rgba(255, 255, 255, 0.5);
38+
&.active{
39+
color: rgba(255, 255, 255, 1);
40+
font-weight: 700;
41+
}
42+
}
43+
}
44+
}
2245
}
2346

24-
.section-nav a.active {
25-
color: rgba(255, 255, 255, 1);
26-
font-weight: 700;
27-
}
2847

2948

3049

@@ -51,7 +70,6 @@
5170

5271
.section-main h1 {
5372
font-size: 3.5rem;
54-
margin-bottom: 30px;
5573
}
5674

5775
//

docs/_sass/site-default.scss

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,11 @@
22
// default
33
//
44
a {
5-
color: $link-color;
5+
color: $link-color;
66
}
77
a:hover {
8-
color: $link-color;
8+
color: $link-color;
9+
text-decoration:none;
910
}
1011
body {
1112
overflow-x: hidden;

docs/_sass/site-header.scss

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@
66
}
77
.site-header {
88
background-color: white;
9-
box-shadow: $box-shadow;
109
}
1110
@media print {
1211
.site-header {
@@ -108,7 +107,6 @@
108107
}
109108
.site-header .nav-context nav li {
110109
font-size: $font-size-lg;
111-
text-transform:uppercase
112110
}
113111
.site-header .nav-context nav li.active {
114112
@include background-red;

docs/pages/problems/dbbulkoperationconcurrency-exception.md

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,13 +10,11 @@ You execute a method from the Entity Framework Extensions library, and the follo
1010

1111
{% include template-exception.html message='A concurrency exception has occured. Entities may have been modified or deleted since entities were loaded.' %}
1212

13-
## Solution
14-
1513
### Cause
1614

1715
Another thread already performed the operation.
1816

19-
### Fix
17+
### Solution
2018

2119
There are three possible resolutions:
2220

docs/pages/problems/dbupdateconcurrency-exception.md

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,13 +10,11 @@ You execute a method from the Entity Framework Extensions library, and the follo
1010

1111
{% include template-exception.html message='Store update, insert, or delete statement affected an unexpected number of rows ([row count]). Entities may have been modified or deleted since entities were loaded. See http://go.microsoft.com/fwlink/?LinkId=472540 for information on understanding and handling optimistic concurrency exceptions.' %}
1212

13-
## Solution
14-
1513
### Cause
1614

1715
Another thread have already performed the operation.
1816

19-
### Fix
17+
### Solution
2018

2119
There are three possible resolutions:
2220

docs/pages/problems/foreign-key-constraint-autodetectchanges-disabled.md

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,6 @@ using (var ctx = new MyEntities())
2121
}
2222
{% endhighlight %}
2323

24-
## Solution
25-
2624
### Cause
2725

2826
One cause could be simply a wrong save order provided by either Entity Framework or EFE Library.
@@ -34,7 +32,7 @@ When the AutoDetectChanges is disabled, there is no check about the relationship
3432

3533
In additional, there is no reason why this code should disable DetectChanges. Since the AddRange method is used, the “DetectChanges” method is called only once per AddRange call, so don't suffer from a performance issue.
3634

37-
### Fix
35+
### Solution
3836

3937
1. ADD the line AutoDectectChangesEnabled = true; before BulkSaveChanges
4038
2. CALL ctx.ChangeTracker.DetectChanges();

docs/pages/problems/md5-exception.md

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,13 +8,11 @@ You execute a method from the Entity Framework Extensions library, and the follo
88

99
{% include template-exception.html message='This implementation is not part of the Windows Platform FIPS validated cryptographic algorithms.' %}
1010

11-
## Solution
12-
1311
### Cause
1412

1513
The default algorithm to validate the license key & name is not supported with FIPS enabled.
1614

17-
### Fix
15+
### Solution
1816

1917
#### Ask for a compatible key
2018

0 commit comments

Comments
 (0)