86d121c8f2
This adds key pair creation and importing to Launch Instance. Closes-Bug: #1433826 Change-Id: I548bcea280cea1ebcb7445c519bfdbfe811a9235 Co-Authored-By: Neill Cox <neill.cox@ingenious.com.au> Co-Authored-By: Richard Jones <r1chardj0n3s@gmail.com> Co-Authored-By: Kelly Domico <kelly.domico@hp.com> Co-Authored-By: Mike Hagedorn <mike.hagedorn@hp.com> Co-Authored-By: Brian Tully <brian.tully@hp.com> Co-Authored-By: Shaoquan Chen <sean.chen2@hp.com>
20 lines
448 B
SCSS
20 lines
448 B
SCSS
/* This file contains any custom SCSS mixins that can be shared */
|
|
/* For more information on the benefits of Sass mixins and the @mixin syntax,
|
|
* check out http://www.sass-lang.com/guide#topic-6
|
|
*/
|
|
|
|
@mixin input-placeholder {
|
|
&::-webkit-input-placeholder {
|
|
@content;
|
|
}
|
|
&:-moz-placeholder { /* Firefox 18- */
|
|
@content;
|
|
}
|
|
&::-moz-placeholder { /* Firefox 19+ */
|
|
@content;
|
|
}
|
|
&:-ms-input-placeholder {
|
|
@content;
|
|
}
|
|
}
|