diff --git a/__DOC_RESOURCES__/customStyles.css b/__DOC_RESOURCES__/customStyles.css index d8abf0d3..37a365d1 100644 --- a/__DOC_RESOURCES__/customStyles.css +++ b/__DOC_RESOURCES__/customStyles.css @@ -6,56 +6,94 @@ Custom CSS for the JSDOC template display:none; } -/*body {*/ -/* font-size:18px;*/ -/*}*/ - +/** + Set colors to cloudinary theme + */ .page-header { background-color: #3448C5 !important; } - +/** + Set colors to cloudinary theme + */ .breadcrumb li a { color: #FF5050!important; } +/** + Set colors to cloudinary theme + */ .toc .nav>li.active>a, .toc .nav>li.active>a:focus, .toc .nav>li.active>a:hover { color: #FF5050!important; border-left: 2px solid #3448C5!important; } +/** + Set colors of buttons to cloudinary theme + */ .symbol-title .name-signature, .symbol-title .signature-params { color: #0c163b!important; } - +/** + Set colors of buttons to cloudinary theme + */ .back-to-top { color: #5A616A!important; } +/** + make function names bold + */ +.symbol-title.collapsible-symbol.function .name { + font-weight: bold; + text-decoration: underline; +} + +/** + Set colors of buttons to cloudinary theme + */ .symbol-title.collapsible-symbol .toggle-icon { color: #3448C5!important; text-indent: 0!important; } +/** + Set colors to cloudinary theme + */ .callout-primary { border-left-color: #3448C5!important; } +/** + Set colors to cloudinary theme + */ .callout-primary h5 { color: #3448C5!important; } +/** + Set colors to cloudinary theme + */ body { color: #0c163b!important; } +/** + Set colors to cloudinary theme + */ .toc .nav>li>a .name-signature, .toc .nav>li>a .signature-params { color: #0c163b!important; } +/** + Set colors to cloudinary theme + */ .callout-default { border-left-color: #5A616A!important; } +/** + Set sizes to cloudinary theme + */ .branding-logo { background-size:30px; } @@ -128,13 +166,11 @@ body { * ENSURE ALL COLLAPSABLE AREAS ARE ALWAYS OPEN */ .symbol-details { - max-height:9999px!important; + /*max-height:9999px!important;*/ } .symbol-title.function { - padding: 10px; - border: 1px solid black; - border-radius:2px; + /*padding: 0px;*/ } /** @@ -165,3 +201,33 @@ body { .pill-legend { padding-bottom:15px; } + + + +/** + Hide the prefix in method names + */ +.signature-attribs { + display:none; +} + +/** + Make the description and details sections of a function smaller + */ +.callout { + padding: 13px; +} +/** + Hide the Return statement of methods + */ +.callout-success { + display:none; +} + +/** + Reduce spaces between horizontal lines + */ +.hr { + margin-top: 10px; + margin-bottom: 10px; +} diff --git a/src/actions/border.ts b/src/actions/border.ts index 662f9b67..0649b729 100644 --- a/src/actions/border.ts +++ b/src/actions/border.ts @@ -25,7 +25,7 @@ class Border extends Action { * @summary action * @memberOf Actions.Border * @description Sets the style of the border. - * @return {Actions.Border} + * @return {Border} */ static solid(width: number | string, color: SystemColors): Border { return new Border('solid', color, width);