// Copyright (C) YOOtheme GmbH, YOOtheme Proprietary Use License (http://www.yootheme.com/license) */ // // Component: Comment // // ======================================================================== // Variables // ======================================================================== @comment-header-margin-bottom: @global-margin; @comment-avatar-margin-right: @global-margin; @comment-title-font-size: round((@global-font-size * 1.14)); // 16px / 18px @comment-title-line-height: round((@comment-title-font-size * 1.36)); // 22px / 24px @comment-meta-color: @global-muted-color; @comment-meta-font-size: round((@global-font-size * 0.78)); // 11px / 12px @comment-meta-line-height: round((@comment-meta-font-size * 1.49)); // 16px / 18px @comment-list-margin-top: @global-margin; // // New // @comment-padding: 15px; @comment-border-width: @global-border-width; @comment-border: @global-border; @comment-border-radius: 3px; @comment-background: @global-background; @comment-primary-border: @global-primary-background; @comment-primary-title-color: @global-primary-background; // Component // ======================================================================== .hook-comment() {} // Sub-object `uk-comment-header` // ======================================================================== .hook-comment-header() { padding: @comment-padding; border: @comment-border-width solid @comment-border; border-radius: @comment-border-radius; background: @comment-background; } // Sub-object `uk-comment-avatar` // ======================================================================== .hook-comment-avatar() {} // Sub-object `uk-comment-title` // ======================================================================== .hook-comment-title() {} // Sub-object `uk-comment-meta` // ======================================================================== .hook-comment-meta() {} // Sub-object `uk-comment-body` // ======================================================================== .hook-comment-body() {} // Sub-object `uk-comment-primary` // ======================================================================== .hook-comment-primary() {} // Miscellaneous // ======================================================================== .hook-comment-misc() { // Comment by administrator .uk-comment-primary .uk-comment-header { border-color: @comment-primary-border; .uk-comment-title { color: @comment-primary-title-color; } } }