diff --git a/less/_material.less b/less/_material.less index e7aab00c..4ff2dcd3 100644 --- a/less/_material.less +++ b/less/_material.less @@ -84,21 +84,7 @@ legend { @import "_progress.less"; // Typography -.text-warning { - color: @btn-warning; -} -.text-primary { - color: @btn-primary; -} -.text-danger { - color: @btn-danger; -} -.text-success { - color: @btn-success; -} -.text-info { - color: @btn-info; -} +@import "_typography.less"; @import "_tabs.less"; diff --git a/less/_typography.less b/less/_typography.less new file mode 100644 index 00000000..50802997 --- /dev/null +++ b/less/_typography.less @@ -0,0 +1,15 @@ +.text-warning { + color: @btn-warning; +} +.text-primary { + color: @btn-primary; +} +.text-danger { + color: @btn-danger; +} +.text-success { + color: @btn-success; +} +.text-info { + color: @btn-info; +}