zoukankan      html  css  js  c++  java
  • DNN 站点标准CSS 注解

    /* 红颜色的是我做的标注,该CSS来自 DNN 3.2.2,可在站点管理的 CSS编辑里看到这个 CSS  */

    /* ================================
        CSS STYLES FOR DotNetNuke
       ================================
    */  


    /* PAGE BACKGROUND */
    /* background color for the header at the top of the page  */
    /* 页面顶部标题的背景色及其它样式 */
    .HeadBg {
    }

    /* background color for the content part of the pages */
    /* 页面内容区域的背景色及其它样式 */
    Body
    {
    }

    /* background/border colors for the selected tab */
    /* 当前所在的页面的背景色、边框色及其它样式 */
    .TabBg {
    }

    /* 左侧面板的样式 */
    .LeftPane  {
    }

    /* 中间主要内容面板的样式 */
    .ContentPane  {
    }

    /* 右侧面板的样式 */
    .RightPane  {
    }

    /* text style for the selected tab */
    /* 当前页面的文字样式及其它样式 */
    .SelectedTab {
    }

    /* hyperlink style for the selected tab */
    /* 当前页面链接的样式 */
    A.SelectedTab:link {
    }
    A.SelectedTab:visited  {
    }
    A.SelectedTab:active   {
    }
    A.SelectedTab:hover    {
    }

    /* text style for the unselected tabs */
    /* 非当前页面链接的样式 */
    .OtherTabs {
    }   
    /* hyperlink style for the unselected tabs */
    A.OtherTabs:link {
    }
    A.OtherTabs:visited  {
    }
    A.OtherTabs:active   {
    }
    A.OtherTabs:hover    {
    }

    /* GENERAL */
    /* style for module titles */
    /* 模块标题样式 */
    .Head   {
    }

    /* style of item titles on edit and admin pages */
    /* 编辑和管理页面,子项标题的样式 */
    .SubHead    {
    }

    /* module title style used instead of Head for compact rendering by QuickLinks and Signin modules */
    /* 模块标题的紧凑样式 */
    .SubSubHead {
    }

    /* text style used for most text rendered by modules */
    /* 标准文字,这个用的最多 */
    .Normal
    {
    }

    /* text style used for textboxes in the admin and edit pages, for Nav compatibility */
    /* 标准文本框样式 */
    .NormalTextBox
    {
    }

    /* 标准文字的红色形式,比如如果某个输入项格式不正确,提示文本就用这个样式 */
    .NormalRed
    {
    }

    /* 标准文字的粗体形式,用于重点问题,列表头,等等位置 */
    .NormalBold
    {
    }

    /* 命令按钮和链接按钮的样式 */
    /* text style for buttons and link buttons used in the portal admin pages */
    .CommandButton     {
    }   
    /* hyperlink style for buttons and link buttons used in the portal admin pages */
    A.CommandButton:link {
    }
    A.CommandButton:visited  {
    }
    A.CommandButton:active   {
    }
    A.CommandButton:hover    {
    }
       
    /* GENERIC */
    /* 一些标准 HTML 元素的样式,一看就明白,不用多说了吧 */
    H1  {
    }
    H2  {
    }
    H3  {
    }
    H4  {
    }
    H5, DT  {
    }
    H6  {
    }
    TFOOT, THEAD    {
    }
    TH  {
    }
    A:link  {
    }
    A:visited   {
    }
    A:active    {
    }
    A:hover {
    }
    SMALL   {
    }
    BIG {
    }
    BLOCKQUOTE, PRE {
    }
    UL LI   {
    }
    UL LI LI    {
    }
    UL LI LI LI {
    }
    OL LI   {
    }
    OL OL LI    {
    }
    OL OL OL LI {
    }
    HR {
    }

    /* MODULE-SPECIFIC */
    /* 这些是针对特定模块所设置的样式, 当然你的模块也可以用它们 */

    /* text style for reading messages in Discussion */   
    /* Discussion模块的消息文本样式 */
    .Message    {

     
    /* style of item titles by Announcements and events */
    /* Announcements 和 events 模块子项标题的样式 */
    .ItemTitle    {
    }

    /* Menu-Styles */
    /* 菜单样式, 一看样式名称就知道是干什么用的,不多说了 */
    /* Module Title Menu */
    .ModuleTitle_MenuContainer {
    }
    .ModuleTitle_MenuBar {
    }
    .ModuleTitle_MenuItem {
    }
    .ModuleTitle_MenuIcon {
    }
    .ModuleTitle_SubMenu {
    }
    .ModuleTitle_MenuBreak {
    }
    .ModuleTitle_MenuItemSel {
    }
    .ModuleTitle_MenuArrow {
    }
    .ModuleTitle_RootMenuArrow {
    }

    /* Main Menu */
    .MainMenu_MenuContainer {
    }
    .MainMenu_MenuBar {
    }
    .MainMenu_MenuItem {
    }
    .MainMenu_MenuIcon {
    }
    .MainMenu_SubMenu {
    }
    .MainMenu_MenuBreak {
    }
    .MainMenu_MenuItemSel {
    }
    .MainMenu_MenuArrow {
    }
    .MainMenu_RootMenuArrow {
    }

  • 相关阅读:
    JSP--------------------图书管理器
    Vue-router的基本使用(创建--动态跳转)
    JSP邮箱小案例(完成全部功能)
    Vue CLI3脚手架的使用
    Vue小案例测试-------------------实现购物车小模块
    JSP第六次作业提交~~~~~~~~~~~~~~~~~~~~~
    JSP项目第二阶段(使用数据库存储与注册)
    jsp第三次作业-------------------------------
    2021/4/19作业
    4.12作业
  • 原文地址:https://www.cnblogs.com/verygis/p/325753.html
Copyright © 2011-2022 走看看