๐
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@mixin arrow($size, $color, $distanceFromLeft, $position, $InsideOrOut) { | |
&:after { | |
content: ""; | |
width: 0px; | |
height: 0px; | |
border-left: $size solid transparent; | |
border-right: $size solid transparent; | |
@if $position == top and $InsideOrOut == inside { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.gradient { | |
background-image: -webkit-gradient(linear,0% 0%,25% 100%,from(#ff2c2c),to(#7a5e91)); | |
-webkit-background-clip: text; | |
-webkit-text-fill-color: transparent; | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<br /> = <br /> | |
<!-- Example of one inside a file --> | |
<data name="YourName.Text"> | |
<value>If you are booking on behalf of someone else please include their name in the message box below. <br /> Name</value> | |
</data> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.custom-toggler .navbar-toggler-icon { | |
background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(255,255,255, 1)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 8h24M4 16h24M4 24h24'/%3E%3C/svg%3E"); | |
} | |
// May need to change the border color too. | |
// E.G | |
.navbar-toggler { | |
border-color: #fff !important; | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const warningTitleCSS = 'color:red; font-size:60px; font-weight: bold; -webkit-text-stroke: 1px black;'; | |
const warningDescCSS = 'font-size: 18px;'; | |
console.log('%cStop!', warningTitleCSS); | |
console.log("%cThis is a browser feature intended for developers. If someone told you to copy and paste something here to enable a Facebook feature or \"hack\" someone's account, it is a scam and will give them access to your Facebook account.", warningDescCSS); | |
console.log('%cSee https://www.facebook.com/selfxss for more information.', warningDescCSS); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
"Small Device Only": { | |
"prefix": "sm", | |
"body": [ | |
"@include media-breakpoint-only(sm) {", | |
"\t$1", | |
"}" | |
] | |
}, | |
"Medium Device Only": { | |
"prefix": "md", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
//////////////////////////////////////////////// | |
EXAMPLE USAGE | |
////////////////////////////////////////////// | |
var timer = document.getElementById('timer'); | |
var toggleBtn = document.getElementById('toggle'); | |
var resetBtn = document.getElementById('reset'); | |
var watch = new Stopwatch(timer); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@if (DotNetNuke.Common.Globals.IsEditMode()) | |
{ | |
<div id="[email protected]"> | |
<div class="card"> | |
<div class="card-header" id="[email protected]" > | |
<h5 class="mb-0"> | |
<a class="btn btn-primary text-white" data-toggle="collapse" data-target="#[email protected]" aria-expanded="true" aria-controls="[email protected]">Show Admin Section</a> | |
</h5> | |
</div> | |
<div id="[email protected]" class="collapse" aria-labelledby="[email protected]" data-parent="#[email protected]"> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
SELECT PaneName FROM dbo.TabModules | |
UPDATE dbo.TabModules | |
SET PaneName = 'NewPaneName' | |
WHERE PaneName = 'OldPaneName' | |
-- Update Using Module Title | |
SELECT PaneName FROM dbo.TabModules | |
UPDATE dbo.TabModules | |
SET PaneName = 'New pane name' | |
WHERE 'Module Title' = 'Your Title' |
OlderNewer