##// END OF EJS Templates
Merge pull request #6669 from SylvainCorlay/font_awesome_update...
Min RK -
r18320:2232b180 merge
parent child Browse files
Show More
@@ -1,1 +1,1 b''
1 Subproject commit b52bd7d838e0f66a792a3a94af457406c3973df2
1 Subproject commit 56b35d85bb0ea150458282f4064292a5c211025a
@@ -5785,24 +5785,23 b' button.close {'
5785 5785 *
5786 5786 */
5787 5787 /*!
5788 * Font Awesome 4.1.0 by @davegandy - http://fontawesome.io - @fontawesome
5788 * Font Awesome 4.2.0 by @davegandy - http://fontawesome.io - @fontawesome
5789 5789 * License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
5790 5790 */
5791 5791 /* FONT PATH
5792 5792 * -------------------------- */
5793 5793 @font-face {
5794 5794 font-family: 'FontAwesome';
5795 src: url('../components/font-awesome/fonts/fontawesome-webfont.eot?v=4.1.0');
5796 src: url('../components/font-awesome/fonts/fontawesome-webfont.eot?#iefix&v=4.1.0') format('embedded-opentype'), url('../components/font-awesome/fonts/fontawesome-webfont.woff?v=4.1.0') format('woff'), url('../components/font-awesome/fonts/fontawesome-webfont.ttf?v=4.1.0') format('truetype'), url('../components/font-awesome/fonts/fontawesome-webfont.svg?v=4.1.0#fontawesomeregular') format('svg');
5795 src: url('../components/font-awesome/fonts/fontawesome-webfont.eot?v=4.2.0');
5796 src: url('../components/font-awesome/fonts/fontawesome-webfont.eot?#iefix&v=4.2.0') format('embedded-opentype'), url('../components/font-awesome/fonts/fontawesome-webfont.woff?v=4.2.0') format('woff'), url('../components/font-awesome/fonts/fontawesome-webfont.ttf?v=4.2.0') format('truetype'), url('../components/font-awesome/fonts/fontawesome-webfont.svg?v=4.2.0#fontawesomeregular') format('svg');
5797 5797 font-weight: normal;
5798 5798 font-style: normal;
5799 5799 }
5800 5800 .fa {
5801 5801 display: inline-block;
5802 font-family: FontAwesome;
5803 font-style: normal;
5804 font-weight: normal;
5805 line-height: 1;
5802 font: normal normal normal 14px/1 FontAwesome;
5803 font-size: inherit;
5804 text-rendering: auto;
5806 5805 -webkit-font-smoothing: antialiased;
5807 5806 -moz-osx-font-smoothing: grayscale;
5808 5807 }
@@ -5864,36 +5863,20 b' button.close {'
5864 5863 margin-left: .3em;
5865 5864 }
5866 5865 .fa-spin {
5867 -webkit-animation: spin 2s infinite linear;
5868 -moz-animation: spin 2s infinite linear;
5869 -o-animation: spin 2s infinite linear;
5870 animation: spin 2s infinite linear;
5871 }
5872 @-moz-keyframes spin {
5873 0% {
5874 -moz-transform: rotate(0deg);
5875 }
5876 100% {
5877 -moz-transform: rotate(359deg);
5878 }
5866 -webkit-animation: fa-spin 2s infinite linear;
5867 animation: fa-spin 2s infinite linear;
5879 5868 }
5880 @-webkit-keyframes spin {
5869 @-webkit-keyframes fa-spin {
5881 5870 0% {
5882 5871 -webkit-transform: rotate(0deg);
5872 transform: rotate(0deg);
5883 5873 }
5884 5874 100% {
5885 5875 -webkit-transform: rotate(359deg);
5876 transform: rotate(359deg);
5886 5877 }
5887 5878 }
5888 @-o-keyframes spin {
5889 0% {
5890 -o-transform: rotate(0deg);
5891 }
5892 100% {
5893 -o-transform: rotate(359deg);
5894 }
5895 }
5896 @keyframes spin {
5879 @keyframes fa-spin {
5897 5880 0% {
5898 5881 -webkit-transform: rotate(0deg);
5899 5882 transform: rotate(0deg);
@@ -5906,43 +5889,40 b' button.close {'
5906 5889 .fa-rotate-90 {
5907 5890 filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=1);
5908 5891 -webkit-transform: rotate(90deg);
5909 -moz-transform: rotate(90deg);
5910 5892 -ms-transform: rotate(90deg);
5911 -o-transform: rotate(90deg);
5912 5893 transform: rotate(90deg);
5913 5894 }
5914 5895 .fa-rotate-180 {
5915 5896 filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2);
5916 5897 -webkit-transform: rotate(180deg);
5917 -moz-transform: rotate(180deg);
5918 5898 -ms-transform: rotate(180deg);
5919 -o-transform: rotate(180deg);
5920 5899 transform: rotate(180deg);
5921 5900 }
5922 5901 .fa-rotate-270 {
5923 5902 filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3);
5924 5903 -webkit-transform: rotate(270deg);
5925 -moz-transform: rotate(270deg);
5926 5904 -ms-transform: rotate(270deg);
5927 -o-transform: rotate(270deg);
5928 5905 transform: rotate(270deg);
5929 5906 }
5930 5907 .fa-flip-horizontal {
5931 5908 filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1);
5932 5909 -webkit-transform: scale(-1, 1);
5933 -moz-transform: scale(-1, 1);
5934 5910 -ms-transform: scale(-1, 1);
5935 -o-transform: scale(-1, 1);
5936 5911 transform: scale(-1, 1);
5937 5912 }
5938 5913 .fa-flip-vertical {
5939 5914 filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1);
5940 5915 -webkit-transform: scale(1, -1);
5941 -moz-transform: scale(1, -1);
5942 5916 -ms-transform: scale(1, -1);
5943 -o-transform: scale(1, -1);
5944 5917 transform: scale(1, -1);
5945 5918 }
5919 :root .fa-rotate-90,
5920 :root .fa-rotate-180,
5921 :root .fa-rotate-270,
5922 :root .fa-flip-horizontal,
5923 :root .fa-flip-vertical {
5924 filter: none;
5925 }
5946 5926 .fa-stack {
5947 5927 position: relative;
5948 5928 display: inline-block;
@@ -6008,6 +5988,8 b' button.close {'
6008 5988 .fa-check:before {
6009 5989 content: "\f00c";
6010 5990 }
5991 .fa-remove:before,
5992 .fa-close:before,
6011 5993 .fa-times:before {
6012 5994 content: "\f00d";
6013 5995 }
@@ -6337,7 +6319,8 b' button.close {'
6337 6319 .fa-arrows-h:before {
6338 6320 content: "\f07e";
6339 6321 }
6340 .fa-bar-chart-o:before {
6322 .fa-bar-chart-o:before,
6323 .fa-bar-chart:before {
6341 6324 content: "\f080";
6342 6325 }
6343 6326 .fa-twitter-square:before {
@@ -7166,7 +7149,6 b' button.close {'
7166 7149 .fa-digg:before {
7167 7150 content: "\f1a6";
7168 7151 }
7169 .fa-pied-piper-square:before,
7170 7152 .fa-pied-piper:before {
7171 7153 content: "\f1a7";
7172 7154 }
@@ -7283,6 +7265,7 b' button.close {'
7283 7265 content: "\f1cc";
7284 7266 }
7285 7267 .fa-life-bouy:before,
7268 .fa-life-buoy:before,
7286 7269 .fa-life-saver:before,
7287 7270 .fa-support:before,
7288 7271 .fa-life-ring:before {
@@ -7350,6 +7333,129 b' button.close {'
7350 7333 .fa-bomb:before {
7351 7334 content: "\f1e2";
7352 7335 }
7336 .fa-soccer-ball-o:before,
7337 .fa-futbol-o:before {
7338 content: "\f1e3";
7339 }
7340 .fa-tty:before {
7341 content: "\f1e4";
7342 }
7343 .fa-binoculars:before {
7344 content: "\f1e5";
7345 }
7346 .fa-plug:before {
7347 content: "\f1e6";
7348 }
7349 .fa-slideshare:before {
7350 content: "\f1e7";
7351 }
7352 .fa-twitch:before {
7353 content: "\f1e8";
7354 }
7355 .fa-yelp:before {
7356 content: "\f1e9";
7357 }
7358 .fa-newspaper-o:before {
7359 content: "\f1ea";
7360 }
7361 .fa-wifi:before {
7362 content: "\f1eb";
7363 }
7364 .fa-calculator:before {
7365 content: "\f1ec";
7366 }
7367 .fa-paypal:before {
7368 content: "\f1ed";
7369 }
7370 .fa-google-wallet:before {
7371 content: "\f1ee";
7372 }
7373 .fa-cc-visa:before {
7374 content: "\f1f0";
7375 }
7376 .fa-cc-mastercard:before {
7377 content: "\f1f1";
7378 }
7379 .fa-cc-discover:before {
7380 content: "\f1f2";
7381 }
7382 .fa-cc-amex:before {
7383 content: "\f1f3";
7384 }
7385 .fa-cc-paypal:before {
7386 content: "\f1f4";
7387 }
7388 .fa-cc-stripe:before {
7389 content: "\f1f5";
7390 }
7391 .fa-bell-slash:before {
7392 content: "\f1f6";
7393 }
7394 .fa-bell-slash-o:before {
7395 content: "\f1f7";
7396 }
7397 .fa-trash:before {
7398 content: "\f1f8";
7399 }
7400 .fa-copyright:before {
7401 content: "\f1f9";
7402 }
7403 .fa-at:before {
7404 content: "\f1fa";
7405 }
7406 .fa-eyedropper:before {
7407 content: "\f1fb";
7408 }
7409 .fa-paint-brush:before {
7410 content: "\f1fc";
7411 }
7412 .fa-birthday-cake:before {
7413 content: "\f1fd";
7414 }
7415 .fa-area-chart:before {
7416 content: "\f1fe";
7417 }
7418 .fa-pie-chart:before {
7419 content: "\f200";
7420 }
7421 .fa-line-chart:before {
7422 content: "\f201";
7423 }
7424 .fa-lastfm:before {
7425 content: "\f202";
7426 }
7427 .fa-lastfm-square:before {
7428 content: "\f203";
7429 }
7430 .fa-toggle-off:before {
7431 content: "\f204";
7432 }
7433 .fa-toggle-on:before {
7434 content: "\f205";
7435 }
7436 .fa-bicycle:before {
7437 content: "\f206";
7438 }
7439 .fa-bus:before {
7440 content: "\f207";
7441 }
7442 .fa-ioxhost:before {
7443 content: "\f208";
7444 }
7445 .fa-angellist:before {
7446 content: "\f209";
7447 }
7448 .fa-cc:before {
7449 content: "\f20a";
7450 }
7451 .fa-shekel:before,
7452 .fa-sheqel:before,
7453 .fa-ils:before {
7454 content: "\f20b";
7455 }
7456 .fa-meanpath:before {
7457 content: "\f20c";
7458 }
7353 7459 /*!
7354 7460 *
7355 7461 * IPython base
@@ -8000,10 +8106,9 b' input.engine_num_input {'
8000 8106 }
8001 8107 .folder_icon:before {
8002 8108 display: inline-block;
8003 font-family: FontAwesome;
8004 font-style: normal;
8005 font-weight: normal;
8006 line-height: 1;
8109 font: normal normal normal 14px/1 FontAwesome;
8110 font-size: inherit;
8111 text-rendering: auto;
8007 8112 -webkit-font-smoothing: antialiased;
8008 8113 -moz-osx-font-smoothing: grayscale;
8009 8114 content: "\f114";
@@ -8016,10 +8121,9 b' input.engine_num_input {'
8016 8121 }
8017 8122 .notebook_icon:before {
8018 8123 display: inline-block;
8019 font-family: FontAwesome;
8020 font-style: normal;
8021 font-weight: normal;
8022 line-height: 1;
8124 font: normal normal normal 14px/1 FontAwesome;
8125 font-size: inherit;
8126 text-rendering: auto;
8023 8127 -webkit-font-smoothing: antialiased;
8024 8128 -moz-osx-font-smoothing: grayscale;
8025 8129 content: "\f02d";
@@ -8032,10 +8136,9 b' input.engine_num_input {'
8032 8136 }
8033 8137 .file_icon:before {
8034 8138 display: inline-block;
8035 font-family: FontAwesome;
8036 font-style: normal;
8037 font-weight: normal;
8038 line-height: 1;
8139 font: normal normal normal 14px/1 FontAwesome;
8140 font-size: inherit;
8141 text-rendering: auto;
8039 8142 -webkit-font-smoothing: antialiased;
8040 8143 -moz-osx-font-smoothing: grayscale;
8041 8144 content: "\f016";
@@ -9862,10 +9965,9 b' ul#help_menu li a i {'
9862 9965 }
9863 9966 .edit_mode_icon:before {
9864 9967 display: inline-block;
9865 font-family: FontAwesome;
9866 font-style: normal;
9867 font-weight: normal;
9868 line-height: 1;
9968 font: normal normal normal 14px/1 FontAwesome;
9969 font-size: inherit;
9970 text-rendering: auto;
9869 9971 -webkit-font-smoothing: antialiased;
9870 9972 -moz-osx-font-smoothing: grayscale;
9871 9973 content: "\f040";
@@ -9878,10 +9980,9 b' ul#help_menu li a i {'
9878 9980 }
9879 9981 .command_mode_icon:before {
9880 9982 display: inline-block;
9881 font-family: FontAwesome;
9882 font-style: normal;
9883 font-weight: normal;
9884 line-height: 1;
9983 font: normal normal normal 14px/1 FontAwesome;
9984 font-size: inherit;
9985 text-rendering: auto;
9885 9986 -webkit-font-smoothing: antialiased;
9886 9987 -moz-osx-font-smoothing: grayscale;
9887 9988 content: ' ';
@@ -9894,10 +9995,9 b' ul#help_menu li a i {'
9894 9995 }
9895 9996 .kernel_idle_icon:before {
9896 9997 display: inline-block;
9897 font-family: FontAwesome;
9898 font-style: normal;
9899 font-weight: normal;
9900 line-height: 1;
9998 font: normal normal normal 14px/1 FontAwesome;
9999 font-size: inherit;
10000 text-rendering: auto;
9901 10001 -webkit-font-smoothing: antialiased;
9902 10002 -moz-osx-font-smoothing: grayscale;
9903 10003 content: "\f10c";
@@ -9910,10 +10010,9 b' ul#help_menu li a i {'
9910 10010 }
9911 10011 .kernel_busy_icon:before {
9912 10012 display: inline-block;
9913 font-family: FontAwesome;
9914 font-style: normal;
9915 font-weight: normal;
9916 line-height: 1;
10013 font: normal normal normal 14px/1 FontAwesome;
10014 font-size: inherit;
10015 text-rendering: auto;
9917 10016 -webkit-font-smoothing: antialiased;
9918 10017 -moz-osx-font-smoothing: grayscale;
9919 10018 content: "\f111";
@@ -9926,10 +10025,9 b' ul#help_menu li a i {'
9926 10025 }
9927 10026 .kernel_dead_icon:before {
9928 10027 display: inline-block;
9929 font-family: FontAwesome;
9930 font-style: normal;
9931 font-weight: normal;
9932 line-height: 1;
10028 font: normal normal normal 14px/1 FontAwesome;
10029 font-size: inherit;
10030 text-rendering: auto;
9933 10031 -webkit-font-smoothing: antialiased;
9934 10032 -moz-osx-font-smoothing: grayscale;
9935 10033 content: "\f1e2";
@@ -9942,10 +10040,9 b' ul#help_menu li a i {'
9942 10040 }
9943 10041 .kernel_disconnected_icon:before {
9944 10042 display: inline-block;
9945 font-family: FontAwesome;
9946 font-style: normal;
9947 font-weight: normal;
9948 line-height: 1;
10043 font: normal normal normal 14px/1 FontAwesome;
10044 font-size: inherit;
10045 text-rendering: auto;
9949 10046 -webkit-font-smoothing: antialiased;
9950 10047 -moz-osx-font-smoothing: grayscale;
9951 10048 content: "\f127";
General Comments 0
You need to be logged in to leave comments. Login now