vkirani08

Quantum alignment

Jan 3rd, 2018
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 5.11 KB | None | 0 0
  1. <html  xmlns="http://www.w3.org/1999/xhtml"
  2.       xmlns:h="http://java.sun.com/jsf/html"
  3.       xmlns:f="http://java.sun.com/jsf/core"
  4.        xmlns:c="http://java.sun.com/jsp/jstl/core"
  5.       xmlns:ui="http://java.sun.com/jsf/facelets"
  6.        xmlns:p="http://primefaces.org/ui">
  7. <style>
  8.     .raidAttributesDiv
  9.     {
  10.         width:100%;
  11.         min-width: 100%;
  12.         height:300px;
  13.         min-height: 300px;
  14.         padding-left: 10px;
  15.         padding-top: 8px;
  16.     }
  17.     .attributeRow
  18.     {
  19.         width:100%;
  20.         min-width: 100%;
  21.         height:30px;
  22.     }
  23.     .attributeLabel
  24.     {
  25.         width:33%;
  26.         min-width: 33%;
  27.         float:left;
  28.     }
  29.     .attributeProp
  30.     {
  31.         width:33%;
  32.         min-width: 33%;
  33.         float:left;
  34.         text-align: left;
  35.     }
  36. </style>
  37.           <div class="raidAttributesDiv , scrollableInnerDiv">          
  38.                 <div class="attributeRow">
  39.                     <div class="attributeLabel">
  40.                         <label>NAME</label>
  41.                     </div>
  42.                     <div class="attributeProp">
  43.                         <h:inputText value="NAME" style="width:150px" id="nameID">
  44.                         </h:inputText>
  45.                     </div>
  46.                     <div>
  47.                         <h:graphicImage title="NAME"  style="margin-top:2px;"   url="../resource/images/information.png" />
  48.                     </div>
  49.                     <div class="attributeProp">
  50.                        
  51.                     </div>
  52.                 </div>
  53.                        
  54.             <div class="attributeRow">
  55.                 <div class="attributeLabel">
  56.                     <label>VALUE</label>
  57.                 </div>
  58.                 <div class="attributeProp">
  59.                     <h:inputText value="VALUE" style="width:150px;height:14px;" disabled="false" id="sampleValue">
  60.                     </h:inputText>
  61.                 </div>
  62.                
  63.                 <div class="attributeProp">
  64.                     <h:selectOneMenu value="abc" style="width:70px; vertical-align:top;" disabled="False" id="sampleValueUnit">
  65.                         <f:selectItem itemLabel="ABC" itemValue="ABC"/>
  66.                         <f:selectItem itemLabel="DEF" itemValue="DEF"/>
  67.                         <f:selectItem itemLabel="GHI" itemValue="GHI"/>
  68.                                                
  69.                     </h:selectOneMenu>
  70.                     <p:selectBooleanCheckbox value="MAX" itemLabel="MAX" id="sampleMaxValueCheckBox" style="padding-left:3px;margin-top: 2px;" disabled="false">
  71.                    
  72.                     </p:selectBooleanCheckbox>
  73.                                
  74.                 </div>
  75.             </div>
  76.            
  77.                        
  78.                 <div class="attributeRow">
  79.                     <div class="attributeLabel">
  80.                         <label>Value1</label>
  81.                     </div>
  82.                     <div class="attributeProp">
  83.                         <h:selectOneMenu value="ABC" id="value1ID">
  84.                             <f:selectItems value="ABC"/>
  85.                            
  86.                         </h:selectOneMenu>
  87.                     </div>
  88.                     <div class="attributeProp">
  89.                        
  90.                     </div>
  91.                 </div>
  92.            
  93.            
  94.                 <div class="attributeRow">
  95.                     <div class="attributeLabel">
  96.                         <label>Value2</label>
  97.                     </div>
  98.                     <div class="attributeProp">
  99.                         <h:selectOneMenu value="Value2" id="subArrayCountVD" disabled = "false">
  100.                             <f:selectItems value="Value2"/>
  101.                            
  102.                         </h:selectOneMenu>
  103.                     </div>
  104.                     <div class="attributeProp">
  105.                        
  106.                     </div>
  107.                 </div>
  108.                
  109.            
  110.                        
  111.            
  112.            
  113.             <div class="attributeRow">
  114.                 <div class="attributeLabel">
  115.                     <label>Value3</label>
  116.                 </div>
  117.                 <div class="attributeProp">
  118.                     <h:selectOneMenu value="Value3" style="width:156px"  id="value3ID" disabled="false">
  119.                         <f:selectItem itemLabel="Enabled" itemValue="Enabled"/>
  120.                         <f:selectItem itemLabel="Disabled" itemValue="Disabled"/>
  121.                        
  122.                     </h:selectOneMenu>
  123.                 </div>
  124.                
  125.                
  126.             </div>
  127.            
  128.            
  129.                                    
  130.            
  131.             <div class="attributeRow">
  132.                 <div class="attributeLabel">
  133.                     <label>Value4</label>
  134.                 </div>
  135.                 <div class="attributeProp">
  136.                     <h:selectOneMenu value="Value4" style="width:156px" disabled="false" id="value4ID">
  137.                         <f:selectItems value="Value4"/>
  138.                        
  139.                     </h:selectOneMenu>
  140.                 </div>
  141.                 <div class="attributeProp">
  142.                    
  143.                 </div>
  144.             </div>
  145.            
  146.            
  147.            
  148.                 <div class="attributeRow">
  149.                     <div class="attributeLabel">
  150.                         <label>Value5</label>
  151.                     </div>
  152.                     <div class="attributeProp" style="width:12%;min-width:12%">
  153.                         <p:selectBooleanCheckbox value="Value5" disabled="false" id="Value5ID">
  154.                            
  155.                         </p:selectBooleanCheckbox>
  156.                     </div>
  157.                    
  158.                     <div class="attributeProp">
  159.                        
  160.                     </div>
  161.                 </div>
  162.            
  163.            
  164.                
  165.            
  166.           </div>
  167. </html>
Add Comment
Please, Sign In to add comment