From 66d71d6d1c58cee538c38a96bc1707dc8c8a0e56 Mon Sep 17 00:00:00 2001 From: John Mitchell Date: Tue, 4 Aug 2015 12:01:09 -0400 Subject: [PATCH] moved standard out less block to be more modular --- awx/ui/client/legacy-styles/ansible-ui.less | 22 ------------------ .../shared/download-standard-out.block.less | 23 +++++++++++++++++++ 2 files changed, 23 insertions(+), 22 deletions(-) create mode 100644 awx/ui/client/src/shared/download-standard-out.block.less diff --git a/awx/ui/client/legacy-styles/ansible-ui.less b/awx/ui/client/legacy-styles/ansible-ui.less index 3c3fb6fd3a..09527af6dc 100644 --- a/awx/ui/client/legacy-styles/ansible-ui.less +++ b/awx/ui/client/legacy-styles/ansible-ui.less @@ -2030,25 +2030,3 @@ tr td button i { margin-bottom: 15px; } } - -.DownloadStandardOut { - color: #fff !important; -} - -.DownloadStandardOut--onStandardOutPage { - margin-top: -3px; - margin-right: -9px; - float: right; -} - -.DownloadStandardOut--onModal { - margin-bottom: 10px; -} - -.DownloadStandardOut-icon { - color: #fff; -} - -.DownloadStandardOut-icon--withText { - margin-right: 5px; -} diff --git a/awx/ui/client/src/shared/download-standard-out.block.less b/awx/ui/client/src/shared/download-standard-out.block.less new file mode 100644 index 0000000000..984fe1b2e3 --- /dev/null +++ b/awx/ui/client/src/shared/download-standard-out.block.less @@ -0,0 +1,23 @@ +/** @define DownloadStandardOut */ + +.DownloadStandardOut { + color: #fff !important; +} + +.DownloadStandardOut--onStandardOutPage { + margin-top: -3px; + margin-right: -9px; + float: right; +} + +.DownloadStandardOut--onModal { + margin-bottom: 10px; +} + +.DownloadStandardOut-icon { + color: #fff; +} + +.DownloadStandardOut-icon--withText { + margin-right: 5px; +}