-
Notifications
You must be signed in to change notification settings - Fork 53
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #708 from Timo-Breumelhof/feature/707-CurrentDate-…
…ExcludeCSS Add ExcludeCSS SKO closes #707
- Loading branch information
Showing
4 changed files
with
60 additions
and
11 deletions.
There are no files selected for viewing
45 changes: 45 additions & 0 deletions
45
content/tutorials/themes/theme-objects/cssexclude/index.md
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
--- | ||
uid: cssexclude | ||
locale: en | ||
title: CSSEXCLUDE Theme object | ||
dnnversion: 09.02.00 | ||
previous-topic: cssinclude | ||
next-topic: currentdate | ||
related-topics: theme-objects,themes,create-theme | ||
links: | ||
--- | ||
|
||
# CSSEXCLUDE Theme Object Introduction | ||
|
||
Allows you to exclude a Stylesheet (that DNN would normally load) from being loaded | ||
|
||
**Current Version:** 01.00.00 | ||
|
||
|
||
## Include in Theme | ||
|
||
### ASCX | ||
``` html | ||
<%@ Register TagPrefix="dnn" TagName="CssExclude" src="~/Admin/Skins/DnnCssExclude.ascx" %> | ||
<dnn:CssExclude runat="server" name="DnnDefault" /> | ||
``` | ||
|
||
### HTML Token | ||
[DNNCSSEXCLUDE] | ||
|
||
### HTML Object Token | ||
``` html | ||
<object id="DNNCSSEXCLUDE" codetype="dotnetnuke/server" codebase="DNNCSSEXCLUDE"> | ||
``` | ||
|
||
| Attribute | Description | Default | Posssible Values | DNN Version | | ||
| --- | --- | --- | --- | --- | | ||
| Name | Name of the framework or library to remove | | DnnDefault<br/>Bootstrap<br/><br/> | 01.00.00 | | ||
## Examples: | ||
### Don't load Default.css | ||
~~~html | ||
<dnn:CssExclude runat="server" name="DnnDefault" /> | ||
~~~ | ||
This file contains 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
This file contains 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
This file contains 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