Skip to content

Commit 7f10fad

Browse files
authored
Merge pull request #159 from AlexaCRM/updateLinksVisibility
Update links visibility
2 parents b8869ae + 9276050 commit 7f10fad

File tree

2 files changed

+15
-2
lines changed

2 files changed

+15
-2
lines changed

datapress/binding/user-binding.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@ Here are the revised instructions for binding a user from the maker portal in tw
122122

123123
**How to use binding information in twig**
124124

125-
The user object allows you to check whether the current user is bound and access their associated Dataverse record values. For more details, see [user binding](/datapress/binding/user-binding.md).
125+
The user object allows you to check whether the current user is bound and access their associated Dataverse record values.
126126

127127
**Example Usage**
128128

@@ -139,4 +139,4 @@ Example Output
139139
Jsandye Stanbra
140140
```
141141

142-
[Read more](/twig/introduction/#access-the-current-user-record)
142+
[Read more](/twig/introduction/#access-the-current-user-record)

src/css/custom.css

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,3 +33,16 @@
3333
.left-pane, .right-pane { flex: 1; padding: 20px; overflow: auto; margin: 10px; /* Add margin to separate panes */ border: 1px solid #ccc; /* Optional: Add border for better visualization */ }
3434
.left-pane { background-color: #f0f0f0; align-self: flex-start; /* Aligns to the start of the container */ }
3535
.right-pane { background-color: #e0e0e0; align-self: flex-start; /* Aligns to the start of the container */ }
36+
37+
/* Underline all links */
38+
article a {
39+
text-decoration: underline;
40+
}
41+
42+
/* Add external link icon to external links */
43+
article a[href^="http"]:not([href*="docs.alexacrm.com"]):after {
44+
content: "🔗";
45+
margin-left: 4px;
46+
font-size: 0.9em;
47+
vertical-align: middle;
48+
}

0 commit comments

Comments
 (0)